/* ========================================
   ZENRIN DataCom - Interview List Page Styles
   ======================================== */

/* Interview List Hero Section */
.interview-list-hero {
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
    border-radius: 0 0 50px 50px;
    padding: 150px 0 100px;
    margin-top: -100px;
    position: relative;
    overflow: hidden;
}

.interview-list-hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-bg.png') no-repeat center right/cover;
    opacity: 0.2;
}

/* Interview List Grid Section */
.interview-list-section {
    background: #fff;
    padding: 80px 0 100px;
}

/* Interview Card Enhancements for List Page */
.interview-list-section .interview-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.interview-list-section .interview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15) !important;
}

/* Ensure consistent card heights in grid */
.interview-list-section .interview-content {
    display: flex;
    flex-direction: column;
    padding: 25px;
}

.interview-list-section .interview-text {
    flex-grow: 1;
}

/* Interview Category Badge */
.interview-category-tag {
    display: inline-block;
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    max-width: 80px;
}

/* Animation for cards on scroll */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .interview-list-hero {
        padding: 150px 0 80px;
        border-radius: 0 0 50px 50px;
    }

    .interview-list-section {
        padding: 60px 0 80px;
    }
}

@media (max-width: 768px) {
    .interview-list-section {
        padding: 40px 0 60px;
    }
}

@media (max-width: 480px) {
    .interview-list-hero {
        padding: 120px 0 60px;
    }

    .interview-list-section {
        padding: 30px 0 50px;
    }
}