/* ==================== SCROLLING BANNER ==================== */
.scrolling-banner {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 35px;
    background: #FFD700;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    overflow: hidden;
    z-index: 999;
    display: flex;
    align-items: center;
}

.banner-content {
    display: flex;
    white-space: nowrap;
    animation: scroll-right 20s linear infinite;
    width: max-content;
}

.banner-content span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    font-style: italic;
    color: #000;
    margin-right: 40px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes scroll-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ==================== INTERVIEWS HERO ==================== */
.interviews-hero {
    background: #fff;
    color: #000;
    padding: 60px 20px;
    text-align: center;
    margin-top: 105px; /* 70px navbar + 35px banner */
}

.interviews-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0;
    letter-spacing: -1px;
    color: #000;
}

/* ==================== INTERVIEWS GRID ==================== */
.interviews-section {
    padding: 60px 20px;
    background: #fff;
}

.interviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.interview-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 0;
}

.interview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.interview-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border: 2px solid #000;
}

.interview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.interview-card:hover .interview-image img {
    transform: scale(1.05);
}

.interview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px 20px 20px;
    color: white;
}

.interview-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
}

/* ==================== PAGINATION ==================== */
.pagination-section {
    grid-column: 1 / -1;
    text-align: center;
    margin: 40px 0;
}

.pagination-section .page-numbers {
    display: inline-block;
    padding: 15px 30px;
    margin: 0 5px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pagination-section .page-numbers:hover,
.pagination-section .page-numbers.current {
    background: #333;
}

.pagination-section .page-numbers.dots {
    border: none;
    background: transparent;
    color: #000;
}

/* ==================== NEWSLETTER ==================== */
.newsletter-section {
    background: #f5f5f5;
    padding: 80px 20px;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
}

.newsletter-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 0;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #000;
}

.newsletter-form button {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background: #333;
}

/* ==================== EMPTY STATE ==================== */
.no-interviews {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.no-interviews h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.no-interviews p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .interviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .scrolling-banner {
        height: 30px;
        top: 60px;
    }
    
    .banner-content span {
        font-size: 12px;
        margin-right: 30px;
    }

    .interviews-hero {
        margin-top: 90px; /* 60px navbar + 30px banner */
        padding: 40px 20px;
    }

    .interviews-hero h1 {
        font-size: 2.5rem;
    }

    .interviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Newsletter responsive */
    .newsletter-section {
        padding: 60px 20px;
    }

    .newsletter-content h2 {
        font-size: 2rem;
    }

    .newsletter-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }

    .newsletter-form input {
        width: 100%;
        padding: 12px 15px;
    }

    .newsletter-form button {
        width: 100%;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .scrolling-banner {
        height: 28px;
        top: 55px;
    }
    
    .banner-content span {
        font-size: 11px;
        margin-right: 25px;
    }
    
    .interviews-hero {
        margin-top: 83px; /* 55px navbar + 28px banner */
        padding: 30px 15px;
    }

    .interviews-hero h1 {
        font-size: 2rem;
    }
    
    .interviews-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Newsletter mobile */
    .newsletter-section {
        padding: 50px 15px;
    }

    .newsletter-content h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .newsletter-content p {
        font-size: 0.95rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .newsletter-form {
        gap: 12px;
    }

    .newsletter-form input {
        padding: 12px 15px;
        font-size: 14px;
    }

    .newsletter-form button {
        padding: 12px 15px;
        font-size: 13px;
        letter-spacing: 1px;
    }
}