/* =========================
 BANNER
========================= */
.interviews-banner {
    height: 280px;
    background: url('../img/banner.jpg') center / cover no-repeat;
    position: relative;
}

.interviews-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.65);
    display: flex;
    align-items: center;
    justify-content: center;
}

.interviews-banner-overlay h1 {
    color: #fff;
    font-size: 44px;
    font-weight: 700;
}

/* =========================
 HERO INTERVIEW
========================= */
.interview-hero {
    padding: 70px 20px;
    background: #0b0b0b;
}

.interview-hero-inner {
    max-width: 1100px;
    margin: auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.interview-hero-inner img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.interview-hero-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.85), rgba(0,0,0,.25));
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.interview-hero-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.interview-hero-content p {
    max-width: 420px;
    color: #ccc;
    margin-bottom: 30px;
}

/* PLAY BUTTON WITH WAVE */
.interview-play-btn {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: #e50914;
    border: none;
    cursor: pointer;
    position: relative;
}

.interview-play-btn span {
    width: 0;
    height: 0;
    border-left: 24px solid #fff;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    margin-left: 6px;
}

.interview-play-btn::before,
.interview-play-btn::after {
    content: '';
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    border: 2px solid rgba(229,9,20,.6);
    animation: pulse 2s infinite;
}

.interview-play-btn::after {
    animation-delay: 1s;
}

@keyframes pulse {
    0% { transform: scale(.7); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* =========================
 INTERVIEW GRID
========================= */
.interview-section {
    padding: 80px 20px;
    background: #0b0b0b;
    color: #fff;
}

.section-title {
    font-size: 26px;
    margin-bottom: 30px;
}

.interview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* CARD */
.interview-card {
    transition: transform .3s ease;
    cursor: pointer;
}

.interview-card:hover {
    transform: scale(1.08);
}

.interview-thumb {
    aspect-ratio: 16 / 9;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.interview-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interview-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #e50914;
    opacity: 0;
    transition: .3s;
}

.interview-card:hover .interview-overlay {
    opacity: 1;
}

.interview-info {
    margin-top: 10px;
}

.interview-info h4 {
    font-size: 14px;
    margin-bottom: 3px;
}

.interview-info p {
    font-size: 12px;
    color: #aaa;
}

/* =========================
 PAGINATION
========================= */
.pagination {
    margin-top: 40px;
    text-align: center;
}

.page {
    display: inline-block;
    margin: 0 6px;
    padding: 8px 14px;
    color: #fff;
    border: 1px solid #333;
    border-radius: 4px;
    transition: .3s;
}

.page:hover,
.page.active {
    background: #e50914;
    border-color: #e50914;
}

/* =========================
 RESPONSIVE
========================= */
@media (max-width: 1024px) {
    .interview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .interview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .interview-hero-inner img {
        height: 320px;
    }

    .interview-hero-content {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .interview-grid {
        grid-template-columns: 1fr;
    }

    .interviews-banner-overlay h1 {
        font-size: 32px;
    }
}
