/* =========================================
   Interview Section (Front Page)
   ========================================= */
.section-padding {
    padding: 160px 0 100px;
}

.section-title--center {
    color: var(--color-white);
}

.interview__bg-text {
    color: rgba(255, 255, 255, 0.08);
}

/* =========================================
   Single Interview Page
   ========================================= */
.interview-single__header {
    text-align: center;
    margin-bottom: 60px;
}

.interview-single__label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    font-style: italic;
}

.interview-single__label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: #333;
    margin-right: 10px;
}

.interview-single__title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.4;
}

.interview-single__employee {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.interview-single__thumbnail {
    margin-bottom: 60px;
    border-radius: 24px;
    overflow: hidden;
}

.interview-single__thumbnail img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
}

.interview-single__content {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 60px;
}

.interview-single__content p {
    margin-bottom: 30px;
}

.interview-single__content h2 {
    font-size: 32px;
    font-weight: 900;
    margin: 60px 0 30px;
}

.interview-single__content h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 20px;
}

.interview-single__back {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.related-interviews {
    background: linear-gradient(100deg, rgba(185, 34, 51, 1) 0%, rgba(121, 42, 54, 1) 40%, rgba(223, 29, 49, 1) 100%);
}

.related-interviews .section-title--center {
    text-align: center;
    margin-bottom: 60px;
}

/* =========================================
   Responsive
   ========================================= */
/* =========================================
   Interview Content Blocks
   ========================================= */
.interview-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.interview-block--reverse {
    flex-direction: row-reverse;
}

.interview-block__image {
    width: 50%;
    flex-shrink: 0;
}

.interview-block__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.interview-block__text {
    width: 50%;
    font-size: 16px;
    line-height: 2;
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 768px) {




    .interview-single__title {
        font-size: 32px;
    }



    /* Content Blocks Responsive */
    .interview-block {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }

    .interview-block--reverse {
        flex-direction: column;
    }

    .interview-block__image,
    .interview-block__text {
        width: 100%;
    }
}

/* =========================================
   Pagination Styles
   ========================================= */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 80px;
    padding: 40px 0;
}

.pagination .nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    background-color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pagination .page-numbers:hover {
    background-color: rgba(235, 59, 73, 0.1);
    border-color: #eb3b49;
    color: #eb3b49;
    transform: translateY(-2px);
}

.pagination .page-numbers.current {
    background-color: #eb3b49;
    color: #fff;
    border-color: #eb3b49;
    box-shadow: 0 4px 10px rgba(235, 59, 73, 0.3);
    cursor: default;
    pointer-events: none;
}

.pagination .page-numbers.dots {
    background-color: transparent;
    border: none;
    color: #999;
    cursor: default;
    pointer-events: none;
}

.pagination .page-numbers.dots:hover {
    background-color: transparent;
    border-color: transparent;
    color: #999;
    transform: none;
}

.pagination .prev,
.pagination .next {
    font-weight: 700;
    padding: 0 20px;
}

.pagination .prev:hover,
.pagination .next:hover {
    background-color: #eb3b49;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .pagination {
        margin-top: 60px;
        padding: 30px 0;
    }

    .pagination .page-numbers {
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
        font-size: 13px;
    }

    .pagination .nav-links {
        gap: 6px;
    }

    .pagination .prev,
    .pagination .next {
        padding: 0 16px;
    }
}

/* =========================================
   Swiper Pagination Bullet
   ========================================= */
.interview__grid .swiper-pagination-bullet {
    background: var(--color-white);
}