:root
{
    --hmh-teal: #00ae9d;
    --hmh-teal-hover: #009688;
    --hmh-teal-deep: #008f82;
    --hmh-green-life: #5fbb46;
    --hmh-dark: #414242;
    --hmh-grey-light: #f4f4f4;
    --hmh-muted: #777777;
    --hmh-aqua: #d6edea;
}    
/* ==========================================================
   PROGRAM HERO
========================================================== */

.program-hero {
    --hmh-teal: #00ae9d;
    --hmh-teal-hover: #009688;
    --hmh-teal-deep: #008f82;
    --hmh-green-life: #5fbb46;
    --hmh-dark: #414242;
    --hmh-grey-light: #f4f4f4;
    --hmh-muted: #777777;
    

    padding: 38px 0 32px;

    background: #ffffff;

    font-family: 'Nunito', sans-serif;
}


/* ==========================================================
   HERO GALLERY
========================================================== */

.program-hero-gallery {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    width: 100%;
    height: 430px;

    overflow: hidden;

    border-radius: 16px;

    background: var(--hmh-grey-light);
}


/* ==========================================================
   MAIN HERO IMAGE
========================================================== */

.program-hero-gallery__main {
    position: relative;

    min-width: 0;
    min-height: 0;

    overflow: hidden;

    border-right: 6px solid #ffffff;

    background: var(--hmh-grey-light);
}


.program-hero-gallery__main > img {
    position: absolute !important;

    inset: 0 !important;

    display: block !important;

    width: 100% !important;
    max-width: none !important;

    height: 100% !important;
    max-height: none !important;

    margin: 0 !important;

    object-fit: cover !important;
    object-position: center !important;

    transition: transform 0.35s ease;
}


/* ==========================================================
   RIGHT SIDE GALLERY
========================================================== */

.program-hero-gallery__side {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    grid-template-rows:
        repeat(2, minmax(0, 1fr));

    min-width: 0;
    min-height: 0;

    overflow: hidden;
}


.program-hero-gallery__side-item {
    position: relative;

    min-width: 0;
    min-height: 0;

    overflow: hidden;

    background: var(--hmh-grey-light);
}


/* Vertical divider */
.program-hero-gallery__side-item:nth-child(odd) {
    border-right: 6px solid #ffffff;
}


/* Horizontal divider */
.program-hero-gallery__side-item:nth-child(-n + 2) {
    border-bottom: 6px solid #ffffff;
}


/* ==========================================================
   SIDE IMAGES
========================================================== */

.program-hero-gallery__side-item > img {
    position: absolute !important;

    inset: 0 !important;

    display: block !important;

    width: 100% !important;
    max-width: none !important;

    height: 100% !important;
    max-height: none !important;

    margin: 0 !important;

    object-fit: cover !important;
    object-position: center !important;

    transition: transform 0.35s ease;
}


/* ==========================================================
   IMAGE HOVER
========================================================== */

.program-hero-gallery__main:hover > img,
.program-hero-gallery__side-item:hover > img {
    transform: scale(1.025);
}


/* ==========================================================
   VIEW GALLERY BUTTON
========================================================== */

.program-gallery-more-btn {
    position: absolute;

    right: 16px;
    bottom: 16px;

    z-index: 5;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    min-height: 40px;

    padding: 0 16px;

    border: 1px solid rgba(65, 66, 66, 0.12);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.96);

    color: var(--hmh-dark);

    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 800;

    line-height: 1;

    text-decoration: none;

    box-shadow:
        0 5px 16px rgba(0, 0, 0, 0.12);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.program-gallery-more-btn i {
    font-size: 13px;
}


.program-gallery-more-btn:hover {
    background: var(--hmh-teal);

    color: #ffffff;

    transform: translateY(-1px);

    box-shadow:
        0 7px 20px rgba(0, 174, 157, 0.22);
}


/* ==========================================================
   HERO INFORMATION
========================================================== */

.program-hero-content {
    padding-top: 26px;
}


/* ==========================================================
   HERO META ROW
========================================================== */

.program-hero-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    column-gap: 10px;
    row-gap: 8px;

    margin-bottom: 14px;

    font-family: 'Nunito', sans-serif;
}


/* ==========================================================
   HEALTHMATE
========================================================== */

.program-summary__host {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--hmh-teal);

    font-size: 14px;
    font-weight: 700;

    line-height: 1.4;

    text-transform: capitalize;
}


.program-summary__host i {
    color: var(--hmh-teal);

    font-size: 13px;
}


/* ==========================================================
   DOT BETWEEN HEALTHMATE + LOCATION
========================================================== */

.program-summary__dot {
    display: inline-block;

    width: 4px;
    height: 4px;

    flex: 0 0 4px;

    border-radius: 50%;

    background: var(--hmh-teal);
}


/* ==========================================================
   HERO META ITEMS
========================================================== */

.program-hero-meta__item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--hmh-teal);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.045em;
    text-transform: capitalize;
}


.program-hero-meta__item i {
    flex-shrink: 0;

    color: var(--hmh-teal);

    font-size: 13px;

    line-height: 1;
}


/* ==========================================================
   META SEPARATORS
========================================================== */

.program-hero-meta__separator {
    display: inline-block;

    width: 4px;
    height: 4px;

    flex: 0 0 4px;

    border-radius: 50%;

    background: var(--hmh-teal);
}


/* ==========================================================
   RATING
========================================================== */

.program-hero-rating {
    letter-spacing: 0;

    text-transform: none;
}


.program-hero-rating i {
    color: var(--hmh-green-life);
}


.program-hero-rating > span:first-of-type {
    color: var(--hmh-dark);

    font-weight: 800;
}


.program-hero-review-count {
    color: var(--hmh-muted);

    font-weight: 700;

    letter-spacing: 0;

    text-transform: none;
}


/* ==========================================================
   PROGRAM TITLE
========================================================== */

.program-hero-title {
    max-width: 1220px;
    margin: 0;
    color: var(--hmh-dark);
    font-family: 'Nunito', sans-serif;
    font-size: clamp(32px, 1.8vw, 56px);
    font-weight: 700;
    line-height: 1.08;
}


/* ==========================================================
   PROGRAM SUMMARY SECTION
========================================================== */

.program-summary-section {
    background: #ffffff;

    font-family: 'Nunito', sans-serif;
}


/* ==========================================================
   SUMMARY
========================================================== */

.program-summary {
    padding: 5px 0 28px;
}


/* ==========================================================
   CHIP WRAPPER
========================================================== */

.program-summary__chips {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;
}


/* ==========================================================
   CHIP
========================================================== */

.program-summary-chip {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    min-height: 40px;

    padding: 0 14px;

    border: 1px solid #e4e7e7;
    border-radius: 999px;

    background: #ffffff;

    color: var(--hmh-dark);

    font-family: 'Nunito', sans-serif;

    font-size: 13px;
    font-weight: 700;

    line-height: 1;
}


.program-summary-chip__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    flex: 0 0 22px;

    border-radius: 50%;

    background: rgba(0, 174, 157, 0.08);

    color: var(--hmh-teal);
}


.program-summary-chip__icon i {
    font-size: 11px;
}


.program-summary-chip__divider {
    margin: 0 3px;

    color: #a7aaaa;
}


/* ==========================================================
   TEAL CHIP
========================================================== */

.program-summary-chip--teal {
    border-color: rgba(0, 174, 157, 0.18);
    background: #fff;
    color: var(--hmh-dark);
}


.program-summary-chip--teal
.program-summary-chip__icon {
    background: rgba(0, 174, 157, 0.08);

    color: var(--hmh-teal);
}


/* ==========================================================
   MINT CHIP
========================================================== */

.program-summary-chip--mint {
    border-color: rgba(95, 187, 70, 0.17);
    color: var(--hmh-dark);
}


.program-summary-chip--mint
.program-summary-chip__icon {
    background: rgba(0, 174, 157, 0.08);
    color: var(--hmh-teal);
}


/* ==========================================================
   OUTLINE CHIP
========================================================== */

.program-summary-chip--outline {
    background: #ffffff;

    border-color: rgba(0, 174, 157, 0.25);
}


/* ==========================================================
   SUB NAV WRAPPER
========================================================== */

.program-subnav-wrapper {
    position: sticky;

    top: 0;

    z-index: 50;

    width: 100%;

    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #e8e8e8;

    background: rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}


/* ==========================================================
   SUB NAVIGATION
========================================================== */

.program-subnav {
    display: flex;
    align-items: center;

    gap: 4px;

    width: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    scrollbar-width: none;

    white-space: nowrap;
}


.program-subnav::-webkit-scrollbar {
    display: none;
}


/* ==========================================================
   SUB NAV LINK
========================================================== */

.program-subnav__link {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    min-height: 58px;

    padding: 0 15px;

    color: var(--hmh-muted);

    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 700;

    line-height: 1;

    text-decoration: none;

    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}


.program-subnav__link::after {
    content: '';

    position: absolute;

    left: 15px;
    right: 15px;
    bottom: -1px;

    height: 3px;

    border-radius: 3px 3px 0 0;

    background: var(--hmh-teal);

    opacity: 0;

    transform: scaleX(0.5);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}


/* ==========================================================
   SUB NAV STATES
========================================================== */

.program-subnav__link:hover {
    color: var(--hmh-teal-deep);

    background: rgba(0, 174, 157, 0.035);
}


.program-subnav__link.active {
    color: var(--hmh-teal-deep);

    font-weight: 800;
}


.program-subnav__link.active::after {
    opacity: 1;

    transform: scaleX(1);
}


/* ==========================================================
   LARGE TABLET
========================================================== */

@media (max-width: 1199.98px) {

    .program-hero-gallery {
        height: 390px;
    }


    .program-hero-title {
        font-size: clamp(35px, 4vw, 48px);
    }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 991.98px) {

    .program-hero {
        padding-top: 28px;
    }


    .program-hero-gallery {
        height: 350px;
    }


    .program-hero-content {
        padding-top: 24px;
    }


    .program-hero-meta {
        column-gap: 9px;
        row-gap: 7px;

        margin-bottom: 12px;
    }


    .program-summary__host,
    .program-hero-meta__item {
        font-size: 12px;
    }


    .program-summary__host i,
    .program-hero-meta__item i {
        font-size: 12px;
    }


    .program-hero-title {
        font-size: 38px;
    }


    .program-summary {
        padding-bottom: 24px;
    }


    .program-summary-chip {
        min-height: 38px;

        padding: 0 13px;

        font-size: 12px;
    }


    .program-subnav__link {
        min-height: 54px;

        padding: 0 13px;

        font-size: 12px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767.98px) {

    .program-hero {
        padding: 20px 0 26px;
    }


    .program-hero-gallery {
        grid-template-columns: 1fr;

        grid-template-rows:
            250px
            115px;

        height: auto;

        border-radius: 16px;
    }


    .program-hero-gallery__main {
        border-right: 0;

        border-bottom: 5px solid #ffffff;
    }


    .program-hero-gallery__side {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));

        grid-template-rows: 1fr;
    }


    .program-hero-gallery__side-item {
        border: 0 !important;

        border-right:
            5px solid #ffffff !important;
    }


    .program-hero-gallery__side-item:last-child {
        border-right: 0 !important;
    }


    .program-gallery-more-btn {
        right: 7px;
        bottom: 7px;

        min-width: 38px;
        min-height: 38px;

        padding: 0 10px;
    }


    .program-gallery-more-btn span {
        display: none;
    }


    .program-hero-content {
        padding-top: 20px;
    }


    .program-hero-meta {
        align-items: flex-start;

        column-gap: 8px;
        row-gap: 7px;

        margin-bottom: 11px;
    }


    .program-summary__host,
    .program-hero-meta__item {
        gap: 6px;

        font-size: 11px;
    }


    .program-summary__host i,
    .program-hero-meta__item i {
        font-size: 11px;
    }


    .program-summary__dot,
    .program-hero-meta__separator {
        width: 3px;
        height: 3px;

        flex-basis: 3px;

        margin-top: 6px;
    }


    .program-hero-title {
        font-size: 31px;

        line-height: 1.12;

        letter-spacing: -0.025em;
    }


    .program-summary {
        padding: 2px 0 20px;
    }


    .program-summary__chips {
        gap: 7px;
    }


    .program-summary-chip {
        min-height: 36px;

        padding: 0 11px;

        gap: 6px;

        font-size: 11px;
    }


    .program-summary-chip__icon {
        width: 20px;
        height: 20px;

        flex-basis: 20px;
    }


    .program-summary-chip__icon i {
        font-size: 10px;
    }


    .program-subnav__link {
        min-height: 50px;

        padding: 0 12px;

        font-size: 11px;
    }


    .program-subnav__link::after {
        left: 12px;
        right: 12px;

        height: 2px;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 575.98px) {

    .program-hero-gallery {
        grid-template-rows:
            225px
            95px;
    }


    .program-hero-meta {
        row-gap: 6px;
    }


    .program-summary__host,
    .program-hero-meta__item {
        font-size: 10px;
    }


    .program-hero-title {
        font-size: 28px;
    }

}


/* ==========================================================
   MAIN PROGRAM CONTENT
========================================================== */

.program-content-layout {
    padding-top: 44px;
    padding-bottom: 64px;

    font-family: 'Nunito', sans-serif;
}


/* ==========================================================
   PROGRAM SECTION
========================================================== */

.program-section {
    padding: 0 0 54px;

    scroll-margin-top: 90px;
}


.program-section + .program-section {
    padding-top: 8px;
}


/* ==========================================================
   SECTION EYEBROW
========================================================== */

.program-section__eyebrow {


    color: var(--hmh-dark);

    font-size: 12px;
    font-weight: 800;

    line-height: 1.4;

    letter-spacing: 0.085em;

    text-transform: uppercase;
}


/* ==========================================================
   SECTION TITLE
========================================================== */

.program-section__title {
    max-width: 760px;
    margin: 0;
    color: var(--hmh-teal);
    font-family: 'Nunito', sans-serif;
    font-size: clamp(26px, 1.8vw, 38px);
    font-weight: 700;
    line-height: 1.16;
}


/* ==========================================================
   SECTION INTRO / BODY
========================================================== */

.program-section__intro,
.program-section__body {
    max-width: 780px;

    color: #5d5f5f;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.3;
}


.program-section__body {
    margin-top: 18px;
}


.program-section__intro {
    margin: 5px 0 0;
}


/* ==========================================================
   OUTCOME CARD
========================================================== */

.program-outcome-card {
    display: flex;
    align-items: flex-start;

    gap: 16px;

    margin-top: 26px;

    padding: 21px 22px;

    border: 1px solid rgba(0, 174, 157, 0.15);
    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(0, 174, 157, 0.055),
            rgba(95, 187, 70, 0.045)
        );
}


.program-outcome-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    border-radius: 12px;

    background: #ffffff;

    color: var(--hmh-green-life);

    font-size: 18px;

    box-shadow:
        0 4px 14px rgba(65, 66, 66, 0.07);
}


.program-outcome-card__content {
    min-width: 0;
}


.program-outcome-card__label {
    margin-bottom: 5px;

    color: var(--hmh-dark);

    font-size: 15px;
    font-weight: 800;

    line-height: 1.35;
}


.program-outcome-card__content p {
    margin: 0;

    color: #666868;

    font-size: 14px;

    line-height: 1.65;
}


/* ==========================================================
   AUDIENCE
========================================================== */

.program-audience {
    margin-top: 30px;
}


.program-audience__chips {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 12px;
}


.program-audience-chip {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    min-height: 36px;

    padding: 0 12px;

    border: 1px solid rgba(0, 174, 157, 0.16);
    border-radius: 999px;

    background: rgba(0, 174, 157, 0.07);

    color: var(--hmh-teal-deep);

    font-size: 12px;
    font-weight: 700;

    line-height: 1;
}


.program-audience-chip i {
    color: var(--hmh-teal);

    font-size: 11px;
}


.program-audience-chip--outline {
    border-color: #e2e5e5;

    background: #ffffff;

    color: var(--hmh-dark);
}


/* ==========================================================
   PROGRAM STRUCTURE CARD
========================================================== */

.program-structure-card {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    margin-top: 25px;

    overflow: hidden;

    border: 1px solid #e8eaea;
    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 8px 28px rgba(65, 66, 66, 0.055);
}


/* ==========================================================
   STRUCTURE ITEM
========================================================== */

.program-structure-item {
    position: relative;

    min-width: 0;

    padding: 24px 22px;
}


.program-structure-item:not(:last-child) {
    border-right: 1px solid #eceeee;
}


.program-structure-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    margin-bottom: 16px;

    border-radius: 10px;

    background: rgba(0, 174, 157, 0.08);

    color: var(--hmh-teal);

    font-size: 15px;
}


.program-structure-item__label {
    margin-bottom: 7px;

    color: var(--hmh-muted);

    font-size: 10px;
    font-weight: 800;

    line-height: 1.3;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


.program-structure-item__value {
    margin-bottom: 8px;

    color: var(--hmh-dark);

    font-size: 17px;
    font-weight: 800;

    line-height: 1.35;
}


.program-structure-dot {
    color: var(--hmh-teal);
}


.program-structure-item__description {
    color: #777979;

    font-size: 13px;

    line-height: 1.55;
}


/* ==========================================================
   BOOKING INFO
========================================================== */

.program-booking-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 21px 22px;
    border-top: 1px solid #eceeee;
    background: #fafafa;
    margin-top: 16px;
    border-radius: 12px;
}


.program-booking-info__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    border-radius: 50%;

    background: rgba(0, 174, 157, 0.1);

    color: var(--hmh-teal);

    font-size: 14px;
}


.program-booking-info__content {
    min-width: 0;
}


.program-booking-info__title {
    margin-bottom: 5px;

    color: var(--hmh-dark);

    font-size: 14px;
    font-weight: 800;
}


.program-booking-info__text {
    color: #686a6a;

    font-size: 13px;

    line-height: 1.65;
}


/* ==========================================================
   NON CLINICAL NOTICE
========================================================== */

.program-notice {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    margin-top: 14px;

    padding: 13px 15px;

    border-radius: 10px;

    background: var(--hmh-grey-light);

    color: var(--hmh-muted);
}


.program-notice__icon {
    flex: 0 0 auto;

    padding-top: 1px;

    color: var(--hmh-teal);
}


.program-notice__icon i {
    font-size: 13px;
}


.program-notice__text {
    font-size: 13px;
    line-height: 1.25;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 991.98px) {

    .program-content-layout {
        padding-top: 36px;
        padding-bottom: 52px;
    }


    .program-section {
        padding-bottom: 46px;
    }


    .program-section__title {
        font-size: 31px;
    }


    .program-section__intro,
    .program-section__body {
        font-size: 15px;
    }


    .program-structure-item {
        padding: 21px 18px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767.98px) {

    .program-content-layout {
        padding-top: 30px;
        padding-bottom: 42px;
    }


    .program-section {
        padding-bottom: 40px;

        scroll-margin-top: 72px;
    }


    .program-section__eyebrow {
        margin-bottom: 7px;

        font-size: 10px;
    }


    .program-section__title {
        font-size: 27px;

        line-height: 1.18;
    }


    .program-section__body,
    .program-section__intro {
        font-size: 14px;

        line-height: 1.7;
    }


    .program-section__body {
        margin-top: 15px;
    }


    .program-outcome-card {
        gap: 13px;

        margin-top: 22px;

        padding: 17px;
    }


    .program-outcome-card__icon {
        width: 38px;
        height: 38px;

        flex-basis: 38px;

        font-size: 15px;
    }


    .program-outcome-card__label {
        font-size: 14px;
    }


    .program-outcome-card__content p {
        font-size: 13px;
    }


    .program-audience {
        margin-top: 25px;
    }


    .program-audience-chip {
        min-height: 34px;

        padding: 0 10px;

        font-size: 11px;
    }


    .program-structure-card {
        grid-template-columns: 1fr;
    }


    .program-structure-item {
        padding: 20px;
    }


    .program-structure-item:not(:last-child) {
        border-right: 0;

        border-bottom: 1px solid #eceeee;
    }


    .program-structure-item__icon {
        width: 36px;
        height: 36px;

        margin-bottom: 13px;
    }


    .program-structure-item__value {
        font-size: 16px;
    }


    .program-booking-info {
        padding: 18px;
    }


    .program-booking-info__icon {
        width: 36px;
        height: 36px;

        flex-basis: 36px;
    }

}

/* ==========================================================
   JOURNEY SECTION
========================================================== */

.journey-section {
    position: relative;
}


/* ==========================================================
   JOURNEY HEADING
========================================================== */

.journey-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 24px;

    margin-bottom: 28px;
}


.journey-heading > div:first-child {
    min-width: 0;
}


.journey-heading__badge {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    flex: 0 0 auto;

    min-height: 40px;

    padding: 0 14px;

    border: 1px solid rgba(0, 174, 157, 0.16);
    border-radius: 999px;

    background: rgba(0, 174, 157, 0.07);

    color: var(--hmh-teal-deep);

    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 800;
}


.journey-heading__badge i {
    color: var(--hmh-teal);

    font-size: 12px;
}


/* ==========================================================
   JOURNEY ROADMAP
========================================================== */

.journey-roadmap {
    position: relative;

    display: flex;
    flex-direction: column;

    gap: 0;
}


/* ==========================================================
   JOURNEY STEP
========================================================== */

.journey-step {
    display: grid;

    grid-template-columns:
        52px
        minmax(0, 1fr);

    gap: 18px;
}


/* ==========================================================
   STEP RAIL
========================================================== */

.journey-step__rail {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    min-height: 100%;
}


.journey-step__number {
    position: relative;

    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    border: 2px solid rgba(0, 174, 157, 0.22);
    border-radius: 50%;

    background: #ffffff;

    color: var(--hmh-teal-deep);

    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 900;

    box-shadow:
        0 5px 14px rgba(0, 174, 157, 0.08);
}


.journey-step__line {
    width: 2px;

    flex: 1;

    min-height: 28px;

    margin: 7px 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 174, 157, 0.28),
            rgba(95, 187, 70, 0.16)
        );
}


/* ==========================================================
   STEP CARD
========================================================== */

.journey-step__card {
    margin-bottom: 20px;

    padding: 21px 22px;

    border: 1px solid #e8eaea;
    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 6px 22px rgba(65, 66, 66, 0.045);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}


.journey-step__card:hover {
    border-color: rgba(0, 174, 157, 0.22);

    transform: translateY(-1px);

    box-shadow:
        0 10px 26px rgba(65, 66, 66, 0.065);
}


/* ==========================================================
   STEP HEADER
========================================================== */

.journey-step__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 18px;
}


.journey-step__meta {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    margin-bottom: 7px;

    color: var(--hmh-teal);

    font-size: 11px;
    font-weight: 800;

    line-height: 1.3;

    letter-spacing: 0.05em;

    text-transform: uppercase;
}


.journey-step__meta i {
    color: var(--hmh-teal);

    font-size: 11px;
}


.journey-step__title {
    margin: 0;

    color: var(--hmh-dark);

    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 800;

    line-height: 1.35;
}


.journey-step__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            rgba(0, 174, 157, 0.1),
            rgba(95, 187, 70, 0.08)
        );

    color: var(--hmh-teal);

    font-size: 14px;
}

.journey-step__duration
{
    font-size: 13px;
    
}


/* ==========================================================
   STEP DESCRIPTION
========================================================== */

.journey-step__description {
    max-width: 690px;

    margin:
        11px 0
        0;

    color: #696b6b;

    font-size: 14px;

    line-height: 1.7;
}


/* ==========================================================
   SIGNATURE EXPERIENCES
========================================================== */

.signature-section {
    padding-top: 4px;
}


.signature-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 24px;

    margin-bottom: 26px;
}


.signature-heading__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(0, 174, 157, 0.1),
            rgba(95, 187, 70, 0.1)
        );

    color: var(--hmh-teal);

    font-size: 18px;
}


/* ==========================================================
   SIGNATURE GRID
========================================================== */

.signature-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 14px;
}


/* ==========================================================
   SIGNATURE CARD
========================================================== */

.signature-card {
    position: relative;

    min-width: 0;

    padding: 21px;

    overflow: hidden;

    border: 1px solid #e8eaea;
    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #ffffff 60%,
            rgba(0, 174, 157, 0.035) 100%
        );

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}


.signature-card:hover {
    border-color: rgba(0, 174, 157, 0.22);

    transform: translateY(-2px);

    box-shadow:
        0 10px 26px rgba(65, 66, 66, 0.065);
}


.signature-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;

    margin-bottom: 18px;
}


.signature-card__number {
    color: rgba(0, 174, 157, 0.34);

    font-size: 26px;
    font-weight: 900;

    line-height: 1;
}


.signature-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: rgba(95, 187, 70, 0.1);

    color: var(--hmh-green-life);

    font-size: 12px;
}


.signature-card__duration {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    margin-bottom: 8px;

    color: var(--hmh-teal-deep);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.04em;

    text-transform: uppercase;
}


.signature-card__duration i {
    color: var(--hmh-teal);
}


.signature-card__title {
    margin:
        0 0
        8px;

    color: var(--hmh-dark);

    font-size: 17px;
    font-weight: 800;

    line-height: 1.35;
}


.signature-card__description {
    margin: 0;

    color: #6e7070;

    font-size: 13px;

    line-height: 1.65;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 991.98px) {

    .journey-heading,
    .signature-heading {
        align-items: flex-start;

        margin-bottom: 24px;
    }


    .journey-step {
        grid-template-columns:
            48px
            minmax(0, 1fr);

        gap: 15px;
    }


    .journey-step__number {
        width: 40px;
        height: 40px;

        flex-basis: 40px;
    }


    .signature-grid {
        gap: 12px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767.98px) {

    .journey-heading,
    .signature-heading {
        display: block;
    }


    .journey-heading__badge {
        margin-top: 16px;
    }


    .signature-heading__icon {
        display: none;
    }


    .journey-step {
        grid-template-columns:
            40px
            minmax(0, 1fr);

        gap: 12px;
    }


    .journey-step__number {
        width: 34px;
        height: 34px;

        flex-basis: 34px;

        font-size: 10px;
    }


    .journey-step__line {
        margin:
            6px 0;

        min-height: 22px;
    }


    .journey-step__card {
        margin-bottom: 15px;

        padding: 17px;
    }


    .journey-step__header {
        gap: 12px;
    }


    .journey-step__icon {
        width: 34px;
        height: 34px;

        flex-basis: 34px;

        font-size: 12px;
    }


    .journey-step__meta {
        margin-bottom: 6px;

        font-size: 10px;
    }


    .journey-step__title {
        font-size: 16px;
    }


    .journey-step__description {
        margin-top: 9px;

        font-size: 13px;

        line-height: 1.65;
    }


    .signature-grid {
        grid-template-columns: 1fr;
    }


    .signature-card {
        padding: 18px;
    }


    .signature-card__top {
        margin-bottom: 14px;
    }

}

/* ==========================================================
   PROGRAM TRANSFORMATION CARD
========================================================== */

.program-transform-card {
    position: relative;

    display: grid;

    grid-template-columns:
        72px
        minmax(0, 1fr);

    margin-top: 26px;

    overflow: hidden;

    border: 1px solid rgba(0, 174, 157, 0.14);
    border-radius: 16px;

    /*background:
        linear-gradient(
            135deg,
            rgba(0, 174, 157, 0.055) 0%,
            rgba(95, 187, 70, 0.035) 52%,
            #ffffff 100%
        );*/

    box-shadow:
        0 8px 26px rgba(65, 66, 66, 0.045);
}


/* ==========================================================
   LEFT ACCENT
========================================================== */

.program-transform-card__accent {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 100%;

    background: var(--hmh-teal);
}


.program-transform-card__accent::after {
    content: '';

    position: absolute;

    top: 18px;
    right: 0;
    bottom: 18px;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(0, 174, 157, 0.24),
            transparent
        );
}


/* ==========================================================
   ICON
========================================================== */

.program-transform-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #ffffff;

    color: var(--hmh-teal);

    font-size: 16px;

    box-shadow:
        0 6px 18px rgba(0, 174, 157, 0.12);
}


/* ==========================================================
   CONTENT
========================================================== */

.program-transform-card__content {
    padding: 20px 22px;
}


/* ==========================================================
   EYEBROW
========================================================== */

.program-transform-card__eyebrow {
    margin-bottom: 4px;

    color: var(--hmh-teal-deep);

    font-size: 10px;
    font-weight: 800;

    line-height: 1.3;

    letter-spacing: 0.09em;

    text-transform: uppercase;
}


/* ==========================================================
   TITLE
========================================================== */

.program-transform-card__title {
    margin-bottom: 7px;

    color: var(--hmh-dark);

    font-size: 17px;
    font-weight: 800;

    line-height: 1.35;
}


/* ==========================================================
   TEXT
========================================================== */

.program-transform-card__text {
    max-width: 680px;

    margin: 0;

    color: #666868;

    font-size: 14px;
    font-weight: 400;

    line-height: 1.7;
}


/* ==========================================================
   HOVER
========================================================== */

.program-transform-card {
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}


.program-transform-card:hover {
    border-color: rgba(0, 174, 157, 0.24);

    transform: translateY(-1px);

    box-shadow:
        0 12px 30px rgba(65, 66, 66, 0.065);
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767.98px) {

    .program-transform-card {
        grid-template-columns:
            58px
            minmax(0, 1fr);

        margin-top: 22px;

        border-radius: 14px;
    }


    .program-transform-card__icon {
        width: 36px;
        height: 36px;

        font-size: 14px;
    }


    .program-transform-card__content {
        padding: 17px 16px;
    }


    .program-transform-card__eyebrow {
        font-size: 9px;
    }


    .program-transform-card__title {
        font-size: 15px;
    }


    .program-transform-card__text {
        font-size: 13px;

        line-height: 1.65;
    }

}

/* ==========================================================
   PROGRAM FIT PANEL
========================================================== */

.program-fit-panel {
    position: relative;

    margin-top: 32px;

    padding: 24px;

    overflow: hidden;

    border: 1px solid rgba(0, 174, 157, 0.13);
    border-radius: 18px;

    background:#ffffff;

    box-shadow:
        0 10px 30px rgba(65, 66, 66, 0.045);
}




/* ==========================================================
   HEADER
========================================================== */

.program-fit-panel__header {
    position: relative;

    z-index: 1;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 22px;
}


.program-fit-panel__title {
    max-width: 540px;

    margin: 2px 0 0;

    color: var(--hmh-teal);

    font-family: 'Nunito', sans-serif;

    font-size: 21px;
    font-weight: 700;

    line-height: 1.35;

    letter-spacing: -0.015em;
}


.program-fit-panel__mark {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    border-radius: 14px;

    background: rgb(237 247 246);

    color: var(--hmh-teal);

    font-size: 17px;
}


/* ==========================================================
   GRID
========================================================== */

.program-fit-panel__grid {
    position: relative;

    z-index: 1;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 14px;
}


/* ==========================================================
   BLOCK
========================================================== */

.program-fit-block {
    min-width: 0;

    padding: 19px;

    border: 1px solid #e9ebeb;
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.82);

    transition:
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.program-fit-block:hover {
    border-color: rgba(0, 174, 157, 0.22);

    transform: translateY(-2px);

    box-shadow:
        0 10px 24px rgba(65, 66, 66, 0.055);
}


.program-fit-block--setting {
    background:
        #fff;
}


/* ==========================================================
   BLOCK HEAD
========================================================== */

.program-fit-block__head {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    margin-bottom: 16px;
}


.program-fit-block__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    border-radius: 11px;

    background: rgba(0, 174, 157, 0.09);

    color: var(--hmh-teal);

    font-size: 14px;
}


.program-fit-block--setting
.program-fit-block__icon {
    background: rgb(237 247 246);
    color: var(--hmh-teal);
}


.program-fit-block__label {


    color: var(--hmh-dark);

    font-size: 14px;
    font-weight: 800;

    line-height: 1.35;
}


.program-fit-block__sub {
    color: var(--hmh-muted);

    font-size: 12px;

    line-height: 1.45;
}


/* ==========================================================
   TAGS
========================================================== */

.program-fit-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}


.program-fit-tag {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    min-height: 34px;

    padding: 0 11px;

    border: 1px solid rgba(0, 174, 157, 0.14);
    border-radius: 999px;

    background: rgba(0, 174, 157, 0.055);

    color: var(--hmh-teal-deep);

    font-size: 11px;
    font-weight: 700;

    line-height: 1;
}


.program-fit-tag__dot {
    width: 6px;
    height: 6px;

    flex: 0 0 6px;

    border-radius: 50%;

    background: var(--hmh-teal);
}


.program-fit-tag--setting {
    border-color: rgba(95, 187, 70, 0.16);
    background: rgb(237 247 246);
    color: var(--hmh-dark);
}


.program-fit-tag--setting i {
    color: var(--hmh-teal);
    font-size: 10px;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 991.98px) {

    .program-fit-panel {
        padding: 21px;
    }


    .program-fit-panel__title {
        font-size: 18px;
    }


    .program-fit-block {
        padding: 17px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767.98px) {

    .program-fit-panel {
        margin-top: 26px;

        padding: 18px;

        border-radius: 15px;
    }


    .program-fit-panel__header {
        margin-bottom: 18px;
    }


    .program-fit-panel__mark {
        display: none;
    }


    .program-fit-panel__title {
        font-size: 17px;
    }


    .program-fit-panel__grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .program-fit-block {
        padding: 16px;
    }


    .program-fit-block__head {
        margin-bottom: 13px;
    }


    .program-fit-block__icon {
        width: 34px;
        height: 34px;

        flex-basis: 34px;

        font-size: 12px;
    }


    .program-fit-block__label {
        font-size: 13px;
    }


    .program-fit-block__sub {
        font-size: 10px;
    }


    .program-fit-tag {
        min-height: 32px;

        padding: 0 10px;

        font-size: 10px;
    }

}



/* ==========================================================
   WHAT'S INCLUDED
========================================================== */

.inclusions-section {
    position: relative;
}


/* ==========================================================
   SECTION HEADING
========================================================== */

.inclusions-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 24px;

    margin-bottom: 26px;
}


.inclusions-heading > div:first-child {
    min-width: 0;
}


/* ==========================================================
   HEADING ICON
========================================================== */

.inclusions-heading__mark {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    border-radius: 14px;

    background: var(--hmh-aqua);

    color: var(--hmh-teal);

    font-size: 17px;
}


/* ==========================================================
   GRID
========================================================== */

.inclusions-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;
}


/* ==========================================================
   INCLUSION CARD
========================================================== */

.inclusion-card {
    position: relative;

    display: flex;
    align-items: center;

    gap: 14px;

    min-width: 0;

    padding: 17px 18px;

    overflow: hidden;

    border: 1px solid var(--hmh-aqua);
    border-radius: 14px;

    background: #fff;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.inclusion-card:hover {
    transform: translateY(-2px);

    border-color: var(--hmh-teal);

    box-shadow:
        0 10px 24px rgba(66, 65, 65, 0.08);
}


/* ==========================================================
   ICON
========================================================== */

.inclusion-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    border-radius: 12px;

    background: var(--hmh-aqua);

    color: var(--hmh-teal);

    font-size: 16px;
}


/* ==========================================================
   CONTENT
========================================================== */

.inclusion-card__content {
    min-width: 0;
}


.inclusion-card__label {
    color: #424141;

    font-family: 'Nunito', sans-serif;

    font-size: 14px;
    font-weight: 800;

    line-height: 1.4;
}


/* ==========================================================
   INCLUDED STATUS
========================================================== */

.inclusion-card__status {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    margin-top: 5px;

    color: var(--hmh-teal);

    font-family: 'Nunito', sans-serif;

    font-size: 10px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: 0.06em;

    text-transform: uppercase;
}


.inclusion-card__status i {
    font-size: 9px;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 991.98px) {

    .inclusions-heading {
        margin-bottom: 22px;
    }


    .inclusion-card {
        padding: 15px 16px;
    }


    .inclusion-card__icon {
        width: 40px;
        height: 40px;

        flex-basis: 40px;

        font-size: 14px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767.98px) {

    .inclusions-heading {
        display: block;

        margin-bottom: 20px;
    }


    .inclusions-heading__mark {
        display: none;
    }


    .inclusions-grid {
        grid-template-columns: 1fr;

        gap: 9px;
    }


    .inclusion-card {
        gap: 12px;

        padding: 14px 15px;

        border-radius: 12px;
    }


    .inclusion-card__icon {
        width: 38px;
        height: 38px;

        flex-basis: 38px;

        border-radius: 10px;

        font-size: 13px;
    }


    .inclusion-card__label {
        font-size: 13px;
    }


    .inclusion-card__status {
        font-size: 9px;
    }

}


/* ==========================================================
   OUTCOMES
========================================================== */

.outcomes-section {
    position: relative;
}


/* ==========================================================
   WELLBEING GROUP
========================================================== */

.wellbeing-group {
    margin-top: 24px;

    overflow: hidden;

    border: 1px solid var(--hmh-aqua);
    border-radius: 14px;

    background: #fff;
}


.wellbeing-group--preventive {
    margin-top: 14px;
}


/* ==========================================================
   GROUP HEADER
========================================================== */

.wellbeing-group__header {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 16px 18px;

    border-bottom: 1px solid var(--hmh-aqua);
}


.wellbeing-group__header-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    border-radius: 10px;

    background: var(--hmh-aqua);

    color: var(--hmh-teal);

    font-size: 13px;
}


.wellbeing-group__title {
    margin: 0;

    color: #424141;

    font-family: 'Nunito', sans-serif;

    font-size: 16px;
    font-weight: 800;

    line-height: 1.3;
}


.wellbeing-group__subtitle {
    margin: 2px 0 0;

    color: #424141;

    font-family: 'Nunito', sans-serif;

    font-size: 13px;
    font-weight: 500;

    line-height: 1;

    opacity: 0.68;
}


/* ==========================================================
   3 COLUMN WELLBEING GRID
========================================================== */

.wellbeing-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    padding: 8px 10px;
}


/* ==========================================================
   WELLBEING ITEM
========================================================== */

.wellbeing-item {
    display: flex;
    align-items: center;

    gap: 9px;

    min-width: 0;

    min-height: 50px;

    padding: 8px 10px;

    color: #424141;
}


/* vertical column separator */

.wellbeing-item:not(:nth-child(3n)) {
    border-right: 1px solid var(--hmh-aqua);
}


/* horizontal row separator */

.wellbeing-item:nth-child(n + 4) {
    border-top: 1px solid var(--hmh-aqua);
}


/* ==========================================================
   ITEM ICON
========================================================== */

.wellbeing-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    border-radius: 8px;

    background: var(--hmh-aqua);

    color: var(--hmh-teal);

    font-size: 10px;
}


/* ==========================================================
   ITEM LABEL
========================================================== */

.wellbeing-item__label {
    min-width: 0;

    color: #424141;

    font-family: 'Nunito', sans-serif;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.35;
}


/* ==========================================================
   DISCLAIMER
========================================================== */

.wellbeing-disclaimer {
    display: flex;
    align-items: flex-start;

    gap: 7px;

    margin: 0 18px;

    padding: 12px 0 14px;

    border-top: 1px solid var(--hmh-aqua);

    color: #424141;

    font-family: 'Nunito', sans-serif;

    font-size: 13px;

    line-height: 1.5;

    opacity: 0.66;
}


.wellbeing-disclaimer i {
    flex: 0 0 auto;

    margin-top: 2px;

    color: var(--hmh-teal);
}


/* ==========================================================
   HOVER
========================================================== */

@media (hover: hover) {

    .wellbeing-item {
        transition:
            background-color 0.18s ease,
            color 0.18s ease;
    }


    .wellbeing-item:hover {
        background: var(--hmh-aqua);
    }


    .wellbeing-item:hover
    .wellbeing-item__icon {
        background: #fff;
    }

}


/* ==========================================================
   NOURISHMENT SECTION
========================================================== */

.nourishment-section {
    position: relative;
}


/* ==========================================================
   NOURISHMENT PANEL
========================================================== */

.nourishment-panel {
    margin-top: 22px;

    overflow: hidden;

    border: 1px solid var(--hmh-aqua);
    border-radius: 14px;

    background: #fff;
}


/* ==========================================================
   NOURISHMENT HEADER
========================================================== */

.nourishment-panel__header {
    display: flex;
    align-items: center;

    gap: 11px;

    padding: 16px 18px;

    border-bottom: 1px solid var(--hmh-aqua);
}


.nourishment-panel__header-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    border-radius: 10px;

    background: var(--hmh-aqua);

    color: var(--hmh-teal);

    font-size: 13px;
}


.nourishment-panel__title {
    color: #424141;

    font-size: 16px;
    font-weight: 800;

    line-height: 1.3;
}


.nourishment-panel__subtitle {
    margin-top: 2px;

    color: #424141;

    font-size: 12px;

    line-height: 1.4;

    opacity: 0.68;
}


/* ==========================================================
   NOURISHMENT GRID
========================================================== */

.nourishment-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    padding: 8px 10px;
}


/* ==========================================================
   NOURISHMENT ITEM
========================================================== */

.nourishment-item {
    display: flex;
    align-items: center;

    gap: 8px;

    min-width: 0;

    min-height: 44px;

    padding: 7px 9px;

    color: #424141;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.35;
}


.nourishment-item:not(:nth-child(3n)) {
    border-right: 1px solid var(--hmh-aqua);
}


.nourishment-item:nth-child(n + 4) {
    border-top: 1px solid var(--hmh-aqua);
}


/* ==========================================================
   NOURISHMENT CHECK
========================================================== */

.nourishment-item__check {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    flex: 0 0 24px;

    border-radius: 50%;

    background: var(--hmh-aqua);

    color: var(--hmh-teal);

    font-size: 8px;
}


/* ==========================================================
   MEAL PHILOSOPHY
========================================================== */

.meal-philosophy {
    display: flex;
    align-items: flex-start;

    gap: 11px;

    margin: 0 18px;

    padding: 14px 0 16px;

    border-top: 1px solid var(--hmh-aqua);
}


.meal-philosophy__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    border-radius: 9px;

    background: var(--hmh-aqua);

    color: var(--hmh-teal);

    font-size: 13px;
}


.meal-philosophy__label {
    margin-bottom: 4px;

    color: var(--hmh-teal);

    font-size: 13px;
    font-weight: 800;

    line-height: 1.3;

    letter-spacing: 0.06em;

    text-transform: uppercase;
}


.meal-philosophy p {
    margin: 0;

    color: #424141;

    font-size: 12px;

    line-height: 1.6;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 991.98px) {

    .wellbeing-grid,
    .nourishment-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .wellbeing-item,
    .nourishment-item {
        border-right: 0;
        border-top: 0;
    }


    .wellbeing-item:not(:nth-child(2n)),
    .nourishment-item:not(:nth-child(2n)) {
        border-right: 1px solid var(--hmh-aqua);
    }


    .wellbeing-item:nth-child(n + 3),
    .nourishment-item:nth-child(n + 3) {
        border-top: 1px solid var(--hmh-aqua);
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767.98px) {

    .wellbeing-group,
    .nourishment-panel {
        margin-top: 20px;

        border-radius: 12px;
    }


    .wellbeing-group--preventive {
        margin-top: 11px;
    }


    .wellbeing-group__header,
    .nourishment-panel__header {
        padding: 14px 15px;
    }


    .wellbeing-group__header-icon,
    .nourishment-panel__header-icon {
        width: 34px;
        height: 34px;

        flex-basis: 34px;

        font-size: 12px;
    }


    .wellbeing-group__title,
    .nourishment-panel__title {
        font-size: 13px;
    }


    .wellbeing-group__subtitle,
    .nourishment-panel__subtitle {
        font-size: 9px;
    }


    .wellbeing-grid,
    .nourishment-grid {
        grid-template-columns: 1fr;

        padding: 6px 10px;
    }


    .wellbeing-item,
    .nourishment-item {
        min-height: 43px;

        padding: 7px 8px;

        border-right: 0 !important;
        border-top: 1px solid var(--hmh-aqua) !important;
    }


    .wellbeing-item:first-child,
    .nourishment-item:first-child {
        border-top: 0 !important;
    }


    .wellbeing-item__icon {
        width: 28px;
        height: 28px;

        flex-basis: 28px;

        font-size: 9px;
    }


    .wellbeing-item__label,
    .nourishment-item {
        font-size: 10px;
    }


    .wellbeing-disclaimer {
        margin: 0 14px;

        font-size: 8px;
    }


    .meal-philosophy {
        margin: 0 14px;
    }

}

/* ==========================================================
   EXPANDABLE WELLBEING GRID
========================================================== */

.wellbeing-expandable {
    position: relative;

    overflow: hidden;
}


/*
|--------------------------------------------------------------------------
| COLLAPSED STATE
|--------------------------------------------------------------------------
|
| Desktop row:
| 50px item height x 3 rows
| + grid padding
|
*/

.wellbeing-expandable:not(.is-expanded)
.wellbeing-grid {
    max-height: 166px;

    overflow: hidden;
}


/* ==========================================================
   BOTTOM FADE
========================================================== */

.wellbeing-expandable__fade {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 44px;

    z-index: 3;

    height: 70px;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0),
            #fff 82%
        );

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


/* ==========================================================
   EXPAND BUTTON
========================================================== */

.wellbeing-expandable__toggle {
    position: relative;

    z-index: 4;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    width: 100%;
    height: 44px;

    padding: 0;

    border: 0;
    border-top: 1px solid var(--hmh-aqua);

    background: #fff;

    color: var(--hmh-teal);

    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 800;

    cursor: pointer;

    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}


.wellbeing-expandable__toggle:hover {
    background: var(--hmh-aqua);
}


.wellbeing-expandable__toggle i {
    font-size: 10px;

    transition: transform 0.25s ease;
}


/* ==========================================================
   EXPANDED STATE
========================================================== */

.wellbeing-expandable.is-expanded
.wellbeing-grid {
    max-height: 2000px;
}


.wellbeing-expandable.is-expanded
.wellbeing-expandable__fade {
    opacity: 0;
    visibility: hidden;
}


.wellbeing-expandable.is-expanded
.wellbeing-expandable__toggle i {
    transform: rotate(180deg);
}


/* ==========================================================
   SMOOTH EXPANSION
========================================================== */

.wellbeing-expandable
.wellbeing-grid {
    transition: max-height 0.4s ease;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 991.98px) {

    /*
    | 2 columns.
    | Still show 3 rows = 6 items.
    */

    .wellbeing-expandable:not(.is-expanded)
    .wellbeing-grid {
        max-height: 166px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767.98px) {

    /*
    | 1 column.
    | 3 rows = 3 items.
    */

    .wellbeing-expandable:not(.is-expanded)
    .wellbeing-grid {
        max-height: 142px;
    }


    .wellbeing-expandable__fade {
        bottom: 42px;

        height: 58px;
    }


    .wellbeing-expandable__toggle {
        height: 42px;

        font-size: 10px;
    }

}

/* ==========================================================
   SIGNATURE EXPERIENCES — EDITORIAL
========================================================== */

.signature-editorial {
    position: relative;
}


/* ==========================================================
   SECTION HEADING
========================================================== */

.signature-editorial__heading {
    margin-bottom: 28px;
}


.signature-editorial__heading-row {
    display: flex;
    align-items: center;

    gap: 20px;
}


.signature-editorial__heading-row
.program-section__title {
    flex: 0 0 auto;
}


.signature-editorial__line {
    display: block;

    width: 100%;
    height: 1px;

    background: var(--hmh-aqua);
}


/* ==========================================================
   EXPERIENCE LIST
========================================================== */

.signature-editorial__list {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--hmh-aqua);
    border-radius: 12px;
    padding: 15px;
}


/* ==========================================================
   EXPERIENCE
========================================================== */

.signature-experience {
    position: relative;

    display: grid;

    grid-template-columns:
        60px
        minmax(0, 1fr)
        20px;

    gap: 8px;

    align-items: start;

    padding: 10px 7px;

    overflow: hidden;
}


/* ==========================================================
   LARGE NUMBER
========================================================== */

.signature-experience__index {
    position: relative;

    padding-top: 2px;
}


.signature-experience__index span {
    color: var(--hmh-teal);

    font-family: 'Nunito', sans-serif;

    font-size: 37px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: -0.06em;
}


/* small vertical accent */

.signature-experience__index::after {
    content: '';

    display: block;

    width: 30px;
    height: 3px;

    margin-top: 15px;

    border-radius: 999px;

    background: var(--hmh-teal);
}


/* ==========================================================
   CONTENT
========================================================== */

.signature-experience__content {
    max-width: 690px;
}


/* ==========================================================
   KICKER
========================================================== */

.signature-experience__kicker {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-bottom: 6px;

    color: var(--hmh-teal);

    font-family: 'Nunito', sans-serif;

    font-size: 10px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: 0.09em;

    text-transform: uppercase;
}


.signature-experience__kicker i {
    font-size: 6px;
}


/* ==========================================================
   TITLE
========================================================== */

.signature-experience__title {
    margin: 0;

    color: #424141;

    font-family: 'Nunito', sans-serif;

    font-size: 20px;
    font-weight: 700;

    line-height: 1.2;

    letter-spacing: -0.025em;
}


/* ==========================================================
   DESCRIPTION
========================================================== */

.signature-experience__description {
       max-width: 100%;

    margin: 13px 0 0;

    color: #424141;

    font-family: 'Nunito', sans-serif;

    font-size: 14px;
    font-weight: 500;

    line-height: 1.8;

    opacity: 0.78;
}


/* ==========================================================
   DECORATIVE MARK
========================================================== */

.signature-experience__mark {
    position: relative;

    width: 42px;
    height: 42px;

    margin-left: auto;

    border: 1px solid var(--hmh-aqua);
    border-radius: 50%;
}


.signature-experience__mark span {
    position: absolute;

    top: 50%;
    left: 50%;

    display: block;

    background: var(--hmh-teal);

    transform:
        translate(-50%, -50%)
        rotate(-45deg);
}


.signature-experience__mark span:first-child {
    width: 16px;
    height: 1px;
}


.signature-experience__mark span:last-child {
    width: 1px;
    height: 16px;
}


/* ==========================================================
   HOVER
========================================================== */

@media (hover: hover) {

    .signature-experience {
        transition:
            padding-left 0.25s ease,
            background-color 0.25s ease;
    }


    .signature-experience:hover {
        padding-left: 12px;

        background: var(--hmh-aqua);
    }


    .signature-experience:hover
    .signature-experience__mark {
        background: #fff;
    }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 991.98px) {

    .signature-experience {
        grid-template-columns:
            78px
            minmax(0, 1fr)
            44px;

        gap: 20px;

        padding: 28px 0;
    }


    .signature-experience__index span {
        font-size: 38px;
    }


    .signature-experience__title {
        font-size: 23px;
    }


    .signature-experience__description {
        font-size: 13px;
    }


    .signature-experience__mark {
        width: 38px;
        height: 38px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767.98px) {

    .signature-editorial__heading {
        margin-bottom: 22px;
    }


    .signature-editorial__heading-row {
        gap: 12px;
    }


    .signature-experience {
        grid-template-columns:
            52px
            minmax(0, 1fr);

        gap: 14px;

        padding: 24px 0;
    }


    .signature-experience__index span {
        font-size: 30px;
    }


    .signature-experience__index::after {
        width: 22px;

        margin-top: 10px;
    }


    .signature-experience__kicker {
        margin-bottom: 9px;

        font-size: 9px;
    }


    .signature-experience__title {
        font-size: 20px;

        line-height: 1.25;
    }


    .signature-experience__description {
        margin-top: 10px;

        font-size: 12px;

        line-height: 1.7;
    }


    .signature-experience__mark {
        display: none;
    }

}


/* ==========================================================
   JOURNEY TIMELINE
========================================================== */

.journey-timeline {
    position: relative;

    display: flex;
    flex-direction: column;

    gap: 18px;

    margin-top: 26px;
}


/* ==========================================================
   CONTINUOUS TIMELINE LINE
========================================================== */

.journey-timeline::before {
    content: '';

    position: absolute;

    top: 30px;
    bottom: 30px;

    left: 26px;

    width: 2px;

    background: var(--hmh-aqua);

    z-index: 0;
}


/* ==========================================================
   TIMELINE ITEM
========================================================== */

.journey-timeline__item {
    position: relative;

    display: grid;

    grid-template-columns:
        54px
        minmax(0, 1fr);

    gap: 18px;

    align-items: stretch;

    z-index: 1;
}


/* ==========================================================
   TIMELINE RAIL
========================================================== */

.journey-timeline__rail {
    position: relative;

    display: flex;
    justify-content: center;

    padding-top: 17px;

    z-index: 2;
}


/* ==========================================================
   NUMBER
========================================================== */

.journey-timeline__number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    border-radius: 50%;

    background: var(--hmh-teal);

    color: #fff;

    font-family: 'Nunito', sans-serif;

    font-size: 11px;
    font-weight: 800;

    line-height: 1;

    box-shadow:
        0 0 0 6px var(--hmh-aqua);

    transition:
        transform 0.2s ease;
}


/* ==========================================================
   CARD
========================================================== */

.journey-timeline__card {
    position: relative;

    min-width: 0;

    padding: 18px 20px 19px;

    border-radius: 16px;

    background: #fff;

    box-shadow:
        0 8px 26px rgba(66, 65, 65, 0.07);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}


/* ==========================================================
   SUBTLE CARD ACCENT
========================================================== */

.journey-timeline__card::before {
    content: '';

    position: absolute;

    top: 18px;
    bottom: 18px;
    left: 0;

    width: 3px;

    border-radius: 0 3px 3px 0;

    background: var(--hmh-teal);
}


/* ==========================================================
   CARD TOP
========================================================== */

.journey-timeline__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    margin-bottom: 7px;
}


/* ==========================================================
   META
========================================================== */

.journey-timeline__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 9px;
}


.journey-timeline__meta-item {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: var(--hmh-teal);

    font-family: 'Nunito', sans-serif;

    font-size: 11px;
    font-weight: 800;

    line-height: 1.3;

    letter-spacing: 0.025em;
}


.journey-timeline__meta-item i {
    font-size: 10px;
}


/* ==========================================================
   META DIVIDER
========================================================== */

.journey-timeline__meta-divider {
    width: 4px;
    height: 4px;

    flex: 0 0 4px;

    border-radius: 50%;

    background: var(--hmh-teal);
}


/* ==========================================================
   TYPE ICON
========================================================== */

.journey-timeline__type-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    border-radius: 10px;

    background: var(--hmh-aqua);

    color: var(--hmh-teal);

    font-size: 12px;
}


/* ==========================================================
   TITLE
========================================================== */

.journey-timeline__title {
    max-width: 700px;

    margin: 0;

    color: #424141;

    font-family: 'Nunito', sans-serif;

    font-size: 17px;
    font-weight: 700;

    line-height: 1.3;

    letter-spacing: -0.018em;
}


/* ==========================================================
   DESCRIPTION
========================================================== */

.journey-timeline__description {
    max-width: 720px;

    margin: 8px 0 0;

    color: #424141;

    font-family: 'Nunito', sans-serif;

    font-size: 13px;
    font-weight: 500;

    line-height: 1.65;

    opacity: 0.74;
}


/* ==========================================================
   DESKTOP INTERACTION
========================================================== */

@media (hover: hover) {

    .journey-timeline__item:hover
    .journey-timeline__card {
        transform: translateX(4px);

        box-shadow:
            0 12px 30px rgba(66, 65, 65, 0.09);
    }


    .journey-timeline__item:hover
    .journey-timeline__number {
        transform: scale(1.05);
    }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 991.98px) {

    .journey-timeline {
        gap: 15px;
    }


    .journey-timeline__item {
        grid-template-columns:
            50px
            minmax(0, 1fr);

        gap: 15px;
    }


    .journey-timeline::before {
        left: 24px;
    }


    .journey-timeline__number {
        width: 38px;
        height: 38px;

        flex-basis: 38px;

        box-shadow:
            0 0 0 5px var(--hmh-aqua);

        font-size: 10px;
    }


    .journey-timeline__rail {
        padding-top: 16px;
    }


    .journey-timeline__card {
        padding: 17px 18px 18px;
    }


    .journey-timeline__title {
        font-size: 18px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767.98px) {

    .journey-timeline {
        gap: 12px;

        margin-top: 21px;
    }


    .journey-timeline::before {
        top: 24px;
        bottom: 24px;

        left: 17px;

        width: 1px;
    }


    .journey-timeline__item {
        grid-template-columns:
            35px
            minmax(0, 1fr);

        gap: 11px;
    }


    .journey-timeline__rail {
        padding-top: 15px;
    }


    .journey-timeline__number {
        width: 28px;
        height: 28px;

        flex-basis: 28px;

        box-shadow:
            0 0 0 4px var(--hmh-aqua);

        font-size: 8px;
    }


    .journey-timeline__card {
        padding: 14px 14px 15px;

        border-radius: 13px;

        box-shadow:
            0 6px 18px rgba(66, 65, 65, 0.06);
    }


    .journey-timeline__card::before {
        top: 14px;
        bottom: 14px;

        width: 2px;
    }


    .journey-timeline__card-top {
        margin-bottom: 6px;
    }


    .journey-timeline__meta {
        gap: 7px;
    }


    .journey-timeline__meta-item {
        font-size: 9px;
    }


    .journey-timeline__meta-item i {
        font-size: 9px;
    }


    .journey-timeline__type-icon {
        width: 30px;
        height: 30px;

        flex-basis: 30px;

        border-radius: 8px;

        font-size: 10px;
    }


    .journey-timeline__title {
        font-size: 16px;
    }


    .journey-timeline__description {
        margin-top: 6px;

        font-size: 11px;

        line-height: 1.55;
    }

}


/* ==========================================================
   SPACE SECTION
========================================================== */

.space-section__description {
    max-width: 760px;

    margin-top: 14px;

    color: #424141;

    font-family: 'Nunito', sans-serif;

    font-size: 14px;
    font-weight: 500;

    line-height: 1.5;
}


/* ==========================================================
   SPACE HIGHLIGHTS
========================================================== */

.space-highlights {
    margin-top: 24px;

    padding: 20px;

    border-radius: 16px;

    background: var(--hmh-aqua);
}


.space-highlights__header {
    display: flex;
    align-items: center;

    gap: 11px;

    margin-bottom: 16px;
}


.space-highlights__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    border-radius: 10px;

    background: #fff;

    color: var(--hmh-teal);

    font-size: 12px;
}


.space-highlights__title {
    color: #424141;
    font-size: 14px;
    font-weight: 800;
}


.space-highlights__subtitle {
    color: #424141;
    font-size: 13px;
    opacity: 0.68;
}


.space-highlights__grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
}


.space-highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: #424141;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}


.space-highlight-item i {
    color: var(--hmh-teal);

    font-size: 9px;
}


/* ==========================================================
   PRIVACY NOTE
========================================================== */

.space-privacy {
    display: flex;
    align-items: flex-start;

    gap: 11px;

    margin-top: 14px;

    padding: 14px 16px;

    border-radius: 12px;

    background: #fff;

    box-shadow:
        0 5px 18px rgba(66, 65, 65, 0.06);
}


.space-privacy__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    border-radius: 8px;

    background: var(--hmh-aqua);

    color: var(--hmh-teal);

    font-size: 10px;
}


.space-privacy__title {
    color: #424141;

    font-size: 14px;
    font-weight: 800;
}


.space-privacy__text {


    color: #424141;

    font-size: 13px;

    line-height: 1.5;

    opacity: 0.72;
}


/* ==========================================================
   EXPERTS
========================================================== */

.experts-list {
    display: flex;
    flex-direction: column;

    gap: 14px;

    margin-top: 24px;
}


.expert-profile {
    display: grid;

    grid-template-columns:
        150px
        minmax(0, 1fr);

    gap: 22px;

    align-items: stretch;

    padding: 18px;

    border-radius: 16px;

    background: #fff;

    box-shadow:
        0 8px 24px rgba(66, 65, 65, 0.06);
}


.expert-profile__media {
    min-width: 0;
}


.expert-profile__photo,
.expert-profile__placeholder {
    width: 100%;
    height: 100%;

    min-height: 170px;

    border-radius: 12px;

    object-fit: cover;
}


.expert-profile__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--hmh-aqua);

    color: var(--hmh-teal);

    font-size: 30px;
}


.expert-profile__content {
    min-width: 0;
}


.expert-profile__eyebrow {
    margin-bottom: 5px;

    color: var(--hmh-teal);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


.expert-profile__name {
    margin: 0;

    color: #424141;

    font-family: 'Nunito', sans-serif;

    font-size: 21px;
    font-weight: 800;

    line-height: 1.25;
}


.expert-profile__role {
    color: var(--hmh-teal);
    font-size: 12px;
    font-weight: 700;
}


.expert-profile__bio {
    margin-top: 10px;

    color: #424141;

    font-size: 13px;
    font-weight: 500;

    line-height: 1.3;

    opacity: 0.76;
}


.expert-profile__meta {
    display: flex;
    flex-wrap: wrap;

    gap: 8px 16px;

    margin-top: 14px;
}


.expert-profile__meta-item {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: #424141;

    font-size: 13px;
    font-weight: 700;
}


.expert-profile__meta-item i {
    color: var(--hmh-teal);

    font-size: 9px;
}


/* ==========================================================
   TRAVEL
========================================================== */

.travel-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;

    margin-top: 22px;
}


.travel-item {
    display: flex;
    align-items: flex-start;

    gap: 11px;

    min-width: 0;

    padding: 15px;

    border-radius: 12px;

    background: #fff;

    box-shadow:
        0 5px 18px rgba(66, 65, 65, 0.05);
}


.travel-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    border-radius: 9px;

    background: var(--hmh-aqua);

    color: var(--hmh-teal);

    font-size: 11px;
}


.travel-item__label {
    color: var(--hmh-teal);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.06em;

    text-transform: uppercase;
}


.travel-item__value {
    margin-top: 3px;

    color: #424141;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.45;
}


.travel-item__sub {
    margin-top: 3px;

    color: #424141;

    font-size: 10px;

    opacity: 0.68;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 991.98px) {

    .expert-profile {
        grid-template-columns:
            125px
            minmax(0, 1fr);

        gap: 18px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767.98px) {

    .space-highlights {
        padding: 16px;

        border-radius: 13px;
    }


    .space-highlights__grid {
        grid-template-columns: 1fr;
    }


    .expert-profile {
        grid-template-columns: 1fr;

        padding: 14px;
    }


    .expert-profile__photo,
    .expert-profile__placeholder {
        height: 210px;
    }


    .expert-profile__name {
        font-size: 18px;
    }


    .travel-grid {
        grid-template-columns: 1fr;
    }

}

/* ==========================================================
   REVIEW LIST
========================================================== */

.reviews-list {
    display: flex;
    flex-direction: column;

    gap: 16px;

    margin-top: 26px;
}


/* ==========================================================
   FULL WIDTH REVIEW CARD
========================================================== */

.review-wide-card {
    width: 100%;

    padding: 24px 26px;

    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 8px 26px rgba(66, 65, 65, 0.06);
}


/* ==========================================================
   TOP
========================================================== */

.review-wide-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 24px;
}


/* ==========================================================
   PARTICIPANT
========================================================== */

.review-wide-card__participant {
    display: flex;
    align-items: center;

    gap: 12px;
}


.review-wide-card__avatar {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    overflow: hidden;

    border-radius: 50%;

    background: var(--hmh-aqua);

    color: var(--hmh-teal);

    font-family: 'Nunito', sans-serif;

    font-size: 17px;
    font-weight: 800;
}


.review-wide-card__avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* ==========================================================
   NAME
========================================================== */

.review-wide-card__name {
    color: #424141;

    font-size: 16px;
    font-weight: 800;
}


.review-wide-card__verified {
    display: flex;
    align-items: center;

    gap: 5px;

    color: var(--hmh-teal);

    font-size: 11px;
    font-weight: 800;
}


.review-wide-card__location {
    display: flex;
    align-items: center;

    gap: 5px;

    margin-top: 4px;

    color: #424141;

    font-size: 9px;

    opacity: 0.65;
}


/* ==========================================================
   RATING
========================================================== */

.review-wide-card__rating {
    display: flex;
    align-items: center;

    gap: 3px;

    color: var(--hmh-teal);

    font-size: 11px;
}


/* ==========================================================
   QUOTE
========================================================== */

.review-wide-card__quote-wrap {
    position: relative;

    display: grid;

    grid-template-columns:
        38px
        minmax(0, 1fr);

    gap: 14px;

    margin-top: 22px;
}


.review-wide-card__quote-mark {
    color: var(--hmh-teal);

    font-family: Georgia, serif;

    font-size: 42px;

    line-height: 1;
}


.review-wide-card__quote {
    max-width: 900px;

    margin: 0;

    color: #424141;

    font-family: 'Nunito', sans-serif;

    font-size: 14px;
    font-weight: 500;

    line-height: 1.3;
}


/* ==========================================================
   FOOTER
========================================================== */

.review-wide-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    margin-top: 22px;
    padding-top: 14px;

    border-top: 1px solid var(--hmh-aqua);
}


.review-wide-card__program {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    color: #424141;
    font-size: 12px;
    font-weight: 700;
    opacity: 0.68;
}


.review-wide-card__dot {
    width: 3px;
    height: 3px;

    flex: 0 0 3px;

    border-radius: 50%;

    background: var(--hmh-teal);
}


.review-wide-card__date {
    color: #424141;

    font-size: 9px;
    font-weight: 700;

    opacity: 0.58;
}


/* ==========================================================
   HOVER
========================================================== */

@media (hover: hover) {

    .review-wide-card {
        transition:
            transform 0.2s ease,
            box-shadow 0.2s ease;
    }


    .review-wide-card:hover {
        transform: translateY(-2px);

        box-shadow:
            0 12px 30px rgba(66, 65, 65, 0.08);
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767.98px) {

    .review-wide-card {
        padding: 18px;

        border-radius: 15px;
    }


    .review-wide-card__top {
        gap: 14px;
    }


    .review-wide-card__avatar {
        width: 44px;
        height: 44px;

        flex-basis: 44px;

        font-size: 14px;
    }


    .review-wide-card__quote-wrap {
        grid-template-columns:
            24px
            minmax(0, 1fr);

        gap: 10px;

        margin-top: 18px;
    }


    .review-wide-card__quote-mark {
        font-size: 32px;
    }


    .review-wide-card__quote {
        font-size: 12px;

        line-height: 1.65;
    }


    .review-wide-card__footer {
        align-items: flex-start;
        flex-direction: column;

        gap: 6px;
    }

}



/* ==========================================================
   LOCATION SECTION
========================================================== */

.location-section {
    position: relative;
}


/* ==========================================================
   LOCATION LAYOUT
========================================================== */

.location-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.25fr);

    gap: 20px;

    align-items: stretch;

    margin-top: 24px;
}


/* ==========================================================
   CONTENT
========================================================== */

.location-layout__content {
    display: flex;
    flex-direction: column;

    gap: 18px;

    min-width: 0;
}


/* ==========================================================
   LOCATION PLACE
========================================================== */

.location-place {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 18px;

    border-radius: 14px;

    background: var(--hmh-aqua);
}


.location-place__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    border-radius: 11px;

    background: #fff;

    color: var(--hmh-teal);

    font-size: 14px;
}


.location-place__label {
    color: var(--hmh-teal);
    font-family: 'Nunito', sans-serif;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}


.location-place__name {
    color: #424141;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}


/* ==========================================================
   DESCRIPTION
========================================================== */

.location-description {
    color: #424141;

    font-family: 'Nunito', sans-serif;

    font-size: 13px;
    font-weight: 500;

    line-height: 1.75;

    opacity: 0.8;
}


/* ==========================================================
   PRIVACY
========================================================== */

.location-privacy {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    margin-top: auto;

    padding: 14px 15px;

    border-radius: 12px;

    background: #fff;

    box-shadow:
        0 6px 20px rgba(66, 65, 65, 0.06);
}


.location-privacy__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    border-radius: 8px;

    background: var(--hmh-aqua);

    color: var(--hmh-teal);

    font-size: 10px;
}


.location-privacy__title {
    color: #424141;

    font-family: 'Nunito', sans-serif;

    font-size: 13px;
    font-weight: 800;

    line-height: 1.3;
}


.location-privacy__text {
    margin-top: 2px;
    color: #424141;
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    opacity: 0.68;
}


/* ==========================================================
   MAP
========================================================== */

.location-layout__map {
    min-height: 320px;

    overflow: hidden;

    border-radius: 16px;

    background: var(--hmh-aqua);
}


.program-map {
    width: 100%;
    height: 100%;

    min-height: 320px;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 991.98px) {

    .location-layout {
        grid-template-columns: 1fr;
    }


    .location-layout__map,
    .program-map {
        min-height: 290px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767.98px) {

    .location-layout {
        gap: 16px;

        margin-top: 20px;
    }


    .location-place {
        padding: 15px;

        border-radius: 12px;
    }


    .location-place__icon {
        width: 36px;
        height: 36px;

        flex-basis: 36px;

        font-size: 12px;
    }


    .location-place__name {
        font-size: 14px;
    }


    .location-description {
        font-size: 12px;

        line-height: 1.65;
    }


    .location-layout__map,
    .program-map {
        min-height: 240px;

        border-radius: 13px;
    }

}

/* ==========================================================
   BOOKING COLUMN
========================================================== */

.program-booking-column {
    position: relative;

    align-self: stretch;
}








/* ==========================================================
   STICKY BOOKING SIDEBAR
========================================================== */

.book-sticky {
    position: sticky;

    top: 70px;

    z-index: 20;

    width: 100%;

    max-height: none !important;

    overflow: visible !important;
}


/* ==========================================================
   BOOKING CARD
========================================================== */

.book-card {
    width: 100%;

    overflow: hidden;

    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 10px 30px rgba(66, 65, 65, 0.08);

    font-family: 'Nunito', sans-serif;
}


/* ==========================================================
   PRICE HEADER
========================================================== */

.price-hd {
    padding: 22px 22px 20px;

    background: var(--hmh-aqua);
}


.price-from {
    margin-bottom: 6px;

    color: #424141;

    font-size: 12px;
    font-weight: 800;

    line-height: 1.2;

    letter-spacing: 0.06em;

    text-transform: uppercase;

    opacity: 0.72;
}


.price-amt {
    color: var(--hmh-teal);

    font-size: 32px;
    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -0.03em;
}


.price-per,
.price-pkgn {
    margin-top: 6px;

    color: #424141;

    font-size: 12px;
    font-weight: 700;

    line-height: 1.4;

    opacity: 0.72;
}


/* ==========================================================
   BOOKING BODY
========================================================== */

.book-pad {
    padding: 0px 25px 20px;
}


/* ==========================================================
   LABELS
========================================================== */

.sel-label,
.detail-h {
    color: #424141;

    font-size: 12px;
    font-weight: 800;

    line-height: 1.3;
}


/* ==========================================================
   PROGRAM PACKAGE
========================================================== */

.pkg {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    padding: 14px 15px;

    border-radius: 12px;

    background: #fff;
}


.pkg.on {
    background: var(--hmh-aqua);
}


.pkg-t {
    color: #424141;

    font-size: 14px;
    font-weight: 800;

    line-height: 1.35;
}


.pkg-s {
    margin-top: 3px;

    color: #424141;

    font-size: 12px;
    font-weight: 600;

    line-height: 1.4;

    opacity: 0.7;
}


.pkg-p {
    color: var(--hmh-teal);

    font-size: 14px;
    font-weight: 800;

    white-space: nowrap;
}


/* ==========================================================
   BUTTONS
========================================================== */

.book-card .btn-lifed,
.book-card .btn-lifed-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    border-radius: 11px;

    font-size: 14px;
    font-weight: 800;

    text-decoration: none;
}


/* ==========================================================
   TRUST ITEMS
========================================================== */

.trust-row {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #424141;

    font-size: 12px;
    font-weight: 700;

    line-height: 1.45;
}


.trust-ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    flex: 0 0 28px;

    border-radius: 8px;

    background: var(--hmh-aqua);

    color: var(--hmh-teal);

    font-size: 12px;
}


/* ==========================================================
   DETAILS
========================================================== */

.detail-block {
    padding: 18px 22px;

    border-top: 1px solid var(--hmh-aqua);
}


.detail-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 14px;

    padding: 10px 0;
}


.detail-row + .detail-row {
    border-top: 1px solid var(--hmh-aqua);
}


.detail-k {
    flex: 0 0 38%;

    color: #424141;

    font-size: 12px;
    font-weight: 700;

    opacity: 0.68;
}


.detail-v {
    flex: 1;

    color: #424141;

    font-size: 12px;
    font-weight: 800;

    line-height: 1.45;

    text-align: right;
}


/* ==========================================================
   HEALTHMATE
========================================================== */

.hm-block {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 18px 22px;

    border-top: 1px solid var(--hmh-aqua);
}


.hm-name {
    color: #424141;

    font-size: 13px;
    font-weight: 800;
}


.hm-vf,
.hm-rating,
.hm-link,
.hm-block .micro {
    font-size: 12px;
}

/* ==========================================================
   HEALTHMATE BLOCK
========================================================== */

.hm-block {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    padding: 20px 22px;

    border-top: 1px solid var(--hmh-aqua);

    background: #fff;
}


/* ==========================================================
   PROFILE GROUP
========================================================== */

.hm-profile {
    display: flex;
    align-items: center;

    gap: 12px;

    min-width: 0;
}


/* ==========================================================
   AVATAR
========================================================== */

.hm-av {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    border-radius: 50%;

    background: var(--hmh-aqua);

    color: var(--hmh-teal);

    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 800;

    line-height: 1;
}


/* ==========================================================
   INFO
========================================================== */

.hm-info {
    min-width: 0;
}


.hm-name {
    color: #424141;

    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 800;

    line-height: 1.25;
}


.hm-vf {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    margin-top: 4px;

    color: var(--hmh-teal);

    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 700;

    line-height: 1.3;
}


.hm-vf i {
    font-size: 10px;
}


/* ==========================================================
   SPECIALITIES
========================================================== */

.hm-specialities {
    margin-top: 4px;

    color: #424141;

    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 600;

    line-height: 1.4;

    opacity: 0.68;
}


/* ==========================================================
   RATING
========================================================== */

.hm-rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 6px;

    margin-top: 5px;

    color: #424141;

    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 700;

    line-height: 1.3;
}


.hm-rating .stars {
    display: inline-flex;
    align-items: center;

    gap: 2px;

    color: var(--hmh-teal);
}


.hm-rating .stars i {
    font-size: 9px;
}


/* ==========================================================
   PROFILE LINK
========================================================== */

.hm-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    flex: 0 0 auto;

    min-height: 34px;

    padding: 0 11px;

    border-radius: 9px;

    background: var(--hmh-aqua);

    color: var(--hmh-teal) !important;

    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 800;

    line-height: 1;

    text-decoration: none !important;

    white-space: nowrap;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}


.hm-link i {
    font-size: 9px;
}


.hm-link:hover {
    background: var(--hmh-teal);

    color: #fff !important;

    transform: translateX(1px);
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 575.98px) {

    .hm-block {
        align-items: flex-start;

        flex-direction: column;

        gap: 12px;

        padding: 18px;
    }


    .hm-link {
        width: 100%;

        min-height: 38px;
    }

}


/* ==========================================================
   IMPORTANT — REMOVE INTERNAL SCROLLBAR
========================================================== */

@media (min-width: 992px) {

    .book-sticky {
        max-height: none !important;

        overflow: visible !important;

        scrollbar-width: auto;
    }


    .book-sticky::-webkit-scrollbar {
        display: none;
    }

}


/* ==========================================================
   SIDEBAR CTA BUTTONS
========================================================== */

.book-card .btn-lifed,
.book-card .btn-lifed-outline {
    display: flex !important;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 48px;

    padding: 0 18px;

    border-radius: 12px;

    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;

    text-align: center;
    text-decoration: none !important;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


/* PRIMARY */

.book-card .btn-lifed {
    border: 1px solid var(--hmh-teal) !important;

    background: var(--hmh-teal) !important;

    color: #fff !important;

    box-shadow: none;
}


.book-card .btn-lifed:hover {
    background: var(--hmh-teal) !important;

    color: #fff !important;

    transform: translateY(-1px);
}


/* SECONDARY */

.book-card .btn-lifed-outline {
    border: 1px solid var(--hmh-teal) !important;

    background: #fff !important;

    color: var(--hmh-teal) !important;

    box-shadow: none;
}


.book-card .btn-lifed-outline:hover {
    background: var(--hmh-aqua) !important;

    color: var(--hmh-teal) !important;

    transform: translateY(-1px);
}


/* BUTTON STACK */

.book-card .d-grid.gap-2 {
    gap: 10px !important;

    margin-top: 10px !important;
}


/* ==========================================================
   GALLERY BUTTON RESET
========================================================== */

.program-gallery-more-btn {
    appearance: none;
    -webkit-appearance: none;

    border: 1px solid rgba(66, 65, 65, 0.12);

    cursor: pointer;
}


/* ==========================================================
   PROGRAM GALLERY MODAL
========================================================== */

.program-gallery-modal {
    font-family: 'Nunito', sans-serif;
}


.program-gallery-modal .modal-dialog {
    width: min(
        1100px,
        calc(100% - 32px)
    );

    max-width: 1100px;

    margin-left: auto;
    margin-right: auto;
}


.program-gallery-modal .modal-content {
    overflow: hidden;

    border: 0;
    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 24px 70px rgba(66, 65, 65, 0.18);
}


/* ==========================================================
   HEADER
========================================================== */

.program-gallery-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 18px 20px;

    border-bottom: 1px solid var(--hmh-aqua);

    background: #fff;
}


.program-gallery-modal__eyebrow {
    display: flex;
    align-items: center;

    gap: 7px;

    margin-bottom: 4px;

    color: var(--hmh-teal);

    font-size: 12px;
    font-weight: 800;

    line-height: 1.2;

    letter-spacing: 0.06em;

    text-transform: uppercase;
}


.program-gallery-modal__title {
    max-width: 800px;

    margin: 0;

    color: #424141;

    font-size: 18px;
    font-weight: 800;

    line-height: 1.3;
}


/* ==========================================================
   CLOSE
========================================================== */

.program-gallery-modal__close {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: var(--hmh-aqua);

    color: var(--hmh-teal);

    font-size: 14px;

    cursor: pointer;
}


/* ==========================================================
   VIEWER
========================================================== */

.program-gallery-viewer {
    padding: 14px;

    background: #fff;
}


/* ==========================================================
   MAIN STAGE
========================================================== */

.program-gallery-viewer__stage {
    position: relative;

    width: 100%;
    height: 560px;

    overflow: hidden;

    border-radius: 14px;

    background: var(--hmh-aqua);
}


.program-gallery-viewer__main-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    background: #fff;
}


/* ==========================================================
   COUNTER
========================================================== */

.program-gallery-viewer__counter {
    position: absolute;

    top: 14px;
    left: 14px;

    z-index: 4;

    display: inline-flex;
    align-items: center;

    gap: 4px;

    min-height: 32px;

    padding: 0 11px;

    border-radius: 999px;

    background: #fff;

    color: #424141;

    font-size: 12px;
    font-weight: 800;

    box-shadow:
        0 4px 14px rgba(66, 65, 65, 0.08);
}


/* ==========================================================
   PREVIOUS / NEXT
========================================================== */

.program-gallery-viewer__nav {
    position: absolute;

    top: 50%;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #fff;

    color: #424141;

    font-size: 13px;

    cursor: pointer;

    box-shadow:
        0 5px 18px rgba(66, 65, 65, 0.12);

    transform: translateY(-50%);

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}


.program-gallery-viewer__nav:hover {
    background: var(--hmh-teal);

    color: #fff;
}


.program-gallery-viewer__nav--prev {
    left: 14px;
}


.program-gallery-viewer__nav--next {
    right: 14px;
}


/* ==========================================================
   THUMBNAIL STRIP
========================================================== */

.program-gallery-thumbnails {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-top: 10px;
    padding: 2px;

    overflow-x: auto;
    overflow-y: hidden;

    scrollbar-width: none;
}


.program-gallery-thumbnails::-webkit-scrollbar {
    display: none;
}


/* ==========================================================
   THUMBNAIL
========================================================== */

.program-gallery-thumbnail {
    position: relative;

    width: 86px;
    height: 64px;

    flex: 0 0 86px;

    padding: 0;

    overflow: hidden;

    border: 2px solid transparent;
    border-radius: 10px;

    background: var(--hmh-aqua);

    cursor: pointer;

    opacity: 0.62;

    transition:
        opacity 0.2s ease,
        border-color 0.2s ease;
}


.program-gallery-thumbnail img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.program-gallery-thumbnail:hover {
    opacity: 0.9;
}


.program-gallery-thumbnail.is-active {
    border-color: var(--hmh-teal);

    opacity: 1;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 991.98px) {

    .program-gallery-viewer__stage {
        height: 460px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767.98px) {

    .program-gallery-modal .modal-dialog {
        width: calc(100% - 16px);

        margin-top: 8px;
        margin-bottom: 8px;
    }


    .program-gallery-modal .modal-content {
        border-radius: 14px;
    }


    .program-gallery-modal__header {
        padding: 14px;
    }


    .program-gallery-modal__title {
        font-size: 15px;
    }


    .program-gallery-modal__eyebrow {
        font-size: 10px;
    }


    .program-gallery-viewer {
        padding: 8px;
    }


    .program-gallery-viewer__stage {
        height: 390px;

        border-radius: 11px;
    }


    .program-gallery-viewer__nav {
        width: 36px;
        height: 36px;

        font-size: 11px;
    }


    .program-gallery-viewer__nav--prev {
        left: 8px;
    }


    .program-gallery-viewer__nav--next {
        right: 8px;
    }


    .program-gallery-thumbnail {
        width: 70px;
        height: 52px;

        flex-basis: 70px;

        border-radius: 8px;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 575.98px) {

    .program-gallery-viewer__stage {
        height: 330px;
    }

}


/* ==========================================================
   LOCATION SECTION
========================================================== */

.location-section {
    position: relative;

    margin-top: 48px;
}


/* ==========================================================
   LOCATION LAYOUT
========================================================== */

.location-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 22px;

    align-items: stretch;

    margin-top: 26px;
}


/* ==========================================================
   LOCATION CONTENT
========================================================== */

.location-layout__content {
    display: flex;
    flex-direction: column;

    gap: 18px;

    min-width: 0;
}


/* ==========================================================
   MAP WRAPPER
========================================================== */

.location-layout__map {
    position: relative;

    width: 100%;
    min-height: 360px;

    overflow: hidden;

    border-radius: 16px;

    background: var(--hmh-aqua);
}


/* ==========================================================
   ACTUAL MAP
========================================================== */

.program-map {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    min-height: 360px;

    z-index: 1;
}


/* ==========================================================
   LEAFLET FIXES
========================================================== */

.program-map .leaflet-container {
    width: 100%;
    height: 100%;
}


.program-map .leaflet-control-attribution {
    font-family: 'Nunito', sans-serif;

    font-size: 10px;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 991.98px) {

    .location-section {
        margin-top: 40px;
    }


    .location-layout {
        grid-template-columns: 1fr;
    }


    .location-layout__map,
    .program-map {
        min-height: 320px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767.98px) {

    .location-section {
        margin-top: 34px;
    }


    .location-layout {
        gap: 16px;

        margin-top: 20px;
    }


    .location-layout__map,
    .program-map {
        min-height: 260px;

        border-radius: 13px;
    }

}

/* ==========================================================
   MOBILE BOOKING BAR
========================================================== */

.program-mobile-booking {
    display: none;
}


/* ==========================================================
   MOBILE + TABLET ONLY
========================================================== */

@media (max-width: 991.98px) {

    .program-mobile-booking {
        position: fixed !important;

        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;

        z-index: 9999 !important;

        display: flex !important;
        align-items: center !important;

        gap: 12px;

        width: 100%;

        padding:
            10px
            14px
            calc(10px + env(safe-area-inset-bottom));

        border-top: 1px solid var(--hmh-aqua);

        background: #fff;

        box-shadow:
            0 -8px 28px rgba(66, 65, 65, 0.10);

        font-family: 'Nunito', sans-serif;
    }


    /* ======================================================
       PRICE
    ====================================================== */

    .program-mobile-booking__price {
        display: flex;
        flex-direction: column;
        justify-content: center;

        flex: 0 0 auto;

        min-width: 96px;
    }


    .program-mobile-booking__from {
        margin: 0 0 2px;

        color: #424141;

        font-size: 12px;
        font-weight: 700;

        line-height: 1.1;

        opacity: 0.65;
    }


    .program-mobile-booking__amount {
        margin: 0;

        color: var(--hmh-teal);

        font-size: 20px;
        font-weight: 800;

        line-height: 1.1;

        letter-spacing: -0.02em;
    }


    /* ======================================================
       CTA
    ====================================================== */

    .program-mobile-booking__cta {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        gap: 8px;

        flex: 1 1 auto;

        min-width: 0;
        min-height: 48px;

        padding: 0 18px;

        border: 0 !important;
        border-radius: 12px;

        background: var(--hmh-teal) !important;

        color: #fff !important;

        font-family: 'Nunito', sans-serif;

        font-size: 14px;
        font-weight: 800;

        line-height: 1;

        text-align: center;
        text-decoration: none !important;

        white-space: nowrap;

        box-shadow: none !important;
    }


    .program-mobile-booking__cta:hover,
    .program-mobile-booking__cta:focus,
    .program-mobile-booking__cta:active,
    .program-mobile-booking__cta:visited {
        background: var(--hmh-teal) !important;

        color: #fff !important;

        text-decoration: none !important;
    }


    .program-mobile-booking__cta i {
        color: #fff;

        font-size: 11px;
    }


    /* ======================================================
       PREVENT BAR FROM COVERING PAGE CONTENT
    ====================================================== */

    body {
        padding-bottom:
            calc(82px + env(safe-area-inset-bottom));
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 575.98px) {

    .program-mobile-booking {
        gap: 70px;

        padding-left: 12px;
        padding-right: 12px;
    }


    .program-mobile-booking__price {
        min-width: 88px;
    }


    .program-mobile-booking__amount {
        font-size: 18px;
    }


    .program-mobile-booking__cta {
        min-height: 46px;

        padding: 0 14px;

        font-size: 13px;
    }

}


/* ==========================================================
   STICKY PROGRAM SUB NAVIGATION
========================================================== */

.program-subnav-wrapper {
    position: sticky;
    position: -webkit-sticky;

    top: 0;

    z-index: 900;

    width: 100%;

    background: #fff;

    border-top: 1px solid var(--hmh-aqua);
    border-bottom: 1px solid var(--hmh-aqua);

    box-shadow:
        0 4px 14px rgba(66, 65, 65, 0.04);
}


/* ==========================================================
   NAVIGATION
========================================================== */

.program-subnav {
    display: flex;
    align-items: center;

    gap: 4px;

    width: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    scrollbar-width: none;

    white-space: nowrap;
}


.program-subnav::-webkit-scrollbar {
    display: none;
}


/* ==========================================================
   LINKS
========================================================== */

.program-subnav__link {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    min-height: 56px;

    padding: 0 15px;

    color: var(--hmh-dark);

    font-family: 'Nunito', sans-serif;

    font-size: 13px;
    font-weight: 700;

    line-height: 1;

    text-decoration: none;

    opacity: 0.68;

    transition:
        color 0.2s ease,
        opacity 0.2s ease,
        background-color 0.2s ease;
}


/* underline */

.program-subnav__link::after {
    content: '';

    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 0;

    height: 3px;

    border-radius: 3px 3px 0 0;

    background: var(--hmh-teal);

    opacity: 0;

    transform: scaleX(0.45);

    transform-origin: center;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}


/* hover */

.program-subnav__link:hover {
    color: var(--hmh-teal);

    opacity: 1;

    background: var(--hmh-aqua);
}


/* active */

.program-subnav__link.active {
    color: var(--hmh-teal);

    font-weight: 800;

    opacity: 1;
}


.program-subnav__link.active::after {
    opacity: 1;

    transform: scaleX(1);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 991.98px) {

    .program-subnav__link {
        min-height: 52px;

        padding: 0 13px;

        font-size: 12px;
    }


    .program-subnav__link::after {
        left: 13px;
        right: 13px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767.98px) {

    .program-subnav-wrapper {
        top: 0;
    }


    .program-subnav__link {
        min-height: 48px;

        padding: 0 12px;

        font-size: 12px;
    }


    .program-subnav__link::after {
        left: 12px;
        right: 12px;

        height: 2px;
    }

}

/* ==========================================================
   FIND YOUR FIT
========================================================== */

.book-fit-prompt {
    display: flex;
    align-items: center;

    gap: 11px;

    margin-bottom: 16px;
    padding: 13px 14px;

    border-radius: 12px;

    background: var(--hmh-aqua);

    font-family: 'Nunito', sans-serif;
}


.book-fit-prompt__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    border-radius: 9px;

    background: #fff;

    color: var(--hmh-teal);

    font-size: 12px;
}


.book-fit-prompt__content {
    min-width: 0;
}


.book-fit-prompt__title {
    margin-bottom: 2px;

    color: #424141;

    font-size: 12px;
    font-weight: 700;

    line-height: 1.3;
}


.book-fit-prompt__link {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: var(--hmh-teal) !important;

    font-size: 12px;
    font-weight: 800;

    line-height: 1.3;

    text-decoration: none !important;
}


.book-fit-prompt__link i {
    font-size: 9px;

    transition: transform 0.2s ease;
}


.book-fit-prompt__link:hover i {
    transform: translateX(3px);
}


/* ==========================================================
   BOOKING ASSURANCE
========================================================== */

.book-assurance {
    /* margin-top: 18px; */
    padding-top: 18px;
    border-top: 1px solid var(--hmh-aqua);
    font-family: 'Nunito', sans-serif;
    padding: 11px 25px;
}


/* ==========================================================
   ASSURANCE LEAD
========================================================== */

.book-assurance__lead {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 14px;
}


.book-assurance__lead-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    border-radius: 9px;

    background: var(--hmh-aqua);

    color: var(--hmh-teal);

    font-size: 12px;
}


.book-assurance__title {
    color: #424141;

    font-size: 12px;
    font-weight: 800;

    line-height: 1.3;
}


.book-assurance__price-note {
    margin-top: 2px;

    color: #424141;

    font-size: 11px;
    font-weight: 600;

    line-height: 1.3;

    opacity: 0.67;
}


/* ==========================================================
   ASSURANCE ITEMS
========================================================== */

.book-assurance__items {
    display: flex;
    flex-direction: column;
    padding: 3px 9px;
    gap: 9px;
}


.book-assurance__item {
    display: flex;
    align-items: flex-start;

    gap: 8px;

    color: #424141;

    font-size: 12px;
    font-weight: 600;
}


.book-assurance__item strong {
    color: #424141;

    font-weight: 800;
}


/* ==========================================================
   CHECK ICON
========================================================== */

.book-assurance__check {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;

    flex: 0 0 18px;

    border-radius: 50%;

    background: var(--hmh-aqua);

    color: var(--hmh-teal);

    font-size: 7px;
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767.98px) {

    .book-fit-prompt {
        padding: 12px;
    }


    .book-assurance {
        margin-top: 15px;
        padding-top: 15px;
    }


    .book-assurance__item {
        font-size: 10px;
    }

}


/* ==========================================================
   CANCELLATION SUMMARY
========================================================== */

.book-cancellation-summary {
    width: 100%;
    margin-top: 15px;
    padding: 16px;

    border-radius: 16px;

    background: var(--hmh-aqua);

    font-family: 'Nunito', sans-serif;
}


/* ==========================================================
   HEADING
========================================================== */

.book-cancellation-summary__heading {
    display: flex;
    align-items: center;

    gap: 10px;
}


/* ==========================================================
   STANDARD BADGE
========================================================== */

.book-cancellation-summary__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 32px;

    padding: 0 11px;

    border-radius: 9px;

    background: var(--hmh-teal);

    color: #fff;

    font-size: 11px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: 0.04em;

    text-transform: uppercase;
}


/* ==========================================================
   TITLE
========================================================== */

.book-cancellation-summary__title {
    color: #424141;

    font-size: 14px;
    font-weight: 800;

    line-height: 1.3;
}


/* ==========================================================
   DESCRIPTION
========================================================== */

.book-cancellation-summary__text {
    margin-top: 9px;

    color: #424141;

    font-size: 12px;
    font-weight: 500;

    line-height: 1.55;
}


/* ==========================================================
   POLICY LINK
========================================================== */

.book-cancellation-summary__link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 13px;
    padding: 0 0 2px;

    border: 0;
    border-bottom: 1px solid rgba(0, 174, 157, 0.45);

    background: transparent;

    color: var(--hmh-teal);

    font-family: 'Nunito', sans-serif;

    font-size: 12px;
    font-weight: 800;

    line-height: 1.3;

    cursor: pointer;
}


.book-cancellation-summary__link i {
    font-size: 8px;

    transition: transform 0.2s ease;
}


.book-cancellation-summary__link:hover i {
    transform: translateX(3px);
}

/* ==========================================================
   CANCELLATION POLICY MODAL
========================================================== */

.cancellation-policy-modal,
.program-gallery-modal {
    z-index: 1090 !important;
    margin-top: 0px;
    font-family: 'Nunito', sans-serif;
}

.modal-backdrop {
    z-index: 1080 !important;
}


/* ==========================================================
   DIALOG
========================================================== */

.cancellation-policy-modal .modal-dialog {
    width: min(760px, calc(100% - 32px));

    max-width: 760px;

    margin-right: auto;
    margin-left: auto;
}


/* ==========================================================
   MODAL CONTENT
========================================================== */

.cancellation-policy-modal .modal-content {
    max-height: calc(100vh - 40px);

    overflow: hidden;

    border: 0 !important;
    border-radius: 22px !important;

    background: #fff;

    box-shadow:
        0 28px 80px rgba(66, 65, 65, 0.22);
}


/* ==========================================================
   HEADER
========================================================== */

.cancellation-policy-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 24px;

    padding: 25px 26px 20px;

    border-bottom: 1px solid #e7eceb;

    background: #fff;
}


.cancellation-policy-modal__header > div:first-child {
    min-width: 0;
}


/* ==========================================================
   TITLE
========================================================== */

.cancellation-policy-modal__title {
    margin: 0 !important;

    color: #424141;

    font-family: 'Nunito', sans-serif;

    font-size: 28px !important;
    font-weight: 800 !important;

    line-height: 1.16;

    letter-spacing: -0.025em;
}


/* ==========================================================
   BADGES
========================================================== */

.cancellation-policy-modal__badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 13px;
}


.cancellation-policy-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 31px;

    padding: 0 11px;

    border-radius: 9px;

    background: var(--hmh-aqua);

    color: var(--hmh-teal);

    font-size: 10px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: 0.065em;

    text-transform: uppercase;
}


.cancellation-policy-badge--green {
    background: rgba(95, 187, 70, 0.17);

    color: #477c37;
}


/* ==========================================================
   CLOSE BUTTON
========================================================== */

.cancellation-policy-modal__close {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    padding: 0;

    border: 0 !important;
    border-radius: 50%;

    background: #f4f4f4;

    color: #424141;

    font-size: 14px;

    cursor: pointer;

    box-shadow: none !important;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}


.cancellation-policy-modal__close:hover {
    background: var(--hmh-aqua);

    color: var(--hmh-teal);
}


/* ==========================================================
   BODY
========================================================== */

.cancellation-policy-modal__body {
    padding: 0 26px !important;

    overflow-y: auto;

    background: #fff;

    scrollbar-width: thin;

    scrollbar-color:
        #c7cecd
        transparent;
}


.cancellation-policy-modal__body::-webkit-scrollbar {
    width: 6px;
}


.cancellation-policy-modal__body::-webkit-scrollbar-track {
    background: transparent;
}


.cancellation-policy-modal__body::-webkit-scrollbar-thumb {
    border-radius: 999px;

    background: #c7cecd;
}


/* ==========================================================
   POLICY BLOCK
========================================================== */

.cancellation-policy-block {
    padding: 22px 0;

    border-bottom: 1px solid #e8eceb;
}


.cancellation-policy-block:last-child {
    border-bottom: 0;
}


/* ==========================================================
   BLOCK EYEBROW
========================================================== */

.cancellation-policy-block__eyebrow {
    margin-bottom: 11px;

    color: #424141;

    font-size: 10px;
    font-weight: 800;

    line-height: 1.3;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    opacity: 0.52;
}


/* ==========================================================
   NORMAL BLOCK TITLE
========================================================== */

.cancellation-policy-block__title {
    margin: 0;

    color: #424141;

    font-size: 17px;
    font-weight: 800;

    line-height: 1.35;
}


.cancellation-policy-block__text {
    margin: 7px 0 0;

    color: #424141;

    font-size: 13px;
    font-weight: 500;

    line-height: 1.7;

    opacity: 0.78;
}


/* ==========================================================
   REFUND HIGHLIGHT
========================================================== */

.cancellation-policy-highlight {
    display: flex;
    align-items: flex-start;

    gap: 13px;

    padding: 18px;

    border-radius: 16px;

    background: var(--hmh-aqua);
}


.cancellation-policy-highlight__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    border-radius: 10px;

    background: #fff;

    color: var(--hmh-teal);

    font-size: 13px;
}


.cancellation-policy-highlight h3 {
    margin: 0;

    color: #424141;

    font-size: 15px;
    font-weight: 800;

    line-height: 1.4;
}


.cancellation-policy-highlight p {
    margin: 6px 0 0;

    color: #424141;

    font-size: 12px;
    font-weight: 500;

    line-height: 1.65;

    opacity: 0.78;
}


/* ==========================================================
   BOOKING PROTECTION
========================================================== */

.cancellation-policy-protection {
    display: flex;
    align-items: flex-start;

    gap: 13px;

    padding: 18px;

    border-radius: 16px;

    background: var(--hmh-aqua);
}


.cancellation-policy-protection__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    border-radius: 10px;

    background: #fff;

    color: var(--hmh-teal);

    font-size: 13px;
}


.cancellation-policy-protection h3 {
    margin: 0;

    color: #424141;

    font-size: 15px;
    font-weight: 800;

    line-height: 1.4;
}


.cancellation-policy-protection p {
    margin: 6px 0 0;

    color: #424141;

    font-size: 12px;
    font-weight: 500;

    line-height: 1.65;

    opacity: 0.78;
}


/* ==========================================================
   IMPORTANT LIST
========================================================== */

.cancellation-policy-list {
    margin: 0;

    padding-left: 20px;

    color: #424141;

    font-size: 12px;
    font-weight: 500;

    line-height: 1.7;
}


.cancellation-policy-list li {
    padding-left: 2px;
}


.cancellation-policy-list li::marker {
    color: var(--hmh-teal);
}


.cancellation-policy-list li + li {
    margin-top: 7px;
}


/* ==========================================================
   FOOTER
========================================================== */

.cancellation-policy-modal__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 17px 26px;

    border-top: 1px solid #e8eceb;

    background: #fff;
}


/* ==========================================================
   FULL POLICY LINK
========================================================== */

.cancellation-policy-modal__full-policy {
    color: var(--hmh-teal) !important;

    font-family: 'Nunito', sans-serif;

    font-size: 12px;
    font-weight: 800;

    text-decoration: none !important;

    border-bottom:
        1px solid rgba(0, 174, 157, 0.38);

    padding-bottom: 2px;
}


/* ==========================================================
   GOT IT BUTTON
========================================================== */

.cancellation-policy-modal__done {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 94px;
    min-height: 43px;

    padding: 0 19px;

    border: 0 !important;
    border-radius: 12px;

    background: #424141 !important;

    color: #fff !important;

    font-family: 'Nunito', sans-serif;

    font-size: 12px;
    font-weight: 800;

    line-height: 1;

    cursor: pointer;

    box-shadow: none !important;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 767.98px) {

    .cancellation-policy-modal .modal-dialog {
        width: calc(100% - 22px);
    }


    .cancellation-policy-modal__header {
        padding: 21px 20px 17px;
    }


    .cancellation-policy-modal__title {
        font-size: 24px !important;
    }


    .cancellation-policy-modal__body {
        padding: 0 20px !important;
    }


    .cancellation-policy-modal__footer {
        padding: 15px 20px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 575.98px) {

    .cancellation-policy-modal .modal-dialog {
        width: calc(100% - 16px);

        margin: 8px auto;
    }


    .cancellation-policy-modal .modal-content {
        max-height: calc(100dvh - 16px);

        border-radius: 18px !important;
    }


    .cancellation-policy-modal__header {
        gap: 14px;

        padding: 18px 16px 15px;
    }


    .cancellation-policy-modal__title {
        font-size: 21px !important;
    }


    .cancellation-policy-modal__badges {
        gap: 6px;

        margin-top: 10px;
    }


    .cancellation-policy-badge {
        min-height: 28px;

        padding: 0 9px;

        font-size: 9px;
    }


    .cancellation-policy-modal__close {
        width: 36px;
        height: 36px;

        flex-basis: 36px;

        font-size: 12px;
    }


    .cancellation-policy-modal__body {
        padding: 0 16px !important;
    }


    .cancellation-policy-block {
        padding: 18px 0;
    }


    .cancellation-policy-highlight,
    .cancellation-policy-protection {
        gap: 10px;

        padding: 14px;

        border-radius: 13px;
    }


    .cancellation-policy-highlight__icon,
    .cancellation-policy-protection__icon {
        width: 34px;
        height: 34px;

        flex-basis: 34px;

        font-size: 11px;
    }


    .cancellation-policy-highlight h3,
    .cancellation-policy-protection h3 {
        font-size: 14px;
    }


    .cancellation-policy-highlight p,
    .cancellation-policy-protection p,
    .cancellation-policy-block__text {
        font-size: 11px;
    }


    .cancellation-policy-modal__footer {
        padding: 13px 16px;
    }


    .cancellation-policy-modal__done {
        min-width: 82px;
        min-height: 40px;
    }

}

/* ==========================================================
   24 HOUR GRACE CARD
========================================================== */

.policy-grace-card {
    margin: 24px 0 8px;
    padding: 22px 24px;

    border-radius: 18px;

    background: rgba(204, 235, 163, 0.55);
}


.policy-grace-card h3 {
    margin: 0;

    color: #424141;

    font-size: 16px;
    font-weight: 800;

    line-height: 1.4;
}


.policy-grace-card p {
    margin: 7px 0 0;

    color: #424141;

    font-size: 13px;
    font-weight: 500;

    line-height: 1.7;
}


/* ==========================================================
   REFUND TABLE
========================================================== */

.policy-refund-table {
    width: 100%;
}


.policy-refund-table__header,
.policy-refund-table__row {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    gap: 20px;

    align-items: center;
}


.policy-refund-table__header {
    padding: 0 0 10px;

    color: #424141;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.06em;

    text-transform: uppercase;

    opacity: 0.5;
}


.policy-refund-table__header span:last-child {
    text-align: right;
}


.policy-refund-table__row {
    min-height: 58px;

    padding: 10px 0;

    border-top: 1px solid #e5e9e8;

    color: #424141;

    font-size: 13px;
    font-weight: 500;
}


.policy-refund-table__row--active {
    padding-right: 14px;
    padding-left: 14px;

    border-radius: 10px;

    background: rgba(214, 237, 234, 0.72);
}


.policy-refund-table__window {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 9px;
}


.policy-refund-table__current {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 26px;

    padding: 0 9px;

    border: 1px solid rgba(0, 174, 157, 0.4);
    border-radius: 8px;

    background: #fff;

    color: var(--hmh-teal);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.05em;

    text-transform: uppercase;
}


.policy-refund-table__refund {
    color: #424141;

    font-size: 15px;
    font-weight: 800;

    white-space: nowrap;
}


.policy-refund-table__row--active
.policy-refund-table__refund {
    color: var(--hmh-teal);
}


.policy-refund-table__refund--none {
    color: #999;
}


.policy-refund-note {
    margin: 18px 0 0;

    color: #424141;

    font-size: 12px;
    font-weight: 500;

    line-height: 1.7;
}


/* ==========================================================
   HEALTHMATE / LIFED PROTECTION
========================================================== */

.policy-protection-card {
    padding: 20px 22px;

    border-radius: 17px;

    background: var(--hmh-aqua);
}


.policy-protection-card h3 {
    margin: 0;

    color: #424141;

    font-size: 16px;
    font-weight: 800;

    line-height: 1.4;
}


.policy-protection-card p {
    margin: 8px 0 0;

    color: #424141;

    font-size: 13px;
    font-weight: 500;

    line-height: 1.7;
}


.policy-protection-card p + p {
    margin-top: 12px;
}


/* ==========================================================
   BODY TEXT STRONG
========================================================== */

.cancellation-policy-block__text strong,
.policy-protection-card strong {
    color: #424141;

    font-weight: 800;
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 575.98px) {

    .policy-grace-card {
        margin-top: 18px;

        padding: 17px;

        border-radius: 14px;
    }


    .policy-grace-card h3 {
        font-size: 14px;
    }


    .policy-grace-card p {
        font-size: 11px;
    }


    .policy-refund-table__header,
    .policy-refund-table__row {
        gap: 10px;
    }


    .policy-refund-table__row {
        min-height: 52px;

        font-size: 11px;
    }


    .policy-refund-table__refund {
        font-size: 13px;
    }


    .policy-refund-table__current {
        min-height: 23px;

        font-size: 8px;
    }


    .policy-refund-note {
        font-size: 10px;
    }


    .policy-protection-card {
        padding: 16px;

        border-radius: 14px;
    }


    .policy-protection-card h3 {
        font-size: 14px;
    }


    .policy-protection-card p {
        font-size: 11px;
    }

}

.hm-link {
    border: 0;
    cursor: pointer;
}

/* ==========================================================
   HEALTHMATE PROFILE MODAL
========================================================== */

.healthmate-profile-modal {
    font-family: 'Nunito', sans-serif;
}



/* ==========================================================
   HEADER
========================================================== */

.healthmate-profile-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 22px 24px;

    border-bottom: 1px solid var(--hmh-aqua);

    background: #fff;
}


.healthmate-profile-modal__eyebrow {
    margin-bottom: 4px;

    color: var(--hmh-teal);

    font-size: 10px;
    font-weight: 800;

    line-height: 1.3;

    letter-spacing: 0.09em;

    text-transform: uppercase;
}


.healthmate-profile-modal__title {
    margin: 0;

    color: #424141;

    font-size: 23px;
    font-weight: 800;

    line-height: 1.25;
}


/* ==========================================================
   CLOSE
========================================================== */

.healthmate-profile-modal__close {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #f4f4f4;

    color: #424141;

    font-size: 13px;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}


.healthmate-profile-modal__close:hover {
    background: var(--hmh-aqua);

    color: var(--hmh-teal);
}


/* ==========================================================
   BODY
========================================================== */

.healthmate-profile-modal__body {
    padding: 24px;

    background: #fff;
}


/* ==========================================================
   PROFILE HERO
========================================================== */

.healthmate-profile-hero {
    display: grid;

    grid-template-columns:
        150px
        minmax(0, 1fr);

    gap: 24px;

    align-items: center;
}


/* ==========================================================
   PROFILE PHOTO
========================================================== */

.healthmate-profile-hero__media {
    width: 150px;
    height: 150px;
}


.healthmate-profile-hero__photo,
.healthmate-profile-hero__placeholder {
    display: block;

    width: 100%;
    height: 100%;

    border-radius: 18px;
}


.healthmate-profile-hero__photo {
    object-fit: cover;
    object-position: center;
}


.healthmate-profile-hero__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--hmh-aqua);

    color: var(--hmh-teal);

    font-size: 30px;
    font-weight: 800;
}


/* ==========================================================
   PROFILE TYPE
========================================================== */

.healthmate-profile-hero__type {
    margin-bottom: 5px;

    color: var(--hmh-teal);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.07em;

    text-transform: uppercase;
}


/* ==========================================================
   NAME
========================================================== */

.healthmate-profile-hero__name {
    margin: 0;

    color: #424141;

    font-size: 25px;
    font-weight: 800;

    line-height: 1.2;

    letter-spacing: -0.025em;
}


/* ==========================================================
   VERIFIED
========================================================== */

.healthmate-profile-hero__verified {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    margin-top: 8px;

    color: var(--hmh-teal);

    font-size: 12px;
    font-weight: 800;
}


.healthmate-profile-hero__verified i {
    font-size: 11px;
}


/* ==========================================================
   META
========================================================== */

.healthmate-profile-hero__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 9px;

    margin-top: 11px;
}


.healthmate-profile-hero__rating,
.healthmate-profile-hero__location {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    color: #424141;

    font-size: 11px;
    font-weight: 700;
}


.healthmate-profile-hero__rating i,
.healthmate-profile-hero__location i {
    color: var(--hmh-teal);

    font-size: 10px;
}


.healthmate-profile-hero__rating span {
    opacity: 0.66;
}


.healthmate-profile-hero__dot {
    width: 4px;
    height: 4px;

    flex: 0 0 4px;

    border-radius: 50%;

    background: var(--hmh-teal);
}


/* ==========================================================
   QUICK FACTS
========================================================== */

.healthmate-profile-facts {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;

    margin-top: 24px;
}


.healthmate-profile-fact {
    display: flex;
    align-items: center;

    gap: 12px;

    min-width: 0;

    padding: 14px 15px;

    border-radius: 13px;

    background: var(--hmh-aqua);
}


.healthmate-profile-fact__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    border-radius: 10px;

    background: #fff;

    color: var(--hmh-teal);

    font-size: 12px;
}


.healthmate-profile-fact__label {
    color: #424141;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.06em;

    text-transform: uppercase;

    opacity: 0.6;
}


.healthmate-profile-fact__value {
    margin-top: 2px;

    color: #424141;

    font-size: 13px;
    font-weight: 800;
}


/* ==========================================================
   PROFILE SECTIONS
========================================================== */

.healthmate-profile-section {
    margin-top: 26px;
    padding-top: 24px;

    border-top: 1px solid var(--hmh-aqua);
}


.healthmate-profile-section__eyebrow {
    margin-bottom: 4px;

    color: var(--hmh-teal);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.09em;

    text-transform: uppercase;
}


.healthmate-profile-section__title {
    margin: 0;

    color: #424141;

    font-size: 17px;
    font-weight: 800;

    line-height: 1.35;
}


.healthmate-profile-section__text {
    margin-top: 10px;

    color: #424141;

    font-size: 13px;
    font-weight: 500;

    line-height: 1.75;

    opacity: 0.78;
}


/* ==========================================================
   EXPERTISE
========================================================== */

.healthmate-profile-expertise {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 8px;

    margin-top: 14px;
}


.healthmate-profile-expertise__item {
    display: flex;
    align-items: center;

    gap: 9px;

    min-width: 0;

    padding: 10px 12px;

    border-radius: 10px;

    background: var(--hmh-aqua);

    color: #424141;

    font-size: 11px;
    font-weight: 700;
}


.healthmate-profile-expertise__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    flex: 0 0 22px;

    border-radius: 50%;

    background: #fff;

    color: var(--hmh-teal);

    font-size: 8px;
}


/* ==========================================================
   LOCATION
========================================================== */

.healthmate-profile-location {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 24px;
    padding: 15px;

    border-radius: 13px;

    background: #f7f9f9;
}


.healthmate-profile-location__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    border-radius: 10px;

    background: var(--hmh-aqua);

    color: var(--hmh-teal);

    font-size: 12px;
}


.healthmate-profile-location__label {
    color: var(--hmh-teal);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.07em;

    text-transform: uppercase;
}


.healthmate-profile-location__value {
    margin-top: 2px;

    color: #424141;

    font-size: 13px;
    font-weight: 800;
}


/* ==========================================================
   FOOTER
========================================================== */

.healthmate-profile-modal__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    padding: 16px 24px;

    border-top: 1px solid var(--hmh-aqua);

    background: #fff;
}


.healthmate-profile-modal__website {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--hmh-teal);

    font-size: 12px;
    font-weight: 800;

    text-decoration: none;
}


.healthmate-profile-modal__website:hover {
    color: var(--hmh-teal-deep);
}


.healthmate-profile-modal__done {
    min-width: 88px;
    min-height: 42px;

    padding: 0 18px;

    border: 0;
    border-radius: 11px;

    background: #424141;

    color: #fff;

    font-family: 'Nunito', sans-serif;

    font-size: 13px;
    font-weight: 800;

    cursor: pointer;
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767.98px) {

    .healthmate-profile-modal .modal-dialog {
        width: calc(100% - 16px);
        margin: 8px auto;
    }

    .healthmate-profile-modal .modal-content {
        max-height: calc(100vh - 16px);
        border-radius: 16px;
    }

    .healthmate-profile-modal__header {
        padding: 17px;
    }


    .healthmate-profile-modal__title {
        font-size: 19px;
    }


    .healthmate-profile-modal__body {
        padding: 17px;
    }


    .healthmate-profile-hero {
        grid-template-columns:
            92px
            minmax(0, 1fr);

        gap: 15px;
    }


    .healthmate-profile-hero__media {
        width: 92px;
        height: 92px;
    }


    .healthmate-profile-hero__photo,
    .healthmate-profile-hero__placeholder {
        border-radius: 14px;
    }


    .healthmate-profile-hero__placeholder {
        font-size: 20px;
    }


    .healthmate-profile-hero__name {
        font-size: 18px;
    }


    .healthmate-profile-hero__verified {
        font-size: 10px;
    }


    .healthmate-profile-hero__meta {
        align-items: flex-start;
        flex-direction: column;

        gap: 5px;
    }


    .healthmate-profile-hero__dot {
        display: none;
    }


    .healthmate-profile-facts {
        grid-template-columns: 1fr;

        margin-top: 18px;
    }


    .healthmate-profile-section {
        margin-top: 21px;
        padding-top: 20px;
    }


    .healthmate-profile-section__title {
        font-size: 15px;
    }


    .healthmate-profile-section__text {
        font-size: 12px;
    }


    .healthmate-profile-expertise {
        grid-template-columns: 1fr;
    }


    .healthmate-profile-modal__footer {
        padding: 14px 17px;
    }

}

/* ==========================================================
   HEALTHMATE PROFILE DIALOG
   NATIVE TOP-LAYER MODAL
========================================================== */

.healthmate-profile-dialog {
    width: min(
        920px,
        calc(100% - 32px)
    );

    max-width: 920px;

    height: auto;
    max-height: calc(100dvh - 32px);

    margin: auto;
    padding: 0;

    overflow: hidden;

    border: 0;
    border-radius: 18px;

    background: #fff;

    color: #424141;

    font-family: 'Nunito', sans-serif;

    box-shadow:
        0 28px 80px
        rgba(0, 0, 0, 0.22);
}


/* ==========================================================
   IMPORTANT
   Browser top-layer backdrop
========================================================== */

.healthmate-profile-dialog::backdrop {
    background:
        rgba(23, 29, 29, 0.68);

    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}


/* Safari / browser reset */

.healthmate-profile-dialog:not([open]) {
    display: none;
}


/* ==========================================================
   SHELL
========================================================== */

.healthmate-profile-dialog__shell {
    display: flex;
    flex-direction: column;

    width: 100%;

    max-height: calc(100dvh - 32px);

    min-height: 0;

    overflow: hidden;

    background: #fff;
}


/* ==========================================================
   HEADER
========================================================== */

.healthmate-profile-dialog
.healthmate-profile-modal__header {
    flex: 0 0 auto;

    position: relative;

    z-index: 2;

    padding: 22px 24px;

    border-bottom: 1px solid var(--hmh-aqua);

    background: #fff;
}


/* ==========================================================
   SCROLLABLE BODY
========================================================== */

.healthmate-profile-dialog
.healthmate-profile-modal__body {
    flex: 1 1 auto;

    min-height: 0;

    padding: 24px;

    overflow-x: hidden;
    overflow-y: auto;

    background: #fff;

    overscroll-behavior: contain;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: thin;

    scrollbar-color:
        rgba(66, 65, 65, 0.30)
        transparent;
}


.healthmate-profile-dialog
.healthmate-profile-modal__body::-webkit-scrollbar {
    width: 6px;
}


.healthmate-profile-dialog
.healthmate-profile-modal__body::-webkit-scrollbar-track {
    background: transparent;
}


.healthmate-profile-dialog
.healthmate-profile-modal__body::-webkit-scrollbar-thumb {
    border-radius: 999px;

    background:
        rgba(66, 65, 65, 0.30);
}


/* ==========================================================
   FOOTER
========================================================== */

.healthmate-profile-dialog
.healthmate-profile-modal__footer {
    flex: 0 0 auto;

    position: relative;

    z-index: 2;

    padding: 16px 24px;

    border-top: 1px solid var(--hmh-aqua);

    background: #fff;
}


/* ==========================================================
   DIALOG OPEN ANIMATION
========================================================== */

.healthmate-profile-dialog[open] {
    animation:
        healthmateDialogIn
        0.22s ease-out;
}


@keyframes healthmateDialogIn {

    from {
        opacity: 0;

        transform:
            translateY(10px)
            scale(0.985);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 991.98px) {

    .healthmate-profile-dialog {
        width: calc(100% - 24px);

        max-height:
            calc(100dvh - 24px);
    }


    .healthmate-profile-dialog__shell {
        max-height:
            calc(100dvh - 24px);
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767.98px) {

    .healthmate-profile-dialog {
        width: calc(100% - 16px);

        max-height:
            calc(100dvh - 16px);

        border-radius: 15px;
    }


    .healthmate-profile-dialog__shell {
        max-height:
            calc(100dvh - 16px);
    }


    .healthmate-profile-dialog
    .healthmate-profile-modal__header {
        padding: 17px;
    }


    .healthmate-profile-dialog
    .healthmate-profile-modal__body {
        padding: 17px;
    }


    .healthmate-profile-dialog
    .healthmate-profile-modal__footer {
        padding: 14px 17px;
    }

}

/* ==========================================================
   ACCOMMODATION SECTION
========================================================== */

.accommodation-section {
    position: relative;
}


/* ==========================================================
   DESCRIPTION
========================================================== */

.accommodation-section__description {
    max-width: 780px;

    margin-top: 14px;

    color: #424141;

    font-family: 'Nunito', sans-serif;

    font-size: 14px;
    font-weight: 500;

    line-height: 1.65;

    opacity: 0.80;
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767.98px) {

    .accommodation-section__description {
        margin-top: 12px;

        font-size: 12px;

        line-height: 1.65;
    }

}