/* ===================================
   MEDIA PAGE — DEDICATED STYLES
   Extends: css/event.css
   =================================== */

/* ── Import Playfair Display for editorial headings ── */
/* (loaded via <link> in HTML) */

/* ===================================
   MEDIA HERO SECTION
   =================================== */
.media-hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background: linear-gradient(160deg, #0a0a0e 0%, #1a1a24 40%, #212129 70%, rgba(152, 126, 77, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.media-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(152, 126, 77, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* Subtle animated grid lines */
.media-hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(152, 126, 77, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(152, 126, 77, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridDrift 30s linear infinite;
}

@keyframes gridDrift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 80px 80px;
    }
}

.media-hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.media-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    padding: 0 30px;
}

.media-eyebrow::before,
.media-eyebrow::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--secondary-color);
    opacity: 0.6;
}

.media-eyebrow::before {
    right: 0;
}
.media-eyebrow::after {
    left: 0;
}

.media-hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(3rem, 9vw, 7rem);
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.05;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.media-hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    font-weight: 300;
    letter-spacing: 0.04em;
    color: rgba(245, 245, 245, 0.8);
    max-width: 620px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* ── Hero Stats ── */
.media-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
}

.stat-number {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1;
}

.stat-plus {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--secondary-color);
    line-height: 1;
    vertical-align: super;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.5);
    margin-top: 8px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(152, 126, 77, 0.5), transparent);
}

/* ===================================
   PUBLICATIONS STRIP
   =================================== */
.publications-strip {
    padding: 30px 0;
    background: var(--primary-color);
    border-top: 1px solid rgba(152, 126, 77, 0.2);
    border-bottom: 1px solid rgba(152, 126, 77, 0.2);
    overflow: hidden;
}

.strip-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.35);
    text-align: center;
    margin-bottom: 16px;
}

.logos-track {
    overflow: hidden;
    width: 100%;
}

.logos-inner {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: logoScroll 28s linear infinite;
}

.logos-inner:hover {
    animation-play-state: paused;
}

@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.pub-logo {
    font-family: "Playfair Display", serif;
    font-size: clamp(0.85rem, 1.5vw, 1.05rem);
    font-style: italic;
    font-weight: 400;
    color: rgba(245, 245, 245, 0.45);
    white-space: nowrap;
    padding: 0 30px;
    transition: color 0.3s ease;
    cursor: default;
}

.pub-logo:hover {
    color: var(--secondary-color);
}

.pub-logo-dot {
    color: rgba(152, 126, 77, 0.35);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ===================================
   SECTION SHARED HELPERS
   =================================== */
.section-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin: 30px 0px;
}

.section-eyebrow--light {
    color: rgba(152, 126, 77, 0.8);
}

.section-intro {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(33, 33, 41, 0.65);
    max-width: 580px;
    margin: 0 auto 0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.section-intro--light {
    color: rgba(245, 245, 245, 0.55);
}

.section-title--light {
    color: var(--white);
}

.section-header {
    margin-bottom: 70px;
}

/* ===================================
   FEATURED COVERAGE SECTION
   =================================== */
.media-featured-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.media-feature-row {
    margin-bottom: 80px;
}

.media-feature-row:last-child {
    margin-bottom: 0;
}

.media-feature-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.media-feature-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.media-feature-image-wrap:hover .media-feature-img {
    transform: scale(1.06);
}

.media-feature-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(33, 33, 41, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.media-feature-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.media-feature-badge--outline {
    background: transparent;
    border: 1.5px solid var(--white);
    color: var(--white);
}

.media-feature-content {
    padding: 20px 40px;
}

.media-publication-tag {
    display: inline-block;
    font-family: "Playfair Display", serif;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.media-feature-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.media-feature-excerpt {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 300;
    line-height: 1.85;
    color: rgba(33, 33, 41, 0.75);
    margin-bottom: 28px;
}

.media-feature-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
}

.meta-date,
.meta-type {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(33, 33, 41, 0.5);
    text-transform: uppercase;
}

.meta-date i,
.meta-type i {
    color: var(--secondary-color);
}

.btn-media-read {
    display: inline-flex;
    align-items: center;
    padding: 13px 32px;
    background: transparent;
    color: var(--secondary-color);
    border: 1.5px solid var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.btn-media-read::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--secondary-color);
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: -1;
}

.btn-media-read:hover {
    color: var(--white);
    text-decoration: none;
}

.btn-media-read:hover::before {
    transform: translateX(0);
}

/* ===================================
   PRESS GRID SECTION
   =================================== */
.press-grid-section {
    padding: var(--section-padding) 0;
    background: var(--light-white);
}

/* ── Filter Tabs ── */
.press-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

.filter-tab {
    background: transparent;
    border: 1px solid rgba(33, 33, 41, 0.2);
    color: rgba(33, 33, 41, 0.6);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 10px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.filter-tab:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.filter-tab.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

/* ── Press Cards ── */
.press-card {
    background: var(--white);
    border: 1px solid rgba(152, 126, 77, 0.15);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.press-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 50px rgba(152, 126, 77, 0.2);
}

.press-card-image-wrap {
    position: relative;
    overflow: hidden;
    padding-top: 62%;
}

.press-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.press-card:hover .press-card-img {
    transform: scale(1.1);
}

.press-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.press-card:hover .press-card-overlay {
    opacity: 1;
}

.press-card-read-btn {
    color: var(--secondary-color);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 22px;
    border: 1px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.press-card-read-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
}

/* Category Badges */
.press-card-category-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 5px 12px;
}

.press-card-category-badge--digital {
    background: #2d6a8a;
}

.press-card-category-badge--broadcast {
    background: #7a2d2d;
}

.press-card-category-badge--award {
    background: var(--primary-color);
}

/* Video play icon */
.press-card-play-icon {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 38px;
    height: 38px;
    background: rgba(152, 126, 77, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
}

.press-card-body {
    padding: 28px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.press-publication {
    font-family: "Playfair Display", serif;
    font-size: 0.82rem;
    font-style: italic;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}

.press-card-title {
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    font-weight: 600;
    line-height: 1.45;
    color: var(--primary-color);
    margin-bottom: 12px;
    flex-grow: 1;
}

.press-card-excerpt {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(33, 33, 41, 0.65);
    margin-bottom: 20px;
}

.press-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(152, 126, 77, 0.12);
    margin-top: auto;
}

.press-date {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(33, 33, 41, 0.4);
    text-transform: uppercase;
}

.press-link {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.press-link:hover {
    color: var(--primary-color);
    text-decoration: none;
    transform: translateX(4px);
    display: inline-block;
}

/* Award card accent */
.press-card--award {
    border-top: 3px solid var(--secondary-color);
}

/* ── Load More Button ── */
.btn-load-more {
    display: inline-flex;
    align-items: center;
    padding: 14px 40px;
    background: transparent;
    color: var(--secondary-color);
    border: 1.5px solid var(--secondary-color);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.35s ease;
    outline: none;
}

.btn-load-more:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* ===================================
   VIDEO COVERAGE SECTION
   =================================== */
.video-coverage-section {
    padding: var(--section-padding) 0;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.video-coverage-section::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
}

.video-coverage-section::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
}

/* Main Video Card */
.video-main-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(152, 126, 77, 0.2);
    overflow: hidden;
    transition: all 0.4s ease;
}

.video-main-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.video-thumbnail-wrap {
    position: relative;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    filter: brightness(0.75);
}

.video-main-card:hover .video-thumbnail {
    transform: scale(1.04);
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.3);
    transition: background 0.3s ease;
}

.video-main-card:hover .video-overlay {
    background: rgba(10, 10, 10, 0.5);
}

.video-play-btn {
    width: 72px;
    height: 72px;
    background: var(--secondary-color);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s ease;
    padding-left: 4px; /* optical centering for play icon */
    box-shadow: 0 0 0 0 rgba(152, 126, 77, 0.5);
    animation: pulseBorder 2.5s ease-out infinite;
}

.video-play-btn:hover {
    transform: scale(1.12);
    background: #b09050;
    animation: none;
}

@keyframes pulseBorder {
    0% {
        box-shadow: 0 0 0 0 rgba(152, 126, 77, 0.5);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(152, 126, 77, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(152, 126, 77, 0);
    }
}

.video-duration-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(10, 10, 10, 0.75);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 3px;
}

.video-card-body {
    padding: 28px 30px;
}

.video-network {
    font-family: "Playfair Display", serif;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 10px;
}

.video-title {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.4;
}

.video-desc {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(245, 245, 245, 0.55);
    margin: 0;
    line-height: 1.7;
}

/* Side Video List */
.video-side-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.video-side-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(152, 126, 77, 0.15);
    padding: 14px;
    transition: all 0.35s ease;
    cursor: pointer;
}

.video-side-card:hover {
    border-color: var(--secondary-color);
    background: rgba(152, 126, 77, 0.06);
}

.video-side-thumb-wrap {
    position: relative;
    flex-shrink: 0;
    width: 100px;
    height: 70px;
    overflow: hidden;
}

.video-side-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    filter: brightness(0.7);
}

.video-side-card:hover .video-side-thumb {
    transform: scale(1.08);
}

.video-side-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.4);
    color: var(--white);
    font-size: 0.75rem;
    transition: background 0.3s ease;
}

.video-side-card:hover .video-side-overlay {
    background: rgba(152, 126, 77, 0.6);
}

.video-side-duration {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background: rgba(10, 10, 10, 0.8);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 2px;
}

.video-side-info {
    flex: 1;
    min-width: 0;
}

.video-side-network {
    font-family: "Playfair Display", serif;
    font-size: 0.72rem;
    font-style: italic;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 5px;
}

.video-side-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-side-date {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(245, 245, 245, 0.35);
    text-transform: uppercase;
}

/* ===================================
   MEDIA PULL QUOTE SECTION
   =================================== */
.media-quote-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.media-quote-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(152, 126, 77, 0.4));
}

.quote-ornament-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

.ornament-line-sm {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
}

.ornament-gem {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.media-pull-quote {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.65;
    color: var(--primary-color);
    margin-bottom: 40px;
    border: none;
    padding: 0;
    position: relative;
}

.media-pull-quote::before {
    content: "\201C";
    font-family: "Playfair Display", serif;
    font-size: 6rem;
    color: rgba(152, 126, 77, 0.12);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    pointer-events: none;
}

.media-quote-source {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-style: normal;
}

.quote-author {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    text-transform: uppercase;
}

.quote-role {
    font-size: 0.82rem;
    font-weight: 300;
    font-style: italic;
    color: var(--secondary-color);
    letter-spacing: 0.04em;
}

/* ===================================
   AWARDS SECTION
   =================================== */
.awards-section {
    padding: var(--section-padding) 0;
    background: var(--light-white);
}

.award-card {
    background: var(--white);
    border: 1px solid rgba(152, 126, 77, 0.15);
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.award-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(152, 126, 77, 0.18);
    border-color: var(--secondary-color);
}

.award-card:hover::before {
    transform: scaleX(1);
}

.award-icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(152, 126, 77, 0.08);
    border: 1px solid rgba(152, 126, 77, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.award-card:hover .award-icon-wrap {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.award-icon-wrap i {
    font-size: 1.4rem;
    color: var(--secondary-color);
    transition: color 0.4s ease;
}

.award-card:hover .award-icon-wrap i {
    color: var(--white);
}

.award-year {
    font-family: "Playfair Display", serif;
    font-size: 0.8rem;
    font-style: italic;
    color: var(--secondary-color);
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.award-title {
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1.4;
}

.award-body {
    font-size: 0.82rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(33, 33, 41, 0.55);
    margin: 0;
}

/* ===================================
   PRESS CONTACT CTA SECTION
   =================================== */
.press-contact-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--primary-color);
}

.press-contact-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(152, 126, 77, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(152, 126, 77, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.press-contact-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.press-contact-text {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    font-weight: 300;
    line-height: 1.85;
    color: rgba(245, 245, 245, 0.65);
    max-width: 560px;
    margin: 0 auto 50px;
}

.press-contact-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.btn-press-contact {
    display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(152, 126, 77, 0.35);
}

.btn-press-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(152, 126, 77, 0.55);
    color: var(--white);
    text-decoration: none;
    background: #b09050;
}

.btn-press-kit {
    display: inline-flex;
    align-items: center;
    padding: 14px 38px;
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(245, 245, 245, 0.35);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-press-kit:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    text-decoration: none;
    transform: translateY(-3px);
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 991px) {
    .media-hero-section {
        height: 80vh;
    }

    .media-feature-img {
        height: 380px;
    }

    .media-feature-content {
        padding: 20px 0;
    }

    .video-thumbnail {
        height: 300px;
    }

    .video-side-list {
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .video-side-card {
        flex: 1 1 calc(50% - 8px);
    }

    .stat-item {
        padding: 0 24px;
    }
}

@media (max-width: 767px) {
    .media-hero-section {
        height: 85vh;
        min-height: 550px;
    }

    .media-hero-stats {
        gap: 0;
    }

    .stat-item {
        padding: 0 18px;
    }

    .stat-divider {
        height: 40px;
    }

    .media-feature-img {
        height: 280px;
    }

    .media-feature-content {
        padding: 10px 0;
    }

    .media-pull-quote {
        font-size: 1.25rem;
    }

    .press-contact-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-press-contact,
    .btn-press-kit {
        width: 100%;
        max-width: 340px;
        justify-content: center;
    }

    .video-side-list {
        flex-direction: column;
    }

    .video-side-card {
        flex: unset;
    }

    .section-header {
        margin-bottom: 50px;
    }
}

/* ===================================
   VIDEO MODAL
   =================================== */

/* Backdrop */
.vm-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(5, 5, 5, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.vm-backdrop.vm-open {
    opacity: 1;
    visibility: visible;
}

/* Dialog box */
.vm-dialog {
    position: relative;
    width: 100%;
    max-width: 960px;
    background: #000;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.85);
    transform: translateY(30px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.vm-backdrop.vm-open .vm-dialog {
    transform: translateY(0) scale(1);
}

/* Close button — floats top-right over the iframe */
.vm-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 38px;
    height: 38px;
    background: rgba(10, 10, 10, 0.75);
    border: 1px solid rgba(152, 126, 77, 0.4);
    color: rgba(245, 245, 245, 0.85);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    outline: none;
    border-radius: 0;
}

.vm-close:hover {
    background: rgba(152, 126, 77, 0.2);
    border-color: var(--secondary-color);
    color: var(--white);
    transform: rotate(90deg);
}

/* Iframe container — 16:9 ratio */
.vm-iframe-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}

.vm-iframe-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}


/* Responsive */
@media (max-width: 767px) {
    .vm-backdrop {
        padding: 0;
        align-items: flex-end;
    }

    .vm-dialog {
        max-width: 100%;
        border-left: none;
        border-right: none;
        border-bottom: none;
        transform: translateY(100%);
    }

    .vm-backdrop.vm-open .vm-dialog {
        transform: translateY(0);
    }

    .vm-title {
        white-space: normal;
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .media-hero-title {
        letter-spacing: 0.08em;
    }

    .media-hero-stats {
        flex-direction: row;
        justify-content: center;
    }

    .stat-item {
        padding: 0 14px;
    }

    .press-filter-tabs {
        gap: 8px;
    }

    .filter-tab {
        padding: 8px 16px;
        font-size: 0.72rem;
    }

    .award-card {
        padding: 30px 20px;
    }

    .media-quote-section {
        padding: 80px 0;
    }
}
