/* The real representative portrait and career facts below the video introduction. */
main > section.home-profile {
    background: #fff;
    padding-block: 48px;
}

.home-profile .home-profile__inner {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: center;
    gap: clamp(40px, 5vw, 72px);
}

.home-profile .home-profile__portrait {
    width: 100%;
    margin: 0;
    overflow: hidden;
    background: #e8e9e7;
}

.home-profile .home-profile__portrait img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
}

.home-profile .home-profile__identity {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-bottom: 14px;
}

.home-profile .home-profile__name,
.home-profile .home-profile__experience {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.home-profile .home-profile__name {
    color: var(--site-brand-dark, #283b63);
    font-weight: 700;
}

.home-profile .home-profile__experience {
    padding-left: 18px;
    border-left: 1px solid #cbd3df;
    color: #526077;
    font-weight: 500;
}

.home-profile .home-profile__title {
    margin: 0;
    color: var(--site-brand-dark, #283b63);
    font-size: clamp(30px, 2.8vw, 36px);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.035em;
    word-break: keep-all;
}

.home-profile .home-profile__description {
    margin: 14px 0 0;
    max-width: 640px;
    color: #465268;
    font-size: 17px;
    line-height: 1.8;
    word-break: keep-all;
}

.home-profile .home-profile__careers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin: 20px 0 0;
    padding-top: 18px;
    border-top: 1px solid #dfe4eb;
}

.home-profile .home-profile__careers dt {
    margin: 0 0 4px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.home-profile .home-profile__careers dd {
    margin: 0;
    color: #344257;
    font-size: 16px;
    line-height: 1.55;
    word-break: keep-all;
}

.home-profile .home-profile__action {
    margin-top: 14px;
}

.home-profile .home-profile__link {
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    min-height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--site-brand-dark, #283b63);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    cursor: pointer;
}

.home-profile .home-profile__arrow {
    width: 22px;
    height: 22px;
    transition: transform 180ms ease;
}

.home-profile .home-profile__link:hover .home-profile__arrow {
    transform: translateX(4px);
}

.home-profile .home-profile__link:focus-visible {
    outline: 2px solid var(--site-brand-dark, #283b63);
    outline-offset: 6px;
}

@media (max-width: 1099px) and (min-width: 800px) {
    .home-profile .home-profile__inner {
        grid-template-columns: 290px minmax(0, 1fr);
        gap: 36px;
    }

    .home-profile .home-profile__careers {
        gap: 12px 20px;
    }

    .home-profile .home-profile__careers dd {
        font-size: 16px;
    }
}

@media (max-width: 799px) {
    .home-profile {
        padding-block: 48px;
    }

    .home-profile .home-profile__inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
    }

    .home-profile .home-profile__portrait {
        width: min(100%, 360px);
        justify-self: center;
    }

    .home-profile .home-profile__content {
        width: min(100%, 580px);
        justify-self: center;
    }

    .home-profile .home-profile__identity {
        margin-bottom: 16px;
    }

    .home-profile .home-profile__title {
        font-size: clamp(30px, 6.4vw, 36px);
    }

    .home-profile .home-profile__description {
        font-size: 16px;
        line-height: 1.8;
    }

    .home-profile .home-profile__careers {
        margin-top: 24px;
    }
}

@media (max-width: 479px) {
    .home-profile .home-profile__careers {
        grid-template-columns: minmax(0, 1fr);
        gap: 15px;
    }

    .home-profile .home-profile__careers > div {
        display: grid;
        grid-template-columns: 76px minmax(0, 1fr);
        align-items: baseline;
        gap: 8px;
    }

    .home-profile .home-profile__careers dt {
        margin: 0;
    }

    .home-profile .home-profile__desktop-break {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-profile .home-profile__arrow {
        transition: none;
    }
}
