/* ============================================================
    NEWS PAGE — Page-specific styles
    ============================================================ */

/* ── Hero: same treatment as contact.html ── */
.hero .hero-overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.50) 0%,
            rgba(0, 0, 0, 0.25) 40%,
            rgba(0, 0, 0, 0.10) 100%);
}

.hero {
    height: 85vh;
    min-height: 600px;
    max-height: none;
    overflow: hidden;
}

.hero .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: none !important;
}

.hero .hero-content {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
    text-align: center;
}

/* ── News Section ── */
.news-section {
    background: var(--bg);
    /* padding: var(--section-pad) 0; */
    padding: 25px 0;
}

.news-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 64px;
}

.news-header-left {
    text-align: left;
}

.news-header .section-label {
    display: block;
    margin-bottom: 14px;
}

.news-heading {
    font-family: 'Scheherazade New', serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.1;
    margin: 0;
}

.news-subheading {
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted);
    margin: 0;
}

/* News Cards Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 48px;
    padding: 0 10px;
}

.news-card {
    background: #fff;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-8px);
}

.news-card-image {
    width: 100%;
    /* aspect-ratio: 16 / 10; */
    overflow: hidden;
    position: relative;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover .news-card-image img {
    transform: scale(1.06);
}

.news-card-content {
    padding: 30px 10px;
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    justify-content: space-between;
}

.news-card-category {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
}

.news-card-date {
    font-size: 11px;
    font-weight: 500;
    color: var(--muted);
}

.news-card-title {
    font-family: 'Scheherazade New', serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.3;
    margin: 0 0 14px;
    transition: color 0.25s;
}

.news-card:hover .news-card-title {
    color: var(--gold);
}

.news-card-excerpt {
    font-size: 14px;
    line-height: 1.75;
    color: var(--muted);
    margin: 0 0 20px;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    transition: gap 0.25s, color 0.25s;
}

.news-card-link:hover {
    gap: 12px;
    color: var(--gold);
}

.news-card-link svg {
    width: 14px;
    height: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .news-header {
        grid-template-columns: 1fr;
        gap: 32px;
        align-items: start;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .news-heading {
        font-size: clamp(38px, 7vw, 56px);
    }
}

@media (max-width: 480px) {
    .news-card-title {
        font-size: 20px;
    }

    .news-card-excerpt {
        font-size: 14px;
        line-height: 1.7;
    }

    .section-label {
        font-size: 10px;
        letter-spacing: 3px;
    }
}