/**
 * Interview Page Styles
 * 先輩インタビューページ専用CSS
 */

/* Page Hero */
.sz-page-hero--interview {
    background: linear-gradient(135deg, #114FA1 0%, #1a6fc9 50%, #28a745 100%);
    padding: 100px 20px 60px;
    text-align: center;
    color: #fff;
}

.sz-page-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.sz-page-hero__label {
    display: inline-block;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    margin-bottom: 15px;
    opacity: 0.9;
}

.sz-page-hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 15px;
    letter-spacing: 0.1em;
}

.sz-page-hero__desc {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Interview Section */
.sz-interview {
    padding: 60px 20px;
    background: #f8f9fa;
}

.sz-interview__inner {
    max-width: 1000px;
    margin: 0 auto;
}

/* Interview Card */
.sz-interview__card {
    display: flex;
    gap: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    overflow: hidden;
}

.sz-interview__card--reverse {
    flex-direction: row-reverse;
}

.sz-interview__card-image {
    flex: 0 0 300px;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.sz-interview__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.sz-interview__card-content {
    flex: 1;
    padding: 40px;
}

/* Card Meta */
.sz-interview__card-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.sz-interview__card-dept {
    display: inline-block;
    background: linear-gradient(135deg, #114FA1, #1a6fc9);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
}

.sz-interview__card-position {
    display: inline-block;
    background: #e8f4fd;
    color: #114FA1;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 5px 15px;
    border-radius: 20px;
}

/* Card Name */
.sz-interview__card-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

/* Card Message */
.sz-interview__card-message {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #114FA1;
}

/* Card Highlight */
.sz-interview__card-highlight {
    margin-bottom: 25px;
}

.sz-interview__card-highlight h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #114FA1;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sz-interview__card-highlight h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #114FA1, #28a745);
    border-radius: 2px;
}

.sz-interview__card-highlight p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
    padding-left: 12px;
}

/* Q&A Section */
.sz-interview__card-qa {
    margin-top: 20px;
}

.sz-interview__qa-item {
    background: #f0f7ff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.sz-interview__qa-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #114FA1;
    margin: 0 0 10px;
}

.sz-interview__qa-item p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* CTA Section */
.sz-cta {
    background: linear-gradient(135deg, #114FA1 0%, #1a6fc9 100%);
    padding: 80px 20px;
    text-align: center;
}

.sz-cta__inner {
    max-width: 800px;
    margin: 0 auto;
}

.sz-cta__title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 40px;
    line-height: 1.5;
}

.sz-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.sz-btn--primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #114FA1;
    font-size: 1rem;
    font-weight: 600;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sz-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.sz-btn--outline.sz-btn--lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 18px 40px;
    border: 2px solid #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sz-btn--outline.sz-btn--lg:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Responsive (Mobile First) */

/* Mobile base */
.sz-page-hero__title {
    font-size: clamp(1.5rem, 4vw, 2rem);
}

.sz-interview__card {
    flex-direction: column;
}

.sz-interview__card--reverse {
    flex-direction: column;
}

.sz-interview__card-image {
    flex: none;
    min-height: 250px;
}

.sz-interview__card-content {
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.sz-interview__card-name {
    font-size: clamp(1.25rem, 3vw, 1.6rem);
}

.sz-interview__card-message {
    font-size: clamp(0.9375rem, 2vw, 1.125rem);
    padding: clamp(0.9375rem, 3vw, 1.5rem);
}

.sz-cta__title {
    font-size: clamp(1.375rem, 3.5vw, 1.75rem);
}

.sz-cta__buttons {
    flex-direction: column;
    align-items: center;
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .sz-interview__card {
        flex-direction: row;
    }

    .sz-interview__card--reverse {
        flex-direction: row-reverse;
    }

    .sz-cta__buttons {
        flex-direction: row;
    }
}
