
/* ==========================================
RED CASTLE REALTY
MARKET REPORT PAGE
========================================== */

:root{
    --red:#c8102e;
    --red-dark:#a10c24;
    --navy:#243b63;
    --black:#111;
    --white:#fff;
    --light:#f5f5f5;
}

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f4f4f4;
    color:#333;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

/* ==========================================
HERO
========================================== */

.market-hero{
	 background:
    linear-gradient(
        rgba(36,59,99,.85),
        rgba(36,59,99,.85)
    ),
    url('/images/cities/bell-market-report-hero.jpg');

    background-size:cover;
    background-position:center;
    min-height:450px;
    padding-bottom:120px;
}

.market-overlay{
    width:100%;
}

.market-content{
    max-width:1400px;
    margin:auto;
    padding:60px 30px;
    color:#fff;
}

.market-content h1{
    font-size:64px;
    font-weight:800;
    margin-bottom:20px;
}

.market-content p{
    font-size:24px;
    margin-bottom:15px;
}

.market-meta{
    font-size:16px;
    opacity:.9;
}

/* ==========================================
MARKET STATS
========================================== */

.market-stats{
    max-width:1400px;
    margin:0 auto 60px;
    padding:0 20px;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}
.stat-card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.stat-card h3{
    font-size:48px;
    color:var(--red);
    margin-bottom:10px;
}

.stat-card p{
    font-size:20px;
    color:#333;
}
/* MARKET CONTENT SECTIONS */

.market-section{
    max-width:1400px;
    margin:60px auto;
    padding:0 20px;
}

.market-section h2{
    font-size:42px;
    color:#243b63;
    margin-bottom:20px;
}

.market-section p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:20px;
}

.market-section img{
    width:100%;
    max-width:1000px;
    margin:25px auto;
    display:block;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

/* ==========================================
SECTIONS
========================================== */

.market-summary,
.market-outlook,
.market-faq,
.market-cta{
    max-width:1400px;
    margin:60px auto;
    padding:0 20px;
}

.market-summary h2,
.market-outlook h2,
.market-faq h2{
    font-size:42px;
    margin-bottom:20px;
    color:#243b63;
}

/* ==========================================
CHARTS
========================================== */

.market-charts{
    max-width:1400px;
    margin:60px auto;
    padding:0 20px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.chart-box{
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.chart-box h3{
    margin-bottom:15px;
    color:#243b63;
}

.chart-box img{
    width:100%;
    border-radius:8px;
}

/* ==========================================
OUTLOOK
========================================== */

.market-outlook{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.positive,
.watch{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.positive h2{
    color:#1e7d32;
}

.watch h2{
    color:#c8102e;
}

.positive ul,
.watch ul{
    padding-left:20px;
}

.positive li,
.watch li{
    margin-bottom:10px;
}

/* ==========================================
FAQ
========================================== */

.market-faq details{
    background:#fff;
    margin-bottom:15px;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 3px 12px rgba(0,0,0,.05);
}

.market-faq summary{
    padding:18px;
    cursor:pointer;
    font-weight:bold;
}

.market-faq p{
    padding:0 18px 18px;
}

/* ==========================================
CTA
========================================== */

.market-cta{
    background:#243b63;
    color:#fff;
    text-align:center;
    padding:60px;
    border-radius:12px;
}

.market-cta h2{
    color:#fff;
    margin-bottom:15px;
}

.market-cta p{
    margin-bottom:25px;
}

.cta-btn{
    display:inline-block;
    background:var(--red);
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border-radius:6px;
    font-weight:bold;
}

.cta-btn:hover{
    background:var(--red-dark);
}

/* ==========================================
MOBILE
========================================== */

@media(max-width:992px){

.market-content h1{
    font-size:42px;
}

.market-content p{
    font-size:20px;
}

.market-charts{
    grid-template-columns:1fr;
}

.market-outlook{
    grid-template-columns:1fr;
}

}

@media(max-width:600px){

.market-content{
    padding:40px 20px;
}

.market-content h1{
    font-size:34px;
}

.market-content p{
    font-size:18px;
}

.stat-card h3{
    font-size:36px;
}

.market-summary h2,
.market-outlook h2,
.market-faq h2{
    font-size:30px;
}

.market-cta{
    padding:40px 20px;
}

}
.related-links{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:15px;
    margin-top:20px;
}

.related-links a{
    display:block;
    background:#fff;
    border:1px solid #e5e5e5;
    padding:18px;
    text-decoration:none;
    color:#111;
    font-weight:600;
    border-radius:8px;
    box-shadow:0 2px 8px rgba(0,0,0,.05);
    transition:.3s;
}

.related-links a:hover{
    background:#c8102e;
    color:#fff;
}
/* BREADCRUMBS */

.breadcrumbs{
    max-width:1400px;
    margin:30px auto;
    padding:0 20px;
    font-size:14px;
    color:#666;
}

.breadcrumbs a{
    color:#c8102e;
    text-decoration:none;
    font-weight:600;
}

.breadcrumbs a:hover{
    text-decoration:underline;
}

.breadcrumbs span{
    margin:0 8px;
}
/* HERO BREADCRUMBS */

.hero-breadcrumbs{
    margin-bottom:25px;
    font-size:14px;
    color:rgba(255,255,255,.85);
}

.hero-breadcrumbs a{
    color:#ffffff;
    text-decoration:none;
    font-weight:600;
}

.hero-breadcrumbs a:hover{
    text-decoration:underline;
}

.hero-breadcrumbs span{
    margin:0 6px;
}
