.executive-hero {
    background-color: var(--profile-teal);
    border-bottom: 10px solid var(--profile-sand);
}

.executive-hero__wrapper {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* For tablet landscape up */
@media (min-width: 900px) {
    .executive-hero__wrapper {
        padding-top: 13rem;
    }
}

.executive-hero__container {
    display: flex;
    flex-direction: column;
}

/* For tablet landscape up */
@media (min-width: 900px) {
    .executive-hero__container {
        display: grid;
        grid-template-columns: 36% 1fr;
        column-gap: 2rem;
    }
}

.executive-hero__image {
    align-self: center;
    max-width: 320px;
    padding-top: 2rem;
}

/* For tablet landscape up */
@media (min-width: 900px) {
    .executive-hero__image {
        align-self: end;
        max-width: none;
        padding-top: 0;
        margin-left: -1rem;
    }
}

.executive-hero__image img {
    display: block;
    width: 100%;
}

.executive-hero__content {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

/* For tablet landscape up */
@media (min-width: 900px) {
    .executive-hero__content {
        padding-top: 0;
        padding-bottom: 4rem;
    }
}

/* For desktop up */
@media (min-width: 1200px) {
    .executive-hero__content {
        /* Bleed right up to -5rem, clamped to the wrapper gutter so it
           never pushes past the viewport (600px = half the 1200px wrapper) */
        margin-right: min(-1rem, max(-5rem, calc(600px - 50vw)));
    }
}

.executive-hero__content h1 {
    color: var(--white);
    font-size: 44px;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* For desktop up */
@media (min-width: 1200px) {
    .executive-hero__content h1 {
        font-size: 72px;
    }
}

.executive-hero__role {
    color: var(--white);
    font-size: 16px;
    font-family: var(--header-font-family);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.executive-hero__divider {
    height: 8px;
    border-top: 1px solid var(--profile-teal-line);
    border-bottom: 1px solid var(--profile-teal-line);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.executive-hero__details {
    display: flex;
    flex-direction: column;
    row-gap: 1.25rem;
}

/* For desktop up */
@media (min-width: 1200px) {
    .executive-hero__details {
        display: grid;
        grid-template-columns: 150px 1fr 180px;
        column-gap: 1.5rem;
    }
}

.executive-hero__label {
    color: var(--white);
    font-size: 16px;
    font-family: var(--header-font-family);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.4;
}

.executive-hero__bio {
    max-width: 603px;
}

.executive-hero__bio p {
    color: var(--white);
    font-size: 15px;
    line-height: 22px;
}

.executive-hero__bio p:not(:last-of-type) {
    margin-bottom: 1rem;
}

/* Collapsed under the description: hairline above the links */
.executive-hero__profiles {
    border-top: 1px solid var(--profile-teal-line);
    padding-top: 1.25rem;
}

/* For desktop up */
@media (min-width: 1200px) {
    .executive-hero__profiles {
        border-top: 0;
        padding-top: 0;
        border-left: 1px solid var(--profile-teal-line);
        padding-left: 1.5rem;
    }
}

.executive-hero__profiles ul {
    margin-top: 0.75rem;
}

.executive-hero__profiles ul li:not(:last-of-type) {
    margin-bottom: 0.75rem;
}

.executive-hero__profiles ul li a {
    display: flex;
    align-items: center;
    column-gap: 0.75rem;
    color: var(--white);
    font-size: 16px;
    font-family: var(--body-font-family);
    text-decoration: underline;
    text-underline-position: from-font;
}

.executive-hero__profiles ul li a:hover {
    color: var(--secondary-color-lighter);
}

.executive-hero__profiles ul li a figure {
    width: 22px;
    flex-shrink: 0;
    color: var(--white);
}
