/* (c) Haxter Corporation | Directive | H27-HX26-MS */

.hxdirective_page,
.hxdirective_page section,
.hxdirective_page div,
.hxdirective_page nav,
.hxdirective_page article,
.hxdirective_page figure,
.hxdirective_page img,
.hxdirective_page a,
.hxdirective_page h1,
.hxdirective_page h2,
.hxdirective_page p {
    box-sizing: border-box;
}

.hxdirective_page {
    --hxdirective_text: #171717;
    --hxdirective_muted: #666b72;
    --hxdirective_border: #e1e4e8;
    --hxdirective_soft: #f7f8f9;
    --hxdirective_surface: #ffffff;
    --hxdirective_navy: #07162b;
    --hxdirective_blue: #0067b8;

    width: 100%;
    min-height: 100vh;
    background: #ffffff;
    color: var(--hxdirective_text);
    font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
}

/* Hero */

.hxdirective_hero {
    width: 100%;
    min-height: 360px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hxdirective_hero_inner {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
    padding: 76px 0;
}

.hxdirective_hero h1 {
    max-width: 980px;
    margin: 0;
    color: #ffffff;
    font-family: "Candara Light", Candara, Calibri, "Segoe UI", Arial, sans-serif;
    font-size: clamp(42px, 5vw, 80px);
    line-height: 1.02;
    font-weight: 300;
    letter-spacing: -0.045em;
}

.hxdirective_hero p {
    max-width: 760px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.62;
    font-weight: 300;
}

/* Subnav */

.hxdirective_nav_section {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid var(--hxdirective_border);
}

.hxdirective_nav {
    width: min(1320px, calc(100% - 80px));
    min-height: 68px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 42px;
    overflow-x: auto;
    scrollbar-width: none;
}

.hxdirective_nav::-webkit-scrollbar {
    display: none;
}

.hxdirective_nav_link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 68px;
    color: #3f454c;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 400;
    text-decoration: none;
    white-space: nowrap;
}

.hxdirective_nav_link:hover {
    color: #000000;
    text-decoration: none;
}

.hxdirective_nav_link_current {
    color: #000000;
}

.hxdirective_nav_link_current::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: var(--hxdirective_blue);
}

/* People */

.hxdirective_people_section {
    width: 100%;
    background: #ffffff;
    padding: 72px 0 96px;
}

.hxdirective_people_grid {
    width: min(1240px, calc(100% - 80px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 54px;
    row-gap: 70px;
    align-items: start;
}

.hxdirective_person {
    min-width: 0;
}

.hxdirective_person_link {
    display: grid;
    justify-items: center;
    color: inherit;
    text-decoration: none;
}

.hxdirective_person_link:hover {
    text-decoration: none;
}

.hxdirective_person_photo {
    width: 210px;
    height: 210px;
    margin: 0;
    border-radius: 50%;
    overflow: hidden;
    background: var(--hxdirective_soft);
    border: 1px solid var(--hxdirective_border);
}

.hxdirective_person_photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hxdirective_person_body {
    width: 100%;
    margin-top: 24px;
    text-align: center;
}

.hxdirective_person_body h2 {
    margin: 0;
    color: #000000;
    font-family: "DengXian Light", "Montserrat", "Segoe UI", Arial, sans-serif;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.hxdirective_person_role {
    margin: 12px auto 0;
    max-width: 270px;
    color: #6a6f76;
    font-family: "DengXian Light", "Montserrat", "Segoe UI", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 300;
}

.hxdirective_person_link:hover .hxdirective_person_role {
    color: #33383f;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hxdirective_person_description {
    margin: 14px auto 0;
    max-width: 290px;
    color: var(--hxdirective_muted);
    font-size: 13px;
    line-height: 1.62;
    font-weight: 300;
}

/* Static profiles without URL */

.hxdirective_person_link_static:hover .hxdirective_person_role {
    text-decoration: none;
}

/* Responsive */

@media (max-width: 1180px) {
    .hxdirective_people_grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 44px;
    }
}

@media (max-width: 860px) {
    .hxdirective_hero_inner,
    .hxdirective_nav,
    .hxdirective_people_grid {
        width: min(100% - 42px, 1240px);
    }

    .hxdirective_hero {
        min-height: 330px;
    }

    .hxdirective_hero_inner {
        padding: 64px 0;
    }

    .hxdirective_hero h1 {
        font-size: clamp(38px, 9vw, 58px);
    }

    .hxdirective_hero p {
        font-size: 16px;
    }

    .hxdirective_nav {
        justify-content: flex-start;
        gap: 30px;
    }

    .hxdirective_people_section {
        padding: 58px 0 76px;
    }

    .hxdirective_people_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 34px;
        row-gap: 58px;
    }

    .hxdirective_person_photo {
        width: 185px;
        height: 185px;
    }
}

@media (max-width: 560px) {
    .hxdirective_hero_inner,
    .hxdirective_nav,
    .hxdirective_people_grid {
        width: min(100% - 32px, 1240px);
    }

    .hxdirective_hero {
        min-height: 310px;
    }

    .hxdirective_hero_inner {
        padding: 54px 0;
    }

    .hxdirective_hero h1 {
        font-size: 40px;
        line-height: 1.05;
    }

    .hxdirective_hero p {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.55;
    }

    .hxdirective_nav {
        min-height: 62px;
        gap: 26px;
    }

    .hxdirective_nav_link {
        min-height: 62px;
        font-size: 14px;
    }

    .hxdirective_people_grid {
        grid-template-columns: 1fr;
        row-gap: 54px;
    }

    .hxdirective_person_photo {
        width: 200px;
        height: 200px;
    }

    .hxdirective_person_body h2 {
        font-size: 24px;
    }

    .hxdirective_person_role {
        font-size: 17px;
    }
}

.hxdirective_speeches_section {
    width: 100%;
    background: #ffffff;
    padding: 72px 0 96px;
}

.hxdirective_speeches_inner {
    width: min(1120px, calc(100% - 80px));
    margin: 0 auto;
}

.hxdirective_speeches_list {
    display: grid;
    gap: 18px;
}

.hxdirective_speech {
    border-top: 1px solid var(--hxdirective_border);
}

.hxdirective_speech:last-child {
    border-bottom: 1px solid var(--hxdirective_border);
}

.hxdirective_speech_link {
    display: block;
    padding: 28px 0;
    color: inherit;
    text-decoration: none;
}

.hxdirective_speech_link:hover {
    text-decoration: none;
}

.hxdirective_speech_date {
    display: block;
    margin-bottom: 10px;
    color: var(--hxdirective_muted);
    font-size: 13px;
    line-height: 1.3;
    font-weight: 300;
}

.hxdirective_speech h2 {
    max-width: 840px;
    margin: 0;
    color: #000000;
    font-size: 26px;
    line-height: 1.28;
    font-weight: 300;
    letter-spacing: -0.025em;
}

.hxdirective_speech_speaker {
    margin: 10px 0 0;
    color: #3f454c;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 300;
}

.hxdirective_speech_description {
    max-width: 760px;
    margin: 12px 0 0;
    color: var(--hxdirective_muted);
    font-size: 14px;
    line-height: 1.65;
    font-weight: 300;
}

.hxdirective_speech_link:hover h2 {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.hxdirective_speech_link_static:hover h2 {
    text-decoration: none;
}

.hxdirective_empty_state {
    max-width: 760px;
    margin: 0 auto;
    padding: 72px 0;
    text-align: center;
}

.hxdirective_empty_state h2 {
    margin: 0;
    color: #000000;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 300;
    letter-spacing: -0.03em;
}

.hxdirective_empty_state p {
    margin: 16px auto 0;
    max-width: 560px;
    color: var(--hxdirective_muted);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 300;
}

@media (max-width: 860px) {
    .hxdirective_speeches_inner {
        width: min(100% - 42px, 1120px);
    }

    .hxdirective_speeches_section {
        padding: 58px 0 76px;
    }

    .hxdirective_speech h2 {
        font-size: 23px;
    }
}

@media (max-width: 520px) {
    .hxdirective_speeches_inner {
        width: min(100% - 32px, 1120px);
    }

    .hxdirective_speech_link {
        padding: 24px 0;
    }

    .hxdirective_empty_state {
        padding: 54px 0;
    }

    .hxdirective_empty_state h2 {
        font-size: 29px;
    }
}
/*===============================*/
/* Individual executive profile pages */

.hxdirective_profile_page {
    background: #ffffff;
}

/* Profile intro */

.hxdirective_profile_intro {
    width: 100%;
    background: #ffffff;
    padding: 76px 0 64px;
}

.hxdirective_profile_intro_inner {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr) 320px;
    column-gap: 64px;
    align-items: center;
}

.hxdirective_profile_photo_panel {
    width: 100%;
    background: #ffffff;
}

.hxdirective_profile_photo_panel img {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
    background: #f6f7f8;
}

.hxdirective_profile_identity {
    min-width: 0;
}

.hxdirective_profile_back {
    display: inline-block;
    margin-bottom: 22px;
    color: #6a6f76;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 300;
    text-decoration: none;
}

.hxdirective_profile_back::before {
    content: "‹ ";
    font-size: 18px;
    line-height: 0;
}

.hxdirective_profile_back:hover {
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hxdirective_profile_identity h2 {
    margin: 0;
    color: #000000;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    font-weight: 300;
    letter-spacing: -0.04em;
}

.hxdirective_profile_role {
    margin: 18px 0 0;
    color: #1f2933;
    font-size: 21px;
    line-height: 1.42;
    font-weight: 300;
}

.hxdirective_profile_headline {
    margin: 18px 0 0;
    color: #6a6f76;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
}

/* Right side panels */

.hxdirective_profile_side {
    display: grid;
    gap: 28px;
    align-self: start;
}

.hxdirective_profile_contact,
.hxdirective_profile_materials {
    background: #f7f8f9;
    padding: 28px 30px;
}

.hxdirective_profile_contact h3,
.hxdirective_profile_materials h3 {
    margin: 0 0 22px;
    color: #000000;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: -0.015em;
}

.hxdirective_profile_contact p {
    margin: 0 0 18px;
    color: #1f2933;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 300;
}

.hxdirective_profile_contact p:last-child {
    margin-bottom: 0;
}

.hxdirective_profile_contact span {
    display: block;
    margin-bottom: 4px;
    color: #6a6f76;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 300;
}

.hxdirective_profile_contact a,
.hxdirective_profile_materials a {
    color: #0067b8;
    text-decoration: none;
}

.hxdirective_profile_contact a:hover,
.hxdirective_profile_materials a:hover {
    color: #004f8f;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hxdirective_profile_materials ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hxdirective_profile_materials li {
    margin: 0;
    padding: 0;
    color: #1f2933;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 300;
}

/* Summary */

.hxdirective_profile_summary {
    width: 100%;
    background: #ffffff;
    padding: 16px 0 86px;
}

.hxdirective_profile_summary_inner {
    width: min(960px, calc(100% - 80px));
    margin: 0 auto;
}

.hxdirective_profile_summary_inner p {
    margin: 0 0 32px;
    color: #111111;
    font-size: 20px;
    line-height: 1.72;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.hxdirective_profile_summary_inner p:last-child {
    margin-bottom: 0;
}

/* Photo assets */

.hxdirective_profile_assets {
    width: 100%;
    background: #f7f8f9;
    padding: 82px 0 96px;
}

.hxdirective_profile_assets_inner {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
}

.hxdirective_profile_assets_header {
    margin-bottom: 42px;
}

.hxdirective_profile_assets_header h2 {
    margin: 0;
    color: #000000;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 300;
    letter-spacing: -0.035em;
}

.hxdirective_profile_assets_header p {
    margin: 12px 0 0;
    color: #6a6f76;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
}

.hxdirective_profile_asset_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px;
}

.hxdirective_profile_asset {
    min-width: 0;
}

.hxdirective_profile_asset a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.hxdirective_profile_asset img {
    width: 100%;
    aspect-ratio: 4 / 5;
    display: block;
    object-fit: cover;
    background: #ffffff;
}

.hxdirective_profile_asset span {
    display: block;
    margin-top: 14px;
    color: #3f454c;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 300;
}

.hxdirective_profile_asset a:hover span {
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Responsive profile pages */

@media (max-width: 1180px) {
    .hxdirective_profile_intro_inner {
        grid-template-columns: 320px minmax(0, 1fr);
        row-gap: 46px;
    }

    .hxdirective_profile_side {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hxdirective_profile_asset_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .hxdirective_profile_intro {
        padding: 58px 0 54px;
    }

    .hxdirective_profile_intro_inner,
    .hxdirective_profile_summary_inner,
    .hxdirective_profile_assets_inner {
        width: min(100% - 42px, 1320px);
    }

    .hxdirective_profile_intro_inner {
        grid-template-columns: 1fr;
        row-gap: 34px;
    }

    .hxdirective_profile_photo_panel {
        max-width: 360px;
    }

    .hxdirective_profile_side {
        grid-template-columns: 1fr;
    }

    .hxdirective_profile_summary {
        padding: 8px 0 68px;
    }

    .hxdirective_profile_summary_inner p {
        font-size: 18px;
        line-height: 1.68;
    }

    .hxdirective_profile_assets {
        padding: 64px 0 76px;
    }

    .hxdirective_profile_asset_grid {
        gap: 32px;
    }
}

@media (max-width: 560px) {
    .hxdirective_profile_intro_inner,
    .hxdirective_profile_summary_inner,
    .hxdirective_profile_assets_inner {
        width: min(100% - 32px, 1320px);
    }

    .hxdirective_profile_identity h2 {
        font-size: 38px;
    }

    .hxdirective_profile_role {
        font-size: 19px;
    }

    .hxdirective_profile_contact,
    .hxdirective_profile_materials {
        padding: 24px 22px;
    }

    .hxdirective_profile_summary_inner p {
        font-size: 17px;
    }

    .hxdirective_profile_asset_grid {
        grid-template-columns: 1fr;
    }

    .hxdirective_profile_assets_header h2 {
        font-size: 30px;
    }
}