/* ═══════════════════════════════════════════════════════════
   NEWS PAGE — SUBSCRIBE BANNER
   ═══════════════════════════════════════════════════════════ */
.subscribe-banner {
    max-width: 1100px;
    margin: 0 auto 4rem;
    padding: 0 3rem;
}

.subscribe-inner {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
    border: 1px solid rgba(184, 115, 51, 0.2);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.subscribe-inner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(184, 115, 51, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.subscribe-text {
    flex: 1;
    min-width: 280px;
    position: relative;
}

.subscribe-text h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.subscribe-text p {
    color: var(--white-dim);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
}

.subscribe-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--copper), var(--copper-dark));
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--copper-glow);
    white-space: nowrap;
    position: relative;
}

.subscribe-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(184, 115, 51, 0.5);
}

.subscribe-cta svg {
    width: 20px;
    height: 20px;
}

/* ═══════════════════════════════════════════════════════════
   NEWS PAGE — VIDEO GRID
   ═══════════════════════════════════════════════════════════ */
.videos {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem 6rem;
}

.videos-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.videos-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
}

.videos-header p {
    color: var(--white-dim);
    font-size: 0.9rem;
    font-weight: 300;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.video-card {
    background: linear-gradient(145deg, var(--navy-mid), var(--navy));
    border: 1px solid var(--white-faint);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-6px);
    border-color: rgba(184, 115, 51, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
    overflow: hidden;
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(184, 115, 51, 0.12) 0%, transparent 70%);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--copper), var(--copper-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px var(--copper-glow);
    transition: transform 0.3s ease;
}

.video-card:hover .video-play {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play svg {
    width: 20px;
    height: 20px;
    margin-left: 3px;
}

.video-duration {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(13, 27, 42, 0.85);
    color: var(--white);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.video-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 0.75rem;
}

.video-meta .dot-divider {
    color: var(--white-faint);
}

.video-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.75rem;
    flex: 1;
}

.video-card p {
    color: var(--white-dim);
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════
   NEWS PAGE — EMPTY STATE (when no videos yet)
   ═══════════════════════════════════════════════════════════ */
.videos-empty {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 2rem;
    border: 1px dashed rgba(184, 115, 51, 0.3);
    border-radius: 20px;
}

.videos-empty h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--copper-light);
}

.videos-empty p {
    color: var(--white-dim);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════
   NEWS PAGE — RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .subscribe-banner {
        padding: 0 1.5rem;
    }

    .subscribe-inner {
        padding: 2rem;
        flex-direction: column;
        text-align: center;
    }

    .videos {
        padding: 0 1.5rem 4rem;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ═══════════════════════════════════════════════════════════
   NEWS PAGE — LIGHT THEME
   ═══════════════════════════════════════════════════════════ */
[data-theme="light"] .subscribe-inner {
    background: linear-gradient(135deg, #FFFFFF, #F5F2ED);
    border-color: rgba(184, 115, 51, 0.25);
    box-shadow: 0 4px 30px rgba(13, 27, 42, 0.08);
}

[data-theme="light"] .subscribe-text p {
    color: rgba(13, 27, 42, 0.75);
}

[data-theme="light"] .subscribe-text h2 {
    color: #0D1B2A;
}

[data-theme="light"] .videos-header p {
    color: rgba(13, 27, 42, 0.7);
}

[data-theme="light"] .videos-header h2 {
    color: #0D1B2A;
}

[data-theme="light"] .video-card {
    background: #FFFFFF;
    border-color: rgba(13, 27, 42, 0.08);
    box-shadow: 0 2px 20px rgba(13, 27, 42, 0.06);
}

[data-theme="light"] .video-card:hover {
    border-color: rgba(184, 115, 51, 0.3);
    box-shadow: 0 20px 60px rgba(13, 27, 42, 0.12);
}

[data-theme="light"] .video-thumbnail {
    background: linear-gradient(135deg, rgba(184, 115, 51, 0.1), rgba(184, 115, 51, 0.05));
}

[data-theme="light"] .video-card h3 {
    color: #0D1B2A;
}

[data-theme="light"] .video-card p {
    color: rgba(13, 27, 42, 0.7);
}

[data-theme="light"] .video-meta {
    color: var(--copper-dark);
}

[data-theme="light"] .videos-empty h3 {
    color: var(--copper-dark);
}

[data-theme="light"] .videos-empty p {
    color: rgba(13, 27, 42, 0.7);
}
