/* Staff Interviews Frontend CSS */

/* Single interview page */
.staff-interview-single {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.staff-interview-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
    border-bottom: 2px solid #e1e1e1;
}

.staff-interview-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.staff-interview-name {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
}

.staff-interview-position {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

.staff-interview-department {
    font-size: 16px;
    color: #888;
}

.staff-interview-join-date {
    font-size: 14px;
    color: #999;
    margin-top: 5px;
}

/* Interview content */
.staff-interview-content {
    margin-bottom: 40px;
}

.staff-interview-summary {
    background: #f8f9fa;
    padding: 20px;
    border-left: 4px solid #0073aa;
    margin-bottom: 30px;
    border-radius: 0 4px 4px 0;
}

.staff-interview-highlights {
    margin-bottom: 30px;
}

.staff-interview-highlights h3 {
    color: #333;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.staff-interview-highlights ul {
    list-style: none;
    padding: 0;
}

.staff-interview-highlights li {
    background: #fff;
    padding: 12px 15px;
    margin-bottom: 8px;
    border-left: 3px solid #0073aa;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.staff-interview-highlights li:before {
    content: "💡";
    margin-right: 8px;
}

/* Q&A Section */
.staff-interview-qa {
    margin-top: 40px;
}

.staff-interview-qa h3 {
    color: #333;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.qa-item {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.qa-question {
    background: #0073aa;
    color: white;
    padding: 15px 20px;
    font-weight: 600;
    position: relative;
}

.qa-question:before {
    content: "Q";
    background: rgba(255,255,255,0.2);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: bold;
}

.qa-answer {
    padding: 20px;
    line-height: 1.7;
    color: #333;
}

.qa-answer:before {
    content: "A";
    background: #28a745;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: bold;
    float: left;
    margin-top: 2px;
}

/* Archive page */
/* .staff-interviews-archiveのスタイルはテンプレートファイルで定義 */

.staff-interview-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.staff-interview-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.staff-interview-card-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

.staff-interview-card-name {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.staff-interview-card-position {
    color: #666;
    margin-bottom: 15px;
}

.staff-interview-card-excerpt {
    color: #777;
    line-height: 1.6;
    margin-bottom: 15px;
}

.staff-interview-card-link {
    display: inline-block;
    background: #0073aa;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.staff-interview-card-link:hover {
    background: #005a87;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .staff-interviews-archive {
        grid-template-columns: 1fr;
        padding: 15px;
    }
    
    .staff-interview-single {
        padding: 15px;
    }
    
    .staff-interview-header {
        padding: 20px 0;
    }
    
    .staff-interview-photo {
        width: 120px;
        height: 120px;
    }
    
    .staff-interview-name {
        font-size: 24px;
    }
}