/**
 * Interview Detail Page CSS
 * YourIT - 고객사 인터뷰 상세 페이지
 */

/* Interview Detail Styles */
.interview-detail-hero {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #8b95a1;
    margin-bottom: 32px;
}

.breadcrumb a {
    color: #8b95a1;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #00D4AA;
}

.breadcrumb span {
    color: #191f28;
    font-weight: 500;
}

.detail-header {
    display: flex;
    gap: 48px;
    align-items: stretch;
}

/* 썸네일 이미지 - 왼쪽 배치 */
.detail-thumbnail {
    flex: 0 0 420px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.detail-thumbnail img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.detail-thumbnail-placeholder {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-thumbnail-placeholder span {
    font-size: 96px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
}

/* 오른쪽 정보 영역 */
.detail-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.detail-tags .tag {
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
}

.detail-tags .tag.cloud { background: rgba(0, 212, 170, 0.1); color: #00B896; }
.detail-tags .tag.server { background: rgba(124, 58, 237, 0.1); color: #7c3aed; }
.detail-tags .tag.security { background: rgba(220, 38, 38, 0.1); color: #dc2626; }
.detail-tags .tag.domain { background: rgba(217, 70, 239, 0.1); color: #d946ef; }
.detail-tags .tag.marketing { background: rgba(234, 88, 12, 0.1); color: #ea580c; }

.detail-company {
    font-size: 36px;
    font-weight: 800;
    color: #191f28;
    margin-bottom: 8px;
}

.detail-industry {
    font-size: 16px;
    color: #8b95a1;
    margin-bottom: 16px;
}

.detail-meta {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: #6b7684;
}

.detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.detail-meta i {
    color: #00D4AA;
}

/* Quote Section */
.interview-quote-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
}

.quote-content {
    text-align: center;
    color: #fff;
}

.quote-icon {
    font-size: 48px;
    opacity: 0.5;
    margin-bottom: 24px;
}

.quote-text {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto 24px;
}

.quote-author {
    font-size: 16px;
    opacity: 0.9;
}

/* Company Intro */
.company-intro-section {
    padding: 80px 0;
    background: #fff;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-title {
    font-size: 24px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.intro-title i {
    color: #00D4AA;
}

.intro-text {
    font-size: 17px;
    line-height: 1.9;
    color: #4e5968;
}

/* Interview Q&A */
.interview-qa-section {
    padding: 80px 0;
    background: #f8fafb;
}

.qa-list {
    max-width: 800px;
    margin: 0 auto;
}

.qa-item {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.qa-question {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.qa-badge {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.qa-question-text {
    font-size: 18px;
    font-weight: 700;
    color: #191f28;
    line-height: 1.5;
}

.qa-answer {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-left: 52px;
}

.qa-answer-badge {
    width: 36px;
    height: 36px;
    background: #f2f4f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: #6b7684;
    flex-shrink: 0;
}

.qa-answer-text {
    font-size: 16px;
    line-height: 1.9;
    color: #4e5968;
}

/* Results Section */
.interview-results-section {
    padding: 80px 0;
    background: #fff;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.result-card {
    background: #f8fafb;
    border-radius: 16px;
    padding: 32px;
}

.result-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #00D4AA;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.result-card-content {
    font-size: 15px;
    line-height: 1.8;
    color: #4e5968;
}

/* Navigation */
.interview-nav-section {
    padding: 60px 0;
    background: #f8fafb;
    border-top: 1px solid #e5e8eb;
}

.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-btn.primary {
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    color: #fff;
}

.nav-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 212, 170, 0.3);
}

.nav-btn.secondary {
    background: #fff;
    color: #191f28;
    border: 1px solid #e5e8eb;
}

.nav-btn.secondary:hover {
    background: #f8fafb;
    border-color: #00D4AA;
    color: #00D4AA;
}

@media (max-width: 1024px) {
    .detail-header {
        gap: 32px;
    }

    .detail-thumbnail {
        flex: 0 0 340px;
    }

    .detail-thumbnail img,
    .detail-thumbnail-placeholder {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .detail-header {
        flex-direction: column;
        gap: 24px;
    }

    .detail-thumbnail {
        flex: none;
        width: 100%;
    }

    .detail-thumbnail img,
    .detail-thumbnail-placeholder {
        height: 220px;
    }

    .detail-thumbnail-placeholder span {
        font-size: 64px;
    }

    .detail-info {
        text-align: center;
    }

    .detail-tags {
        justify-content: center;
    }

    .detail-meta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .detail-company {
        font-size: 28px;
    }

    .quote-text {
        font-size: 22px;
    }

    .qa-answer {
        padding-left: 0;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .nav-buttons {
        flex-direction: column;
    }

    .nav-btn {
        justify-content: center;
    }
}
