/* ── NEWS PAGE ───────────────────────────────────────── */

/* force navbar dark — no hero behind nav */
.main_nav {
    background: rgba(13,13,13,0.97) !important;
    box-shadow: 0 1px 20px rgba(0,0,0,0.4);
}
.main_nav .nav_link { color: #AE906F !important; }
.main_nav .nav_link:hover { color: #fff !important; }
.news_hero {
    background: #faf8f5;
    border-bottom: 1px solid rgba(174,144,111,0.18);
    padding: 130px 48px 60px;
    text-align: center;
}

.news_hero .apt_section_title { margin-bottom: 0; }

.news_eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #AE906F;
    margin: 0 0 16px;
    display: block;
}

.news_body {
    background: #fff;
    padding: 60px 0 100px;
}

.news_empty {
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: #9ba8b0;
    padding: 80px 0;
    grid-column: 1 / -1;
}

/* ── keep apt_desc visible + clamp on news cards ──── */
.news_card .apt_desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news_read_more {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #AE906F;
}

/* ── SINGLE NEWS PAGE ───────────────────────────────── */
.snew_hero_img {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    margin-top: 80px;
}
.snew_hero_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.snew_hero_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.5) 100%);
}

.snew_body {
    background: #fff;
    padding: 60px 0 100px;
}

.snew_inner {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 40px;
}

.snew_back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #AE906F;
    text-decoration: none;
    margin-bottom: 32px;
    transition: opacity 0.2s;
}
.snew_back:hover { opacity: 0.7; }

.snew_badge {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    background: #AE906F;
    padding: 5px 14px;
    margin-bottom: 20px;
}

.snew_title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 48px;
    font-weight: 400;
    color: #0d1b2a;
    line-height: 1.15;
    margin: 0 0 24px;
}

.snew_text {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.85;
    color: #444;
}
.snew_text p { margin: 0 0 20px; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 768px) {
    .news_hero { padding: 100px 16px 40px; }
    .news_body  { padding: 30px 0 60px; }

    /* on mobile show apt_desc for news (override about.css hide) */
    .news_card .apt_desc  { display: -webkit-box; font-size: 11px; }
    .news_card .apt_footer_row { display: none; }

    .snew_hero_img { height: 240px; margin-top: 70px; }
    .snew_title    { font-size: 30px; }
    .snew_inner    { padding: 0 20px; }
    .snew_body     { padding: 40px 0 60px; }
    .snew_text     { font-size: 15px; }
}

@media (max-width: 480px) {
    .snew_hero_img { height: 180px; }
    .snew_title    { font-size: 24px; }
}
