/**
 * Interview Single & Archive Templates Styles
 */

/* ===== SINGLE INTERVIEW ===== */

.interview-single {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
}

.interview-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.interview-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.interview-location {
    font-size: 16px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.interview-portrait {
    max-width: 300px;
    margin: 30px auto;
    border-radius: 8px;
    overflow: hidden;
}

.interview-portrait img {
    width: 100%;
    height: auto;
    display: block;
}

.interview-social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.social-link {
    display: inline-block;
    padding: 10px 25px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s;
}

.social-link:hover {
    background: #333;
}

.social-link.instagram {
    background: #E1306C;
}

.social-link.twitter {
    background: #1DA1F2;
}

.social-link.website {
    background: #000;
}

/* Interview Content */
.interview-content {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.interview-question-block {
    margin-bottom: 50px;
}

.interview-question {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.interview-answer {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.interview-answer p {
    margin-bottom: 20px;
}

/* Image Gallery */
.interview-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 60px 0;
}

.interview-gallery-item {
    background: #fff;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.interview-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer */
.interview-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.interview-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.back-to-interviews {
    display: inline-block;
    padding: 12px 30px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.back-to-interviews:hover {
    background: #333;
}

/* ===== ARCHIVE PAGE ===== */

.interview-archive {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.archive-header {
    text-align: center;
    margin-bottom: 60px;
}

.archive-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.archive-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* Interview Grid */
.interview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.interview-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.interview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.interview-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.interview-card-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f0f0f0;
}

.interview-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.interview-card:hover .interview-card-image img {
    transform: scale(1.05);
}

.interview-card-content {
    padding: 30px;
}

.interview-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.interview-card-location {
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.interview-card-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.interview-card-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
}

.interview-read-more {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.pagination .page-numbers {
    padding: 10px 15px;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: #000;
    color: #fff;
}

/* No Interviews */
.no-interviews {
    text-align: center;
    padding: 80px 20px;
}

.no-interviews p {
    font-size: 18px;
    color: #666;
}

/* ===== MOBILE RESPONSIVE ===== */

@media (max-width: 768px) {
    .interview-single {
        padding: 40px 20px;
    }

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

    .interview-question {
        font-size: 20px;
    }

    .interview-content,
    .interview-answer {
        font-size: 16px;
    }

    .interview-gallery {
        gap: 20px;
        margin: 40px 0;
    }

    .archive-title {
        font-size: 36px;
    }

    .archive-description {
        font-size: 16px;
    }

    .interview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .interview-card-content {
        padding: 20px;
    }

    .interview-card-title {
        font-size: 20px;
    }

    .interview-social-links {
        flex-direction: column;
        gap: 10px;
    }

    .social-link {
        width: 100%;
        text-align: center;
    }
}
