.instructor-section {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line);
    background:
        radial-gradient(circle at 8% 18%, rgba(215, 25, 32, .08), transparent 26rem),
        linear-gradient(145deg, #f8fafc 0%, #eef3f8 100%);
}

.instructor-section::after {
    position: absolute;
    right: -8rem;
    bottom: -12rem;
    width: 28rem;
    height: 28rem;
    border: 1px solid rgba(16, 37, 63, .08);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.instructor-intro {
    max-width: 780px;
    margin-bottom: 32px;
}

.instructor-intro .eyebrow {
    margin-bottom: 12px;
}

.instructor-intro h2 {
    font-size: clamp(30px, 4vw, 44px);
    letter-spacing: -.035em;
}

.instructor-intro p {
    max-width: 680px;
    margin: 10px 0 0;
    font-size: 17px;
    line-height: 1.65;
}

.instructor-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 28px;
}

.instructor-card {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.55fr);
    gap: clamp(32px, 5vw, 66px);
    align-items: stretch;
    overflow: hidden;
    padding: clamp(18px, 3vw, 32px);
    border: 1px solid rgba(16, 37, 63, .1);
    border-radius: 28px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 24px 70px rgba(16, 37, 63, .12);
}

.instructor-photo-wrap {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    border-radius: 20px;
    background: var(--navy);
}

.instructor-photo {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 610px;
    object-fit: cover;
}

.instructor-brand-panel {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 610px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 34px;
    color: #fff;
    text-align: center;
    background:
        radial-gradient(circle at 50% 30%, rgba(255, 255, 255, .15), transparent 42%),
        linear-gradient(155deg, #17375b 0%, #081a2f 72%);
}

.instructor-brand-logo {
    display: block;
    width: min(70%, 210px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, .2));
}

.instructor-initials {
    margin-top: 4px;
    font-size: clamp(42px, 7vw, 68px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.045em;
}

.instructor-brand-label {
    color: #ffb4b7;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.instructor-photo-caption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: grid;
    gap: 3px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 13px;
    color: #fff;
    background: rgba(8, 26, 47, .82);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
    backdrop-filter: blur(10px);
}

.instructor-photo-caption span {
    color: #ffb4b7;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .16em;
}

.instructor-photo-caption strong {
    font-size: 14px;
}

.instructor-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px 10px 14px 0;
}

.instructor-heading {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.instructor-heading h3 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1;
    letter-spacing: -.045em;
}

.instructor-role {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 13px 0 0;
    color: var(--red) !important;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .025em;
}

.instructor-bio {
    margin-top: 22px;
    columns: 2;
    column-gap: 32px;
}

.instructor-bio p {
    margin: 0 0 17px;
    break-inside: avoid;
    color: #475467;
    font-size: 14.5px;
    line-height: 1.72;
}

.instructor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
}

.instructor-tags li {
    padding: 7px 11px;
    border: 1px solid #d9e2ec;
    border-radius: 999px;
    color: var(--navy2);
    background: #f4f7fa;
    font-size: 12px;
    font-weight: 800;
}

.instructor-cta {
    align-self: flex-start;
    margin-top: 24px;
}

@media (max-width: 900px) {
    .instructor-card {
        grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr);
        gap: 30px;
    }

    .instructor-photo {
        min-height: 540px;
    }

    .instructor-bio {
        columns: 1;
    }
}

@media (max-width: 720px) {
    .instructor-section {
        padding-top: 52px;
    }

    .instructor-card {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 14px;
        border-radius: 22px;
    }

    .instructor-photo-wrap {
        aspect-ratio: 4 / 4.7;
        min-height: 0;
        border-radius: 16px;
    }

    .instructor-photo {
        min-height: 0;
    }

    .instructor-brand-panel {
        min-height: 0;
    }

    .instructor-content {
        padding: 28px 8px 12px;
    }

    .instructor-heading h3 {
        font-size: 34px;
    }

    .instructor-role-divider {
        display: none;
    }

    .instructor-role {
        display: grid;
        gap: 3px;
        line-height: 1.55;
    }

    .instructor-bio p {
        font-size: 14px;
    }

    .instructor-cta {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .instructor-card,
    .instructor-card * {
        scroll-behavior: auto;
    }
}
