body.reports-page{
background:#0f2c38;
color:white;
}


/* HERO */

.reports-hero{

height:40vh;

background:
linear-gradient(rgba(19,47,61,.85),rgba(19,47,61,.85)),
url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40') center/cover no-repeat;

display:flex;
align-items:center;
justify-content:center;
text-align:center;

}


.hero-overlay h1{
font-size:46px;
color:var(--gold);
}

.hero-overlay p{
margin-top:10px;
max-width:650px;
margin:auto;
opacity:.9;
}


/* FILTER */

.reports-filter{
padding:40px 0;
text-align:center;
}

.report-filter-btn{

background:transparent;
border:1px solid rgba(255,255,255,.2);
color:white;

padding:10px 25px;
margin:0 8px;

border-radius:30px;
cursor:pointer;

transition:.3s;

}

.report-filter-btn.active{
background:var(--gold);
color:#132F3D;
}

.breadcrumb a{
color:var(--gold);
font-weight:500;
text-decoration:none;
}

.breadcrumb span{
color:white;
opacity:0.7;
}

.breadcrumb .current{
color:white;
}

/* REPORT GRID */

.reports-grid-section{
padding:40px 0 100px;
}

.reports-grid{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(280px,1fr));
gap:25px;
width:100%;
}


.report-card{
background:#132F3D;
padding:35px;
width:100%;
border-radius:12px;
transition:.35s;
border:1px solid rgba(255,255,255,.05);

}

.report-card:hover{

transform:translateY(-8px);

box-shadow:0 25px 60px rgba(0,0,0,.45);

}


/* ICON */

.report-icon{

font-size:40px;
color:var(--gold);

margin-bottom:15px;

}


/* TEXT */

.report-card h3{
margin-bottom:10px;
}

.report-card p{
opacity:.85;
font-size:14px;
line-height:1.6;
}


/* META */

.report-meta{

display:flex;
justify-content:space-between;

margin-top:18px;

font-size:13px;
opacity:.7;

}


/* DOWNLOAD */

.download-btn{

display:inline-block;

margin-top:20px;

padding:10px 20px;

background:var(--gold);
color:#132F3D;

border-radius:30px;
text-decoration:none;

font-weight:600;

transition:.3s;

}

.download-btn:hover{
transform:translateY(-2px);
}

.report-actions{
display:flex;
gap:12px;
margin-top:15px;
}

.view-report,
.download-report{

padding:8px 14px;

border-radius:6px;

text-decoration:none;
font-size:14px;

transition:.3s;
}

.view-report{

background:transparent;
border:1px solid var(--gold);
color:var(--gold);

}

.view-report:hover{
background:var(--gold);
color:#132F3D;
}

.download-report{

background:var(--gold);
color:#132F3D;
}

.download-report:hover{
opacity:.85;
}

/* ================= DISCLAIMER ================= */

.financial-disclaimer{
margin-top:10px;
padding-top:40px;
margin-top:10px;
padding-bottom: 40px;
border-top:1px solid rgba(255,255,255,0.08);
}

/* wrapper to align with report grid width */
.financial-disclaimer .container{
max-width:1200px;
margin:0 auto;
padding:0 20px;
}

/* highlighted disclaimer block */
.disclaimer-block{

background:rgba(255,255,255,0.04);

border-left:4px solid var(--gold);

padding:22px 26px;

border-radius:6px;

width:100%;

}

/* title */

.disclaimer-block h3{

color:var(--gold);
font-size:20px;

margin-bottom:12px;

}

/* text */

.disclaimer-block p{

opacity:.9;
line-height:1.7;

margin-bottom:10px;

}


/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.disclaimer-block{
padding:20px 22px;
}

}

@media(max-width:768px){

.financial-disclaimer{
margin-top:50px;
}

.disclaimer-block{
padding:18px 18px;
}

.disclaimer-block h3{
font-size:18px;
}

}

@media(max-width:480px){

.disclaimer-block{
padding:16px;
}

.disclaimer-block p{
font-size:14px;
}

}

/* Prevent horizontal overflow */
html, body {
overflow-x: hidden;
width: 100%;
}

/* Responsive container */

.container{
width:100%;
max-width:1200px;
margin:auto;
padding-left:20px;
padding-right:20px;
box-sizing:border-box;
}

/* Report filter buttons */
.filter-wrapper{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:12px;
padding:0 20px;
}

@media(max-width:768px){

.filter-wrapper{
flex-direction:column;
align-items:center;
}

@media(max-width:768px){

.filter-wrapper{
flex-direction:column;
align-items:center;
}

.filter-btn{
width:90%;
max-width:320px;
}

}

.report-filter-btn{
width:85%;
max-width:320px;
text-align:center;
}

}

@media(max-width:768px){

.filter-wrapper{
flex-direction:column;
align-items:center;
}

.report-filter-btn{
width:85%;
max-width:320px;
text-align:center;
}

}

.reports-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

