/* ===========================================
   Instructor Archive (講師紹介)
   =========================================== */
.instructor-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.instructor-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(20px, 3vw, 48px);
    max-width: 1120px;
    max-height: 583px;
    margin: 0 auto;
    padding: clamp(24px, 4vw, 48px);
    background: #65BAA9;
    border-radius: 30px;
    overflow: hidden;
}

.instructor-card-image {
    width: 336px;
    height: 453px;
    flex-shrink: 0;
    overflow: hidden;
    background: #fff;
}

.instructor-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.instructor-card-content {
}

.instructor-card-header {
    margin-bottom: 8px;
}

.instructor-card-name {
    font-size: clamp(24px, 2.5vw, 31px);
    font-weight: 700;
    line-height: 1.6;
    color: #fff;
    margin: 0;
}

.instructor-card-name-en {
    font-family: "Poppins", sans-serif;
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 300;
    line-height: 1;
    color: #fff;
    margin: 4px 0 0;
}

.instructor-card-affiliation {
    font-size: clamp(14px, 1.4vw, 16px);
    font-weight: 500;
    line-height: 1.6;
    color: #fff;
    margin: 0;
}

.instructor-card-experience {
    font-size: clamp(11px, 1vw, 13px);
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
    margin: 0 0 12px;
}

.instructor-card-section {
    margin-bottom: 12px;
}

.instructor-card-section:last-child {
    margin-bottom: 0;
}

.instructor-card-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 23px;
    background: #CCE390;
    border-radius: 4px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #65BAA9;
    margin-bottom: 8px;
}

.instructor-card-label--message {
    width: 92px;
}

.instructor-card-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: #30403E;
    margin: 0;
}


@media (max-width: 1100px) {
    .instructor-card-image {
        width: clamp(200px, 30vw, 336px);
        height: clamp(270px, 40.4vw, 453px);
        overflow: hidden;
    }

    .instructor-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    .instructor-card {
        max-height: none;
    }
}

@media (max-width: 768px) {
    .instructor-card {
        grid-template-columns: 1fr;
    }

    .instructor-card-image {
        width: 78.46vw;
        height: 78.46vw;
        max-width: 100%;
        aspect-ratio: 1 / 1;
        margin: 0 auto;
        overflow: hidden;
    }

    .instructor-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .instructor-card-name {
        font-size: clamp(1px, 6.65vw, 25px);
        font-weight: 700;
        line-height: 1.6;
    }

    .instructor-card-name-en {
        font-size: clamp(1px, 3.99vw, 15px);
        font-weight: 300;
        line-height: 1;
    }

    .instructor-card-affiliation {
        font-size: clamp(1px, 4.26vw, 16px);
        font-weight: 500;
        line-height: 1.6;
    }

    .instructor-card-experience {
        font-size: clamp(1px, 2.66vw, 10px);
        font-weight: 400;
        line-height: 1.6;
    }

    .instructor-card-label {
        font-size: clamp(1px, 3.72vw, 14px);
        font-weight: 500;
        line-height: 1;
    }

    .instructor-card-text {
        font-size: clamp(1px, 3.72vw, 14px);
        font-weight: 500;
        line-height: 1.6;
    }
}
