@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;0,900;1,400;1,700&display=swap');

.specialist-hero-section {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background-color: #1A454C;
}

.specialist-hero-section .shs-inner {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;
}

/* Mobile image band: 375 × 430 */
.specialist-hero-section .shs-media {
    width: 100%;
    max-width: 100%;
    position: relative;
    aspect-ratio: 375 / 430;
    overflow: hidden;
    background-color: #1A454C;
}

.specialist-hero-section .shs-media picture {
    display: block;
    width: 100%;
    height: 100%;
}

.specialist-hero-section .shs-media__img {
    display: block;
    position: absolute;
    /* 47.49 / 375, 27 / 430, 280 / 375, 403 / 430 */
    left: 12.664%;
    top: 6.279%;
    width: 74.667%;
    height: 93.721%;
    object-fit: contain;
    object-position: center bottom;
}

/* Mobile content panel: #123C43, 20px L/R, 40px vertical */
.specialist-hero-section .shs-content {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;
    gap: 40px;
    padding: 40px 20px;
    background-color: #123C43;
}

.specialist-hero-section .shs-copy {
    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;
    gap: 24px;
    width: 100%;
}

.specialist-hero-section .shs-header {
    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;
    gap: 16px;
    width: 100%;
    text-align: center;
}

.specialist-hero-section .shs-title {
    margin: 0;
    width: 100%;
    color: #FFFFFF;
    font-family: 'Lato', sans-serif;
    /* Mobile/H1 — 38/44 Bold */
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 44px;
    text-align: center;
    text-transform: capitalize;
    word-break: break-word;
}

.specialist-hero-section .shs-credentials {
    margin: 0;
    width: 100%;
    color: #B4E9EC;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 1.44px;
    text-align: center;
    text-transform: uppercase;
    white-space: pre-wrap;
    word-break: break-word;
}

.specialist-hero-section .shs-intro {
    width: 100%;
    color: #FFFFFF;
    font-family: 'Lato', sans-serif;
    /* Mobile/Par — 16/24 */
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    word-break: break-word;
}

.specialist-hero-section .shs-intro p,
.specialist-hero-section .shs-intro a,
.specialist-hero-section .shs-intro strong,
.specialist-hero-section .shs-intro em,
.specialist-hero-section .shs-intro ul,
.specialist-hero-section .shs-intro ol,
.specialist-hero-section .shs-intro li {
    color: inherit;
    font: inherit;
}

.specialist-hero-section .shs-intro strong {
    font-weight: 700;
}

.specialist-hero-section .shs-intro :first-child {
    margin-top: 0;
}

.specialist-hero-section .shs-intro :last-child {
    margin-bottom: 0;
}

.specialist-hero-section .shs-bullets {
    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;
    gap: 6px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.specialist-hero-section .shs-bullet {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
}

.specialist-hero-section .shs-bullet__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    flex-shrink: 0;
    padding: 5px;
    box-sizing: border-box;
}

.specialist-hero-section .shs-bullet__icon img {
    display: block;
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.specialist-hero-section .shs-bullet__text {
    flex: 1 1 auto;
    min-width: 0;
    color: #FFFFFF;
    font-family: 'Lato', sans-serif;
    /* Mobile/Par — 16/24 */
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    word-break: break-word;
}

.specialist-hero-section .shs-button {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    min-height: 64px;
    padding: 20px 32px;
    border: 0;
    border-radius: 40px;
    background: #2D969C;
    color: #FFFFFF;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.32px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    word-break: break-word;
    transition: background-color 200ms ease, color 200ms ease;
}

.specialist-hero-section .shs-button:hover {
    color: #FFFFFF;
    background: #236573;
    text-decoration: none;
}

/* Tablet: stacked (mobile layout), 60px L/R on copy, desktop type */
@media (min-width: 768px) and (max-width: 1023px) {
    .specialist-hero-section .shs-content {
        padding-left: 60px;
        padding-right: 60px;
    }

    .specialist-hero-section .shs-title {
        font-size: 42px;
        line-height: 52px;
    }

    .specialist-hero-section .shs-intro {
        font-size: 18px;
        line-height: 26px;
    }

    .specialist-hero-section .shs-copy {
        gap: 20px;
    }

    .specialist-hero-section .shs-bullets {
        gap: 12px;
    }

    .specialist-hero-section .shs-bullet__icon {
        width: 26px;
        height: 26px;
        min-width: 26px;
        padding: 4.875px;
    }

    .specialist-hero-section .shs-bullet__icon img {
        width: 16.25px;
        height: 16.25px;
    }

    .specialist-hero-section .shs-bullet__text {
        font-size: 18px;
        line-height: 26px;
    }
}

/* Desktop overlay from 1024; 60px L/R through 1279 */
@media (min-width: 1024px) {
    .specialist-hero-section .shs-inner {
        position: relative;
        display: block;
        padding-top: 80px;
        padding-bottom: 80px;
        min-height: 0;
    }

    .specialist-hero-section .shs-media {
        position: absolute;
        /* 811 / 1440 */
        left: 56.319%;
        top: 30px;
        width: 38.472%;
        height: auto;
        aspect-ratio: 554 / 798;
        background-color: transparent;
        z-index: 1;
    }

    .specialist-hero-section .shs-media__img {
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .specialist-hero-section .shs-content {
        position: relative;
        z-index: 2;
        /* 675 / 1440 of the frame, inset 60px through 1279 */
        width: 46.875%;
        max-width: 46.875%;
        margin-left: 60px;
        padding: 0;
        gap: 40px;
        background-color: transparent;
        align-items: flex-start;
    }

    .specialist-hero-section .shs-copy {
        gap: 20px;
    }

    .specialist-hero-section .shs-header {
        text-align: left;
    }

    .specialist-hero-section .shs-title {
        font-size: 42px;
        line-height: 52px;
        text-align: left;
    }

    .specialist-hero-section .shs-credentials {
        text-align: left;
    }

    .specialist-hero-section .shs-intro {
        font-size: 18px;
        line-height: 26px;
    }

    .specialist-hero-section .shs-bullets {
        gap: 12px;
    }

    .specialist-hero-section .shs-bullet__icon {
        width: 26px;
        height: 26px;
        min-width: 26px;
        padding: 4.875px;
    }

    .specialist-hero-section .shs-bullet__icon img {
        width: 16.25px;
        height: 16.25px;
    }

    .specialist-hero-section .shs-bullet__text {
        font-size: 18px;
        line-height: 26px;
    }

    .specialist-hero-section .shs-button {
        width: auto;
        max-width: 100%;
        min-height: 64px;
    }
}

/* Large desktop: % side padding from 1440 frame */
@media (min-width: 1280px) {
    .specialist-hero-section .shs-content {
        /* 100 / 1440 */
        margin-left: 6.944%;
    }
}
