/* ==========================================================================
   MHERO English Homepage
   Scoped under .mh2- prefix to avoid collisions with legacy CSS.
   ========================================================================== */

:root {
    --mh2-black: #171e21;
    --mh2-black-2: #161e21;
    --mh2-border: #3b4954;
    --mh2-teal: #174d56;
    --mh2-teal-2: #376e74;
    --mh2-light: #bee1d6;
    --mh2-green: #8fb5a6;
    --mh2-grey: #eaeaeb;
    --mh2-white: #ffffff;
    --mh2-max: 1296px;
}

.mh2-page * {
    box-sizing: border-box;
}

.mh2-page {
    background: var(--mh2-black);
    color: var(--mh2-white);
    font-family: Figtree, sans-serif;
    overflow-x: hidden;
}

/* Header — transparent over hero, solid on scroll ----------------------- */
.mh2-page .header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: transparent;
    transition: background-color .35s ease;
    cursor: auto;
}

.mh2-page .header.is-scrolled,
.mh2-page .header.has-nav-open,
.mh2-page .header.transparent.has-nav-open,
.mh2-page .header.transparent:has(.mh-dropdown.is-open) {
    background-color: var(--mh2-black-2) !important;
}

.mh2-page .header.has-nav-open .mh-dropdown__list,
.mh2-page .header.transparent:has(.mh-dropdown.is-open) .mh-dropdown__list {
    background-color: var(--mh2-black-2);
}

/* Nav dropdown — panel above hero; JS .is-open only (no :hover fight). */
.mh2-page .mh-dropdown__list {
    z-index: 1001;
    background-color: var(--mh2-black-2);
}

.mh2-page .mh-dropdown.is-open > .mh-dropdown__list,
.mh2-page .mh-dropdown.is-open .header-bottom.dark,
.mh2-page .header.transparent .mh-dropdown.is-open > .mh-dropdown__list,
.mh2-page .header.transparent .mh-dropdown.is-open .header-bottom.dark {
    background-color: var(--mh2-black-2) !important;
}

.mh2-page .mh-dropdown__list::before {
    top: -48px;
    height: 48px;
}

.mh2-page .mh-dropdown:hover > .mh-dropdown__list {
    display: none;
    opacity: 0;
}

.mh2-page .mh-dropdown:hover .mh-chevron {
    transform: none;
}

.mh2-page .mh-dropdown.is-open > .mh-dropdown__list {
    display: block;
    opacity: 1;
}

.mh2-page .mh-dropdown.is-open .mh-chevron {
    transform: rotate(180deg);
}

/* Normal system cursor in header + mobile nav (not custom hero cursor). */
.mh2-page .header,
.mh2-page .nav-mobile-wrap {
    cursor: auto;
}

.mh2-page .header *,
.mh2-page .nav-mobile-wrap * {
    cursor: inherit;
}

.mh2-page .header a,
.mh2-page .header button,
.mh2-page .header .mh-dropdown__toggle,
.mh2-page .header .burger,
.mh2-page .header .w-dropdown-toggle,
.mh2-page .header .nav-link,
.mh2-page .header .nav-grid-item,
.mh2-page .header .read-more-link,
.mh2-page .header .logo-wrap,
.mh2-page .header .button-quarternary,
.mh2-page .header .button-tertiary,
.mh2-page .header .language,
.mh2-page .nav-mobile-wrap a,
.mh2-page .nav-mobile-wrap .nav-dropdown-wrap,
.mh2-page .nav-mobile-wrap .close-menu,
.mh2-page .nav-mobile-wrap .close-lv2 {
    cursor: pointer;
}

.mh2-page .cursor.is-mh2-cursor-off,
.mh2-page:has(.header:hover) .cursor,
.mh2-page:has(.header .mh-dropdown.is-open) .cursor,
.mh2-page:has(.header:focus-within) .cursor,
.mh2-page:has(.nav-mobile-wrap:hover) .cursor {
    opacity: 0 !important;
}

.mh2-page img {
    max-width: 100%;
    display: block;
}

/* The homepage image reset is more specific than the shared header logo rules. */
.mh2-page .header .logo-mobile {
    display: none;
}

@media (max-width: 767px) {
    .mh2-page .header .logo-desktop {
        display: none;
    }

    .mh2-page .header .logo-mobile {
        display: block;
    }
}

/* Header images: keep natural widths so the nav row is not squeezed. */
.mh2-page .header img {
    max-width: none;
}

.mh2-shell {
    width: 100%;
    max-width: var(--mh2-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons ---------------------------------------------------------------- */
.mh2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    padding: 13px 16px 12px 16px;
    font-family: Figtree, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    border: 1px solid var(--mh2-white);
    color: var(--mh2-white);
    background: transparent;
    cursor: pointer;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

.mh2-btn:hover {
    background: var(--mh2-white);
    color: var(--mh2-black);
}

.mh2-btn--green {
    background: var(--mh2-green);
    border-color: var(--mh2-green);
}

.mh2-btn--green:hover {
    background: #7ba593;
    border-color: #7ba593;
    color: var(--mh2-white);
}

.mh2-btn--light {
    border-color: var(--mh2-light);
    color: var(--mh2-light);
}

.mh2-btn--light:hover {
    background: var(--mh2-light);
    color: var(--mh2-black);
}

.mh2-btn--dark {
    border-color: var(--mh2-black);
    color: var(--mh2-black);
}

.mh2-btn--dark:hover {
    background: var(--mh2-black);
    color: var(--mh2-white);
}

/* ==========================================================================
   Hero (framed carousel component)
   ========================================================================== */
.mh2-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--mh2-black);
    margin-top: -98px;
    height: 100svh;
    min-height: 100svh;
    max-height: 100svh;
}

.mh2-models {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100svh;
    min-height: 100svh;
    max-height: 100svh;
}

.mhero-framed-carousel--hero {
    width: 100%;
    height: 100%;
}

.mhero-framed-carousel--hero .mhero-framed-carousel__slider.framed-slider.w-slider,
.mhero-framed-carousel--hero .mhero-framed-carousel__mask {
    height: 100% !important;
}

.mhero-framed-carousel--hero .mhero-framed-carousel__slide.framed-slider-slide.w-slide {
    aspect-ratio: unset;
    height: 100%;
    min-height: 100%;
}

.mhero-framed-carousel--hero .mh2-hero__slide-inner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.mhero-framed-carousel--hero .mhero-framed-carousel__mask {
    background-color: var(--mh2-black);
}
.mh2-model .mhero-framed-carousel--hero .mhero-framed-carousel__mask {
    
}

/* Invisible L/R hit zones — full hero height (default padding-bottom trick only covers ~half height at 50% width). */
.mhero-framed-carousel--hero .mhero-framed-carousel__slider,
.mhero-framed-carousel--hero .mhero-framed-carousel__mask {
    cursor: none;
}

.mhero-framed-carousel--hero .mhero-framed-carousel__slider .slider-arrow-left,
.mhero-framed-carousel--hero .mhero-framed-carousel__slider .slider-arrow-right {
    top: 0;
    bottom: 0;
    height: 100% !important;
    padding-bottom: 0 !important;
    margin: 0;
    opacity: 0;
    color: transparent;
    font-size: 0;
    cursor: none;
    z-index: 3;
    pointer-events: none;
}

.mhero-framed-carousel--hero .mhero-framed-carousel__slider .slider-arrow-left {
    left: 0;
    right: auto;
    width: 50%;
}

.mhero-framed-carousel--hero .mhero-framed-carousel__slider .slider-arrow-right {
    left: auto;
    right: 0;
    width: 50%;
}

.mhero-framed-carousel--hero .mhero-framed-carousel__slider .slider-arrow-left::before,
.mhero-framed-carousel--hero .mhero-framed-carousel__slider .slider-arrow-right::before,
.mhero-framed-carousel--hero .mhero-framed-carousel__slider .slider-arrow-left [class*="w-icon"],
.mhero-framed-carousel--hero .mhero-framed-carousel__slider .slider-arrow-right [class*="w-icon"] {
    opacity: 0 !important;
    visibility: hidden;
}

.mhero-framed-carousel--hero .mhero-framed-carousel__nav {
    position: absolute !important;
    right: 91px;
    bottom: 66px;
    z-index: 10;
    margin: 0 !important;
    pointer-events: auto;
    cursor: pointer;
}

.mhero-framed-carousel--hero .mhero-framed-carousel__slider .w-slider-dot {
    cursor: pointer;
    pointer-events: auto;
}

.mh2-hero__slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mh2-hero__slide-inner picture {
    display: block;
    width: 100%;
    height: 100%;
}

.mh2-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(23, 30, 33, .75) 0%,
        rgba(23, 30, 33, .15) 45%,
        rgba(23, 30, 33, 0) 65%
    );
    pointer-events: none;
}

.mh2-hero__content {
    position: absolute;
    left: 72px;
    bottom: 74px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 643px;
    pointer-events: auto;
    cursor: default;
}

.mh2-hero__content a {
    cursor: pointer;
    pointer-events: auto;
}

.mh2-hero__title {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--mh2-white);
}

.mh2-hero__desc {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--mh2-white);
}

.mh2-hero__cta {
    width: 184px;
}

.mhero-framed-carousel--hero .mhero-framed-carousel__slider .w-slider-dot {
    cursor: pointer;
    transition: background-color .25s ease, transform .25s ease;
}

.mhero-framed-carousel--hero .mhero-framed-carousel__slider .w-slider-dot:hover {
    transform: scale(1.15);
}

/* Hero custom cursor — direction-aware (beats Webflow inline styles on homepage) */
.mh2-page .cursor.is-mh2-dir-left,
.mh2-page .cursor.is-mh2-dir-right {
    width: 100px !important;
    height: 100px !important;
    opacity: 1 !important;
}

.mh2-page .cursor.is-mh2-dir-left .slider-arrow-icon-left {
    opacity: 1 !important;
}

.mh2-page .cursor.is-mh2-dir-left .slider-arrow-icon-right {
    opacity: 0 !important;
}

.mh2-page .cursor.is-mh2-dir-right .slider-arrow-icon-right {
    opacity: 1 !important;
}

.mh2-page .cursor.is-mh2-dir-right .slider-arrow-icon-left {
    opacity: 0 !important;
}

.mh2-page .cursor.is-mh2-dir-hidden {
    opacity: 0 !important;
}

/* ==========================================================================
   Section primitives
   ========================================================================== */
.mh2-section {
    padding: 90px 0;
}

.mh2-section__title {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
}

/* Tabs ------------------------------------------------------------------- */
.mh2-tabs {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.mh2-tab {
    min-width: 184px;
    padding: 9px 14px 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--mh2-white);
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(23, 77, 86, .5);
    cursor: pointer;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

.mh2-tab.is-active {
    background: #d9d9d9;
    color: #1b1e20;
    border-bottom-color: var(--mh2-teal);
}

/* ==========================================================================
   Showcase — "The best of both worlds, delivered."
   ========================================================================== */
.mh2-showcase {
    background: var(--mh2-black);
    text-align: center;
}

.mh2-showcase__tabs {
    margin: 38px 0;
}

.mh2-showcase__stage {
    position: relative;
    max-width: 1008px;
    margin: 0 auto;
    aspect-ratio: 1008 / 567;
    overflow: hidden;
}

.mh2-showcase__media {
    display: block;
    width: 100%;
    height: 100%;
}

.mh2-showcase__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mh2-showcase__canvas {
    display: block;
    background: var(--mh2-black);
}

.mh2-showcase__poster {
    display: block;
}

.mh2-showcase__media.is-sequence-ready .mh2-showcase__poster {
    display: none;
}

.mh2-showcase__media.is-sequence-failed .mh2-showcase__canvas {
    display: none;
}

.mh2-showcase__media.is-sequence-failed .mh2-showcase__poster {
    display: block;
}

.mh2-showcase__spec {
    display: none;
}

.mh2-showcase__callout {
    --callout-left: 7%;
    --callout-top: 29%;
    --callout-h: 25%;
    --callout-dx: 18%;
    --callout-dy: 48%;
    --callout-diag: 50%;
    --callout-angle: 48deg;
    position: absolute;
    left: var(--callout-left);
    top: var(--callout-top);
    z-index: 3;
    width: 24%;
    min-width: 260px;
    text-align: left;
    color: var(--mh2-white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
    pointer-events: none;
    transition: left .45s ease, top .45s ease;
}

.mh2-showcase__callout-label {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .04em;
    line-height: 1.34;
    text-transform: uppercase;
    transition: opacity .25s ease, transform .25s ease;
}

.mh2-showcase__callout-value {
    font-size: 28px;
    font-weight: 300;
    margin-top: 7px;
    line-height: 1.5;
    transition: opacity .25s ease, transform .25s ease;
}

.mh2-showcase__callout.is-changing .mh2-showcase__callout-label,
.mh2-showcase__callout.is-changing .mh2-showcase__callout-value {
    opacity: .2;
    transform: translateY(4px);
}

.mh2-showcase__callout-line {
    position: absolute;
    left: 0;
    top: 30px;
    width: 100%;
    height: 1px;
    transition: transform .45s ease;
}

.mh2-showcase__callout.is-reversed {
    text-align: right;
}

.mh2-showcase__callout.is-reversed .mh2-showcase__callout-line {
    transform: scaleX(-1);
}

.mh2-showcase__callout-h,
.mh2-showcase__callout-d {
    position: absolute;
    left: 0;
    top: 0;
    height: 1px;
    background: var(--mh2-white);
    transform-origin: left center;
    transition: width .45s ease, transform .45s ease;
}

.mh2-showcase__callout-h {
    width: var(--callout-h);
}

.mh2-showcase__callout-d {
    left: var(--callout-h);
    width: var(--callout-diag);
    transform: rotate(var(--callout-angle));
}

.mh2-showcase__callout-d::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    transform: translate(50%, -50%);
    border-radius: 999px;
    background: var(--mh2-white);
    box-shadow: 0 0 0 1px rgba(23, 30, 33, .18), 0 0 18px rgba(255, 255, 255, .3);
}

.mh2-showcase__callout-dot {
    display: none;
}

.mh2-showcase__spec-tabs {
    margin-top: 40px;
    gap: 33px;
}

.mh2-showcase__spec-tabs .mh2-tab {
    min-width: 0;
    border-bottom-color: rgba(55, 110, 116, .8);
}

/* ==========================================================================
   H.E.R.O. acronym — background image + 4-cell grid at bottom
   ========================================================================== */
.mh2-acronym {
    position: relative;
    background: var(--mh2-black);
    overflow: hidden;
}

.mh2-acronym__media {
    position: relative;
    overflow: hidden;
}

.mh2-acronym__picture {
    display: block;
    width: 105%;
    height: 85vh;
}

.mh2-acronym__bg {
    display: block;
    width: 100%;
    height: auto;
}

.mh2-acronym__overlay {
    display: none;
}

.mh2-acronym__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.mh2-acronym__cell {
    background: var(--mh2-black-2);
    height: 210px;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1.29px solid var(--mh2-teal-2);
}

.mh2-acronym__cell--last {
    border-right: none;
}

.mh2-acronym__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.mh2-acronym__word {
    display: flex;
    align-items: flex-end;
    white-space: nowrap;
}

.mh2-acronym__word b {
    font-size: 60px;
    font-weight: 800;
    line-height: 37px;
}

.mh2-acronym__word span {
    font-size: 35px;
    font-weight: 400;
    line-height: 37px;
}

.mh2-acronym__desc {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--mh2-white);
}

/* ==========================================================================
   Mutawa Alkazi
   ========================================================================== */
.mh2-mobility {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 804px;
    background: var(--mh2-grey);
}

.mh2-mobility__text {
    position: relative;
    padding: 100px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    color: var(--mh2-black);
    overflow: hidden;
}

.mh2-mobility__watermark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 581px;
    height: 707px;
    max-width: none;
    pointer-events: none;
}

.mh2-mobility__text h2 {
    position: relative;
    margin: 0;
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
}

.mh2-mobility__text p {
    position: relative;
    margin: 0;
    max-width: 607px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.mh2-mobility__text .mh2-btn {
    position: relative;
}

.mh2-mobility__media {
    position: relative;
    overflow: hidden;
}

.mh2-mobility__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mh2-mobility__gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(
        180deg,
        rgba(22, 30, 33, .88) 0%,
        rgba(22, 30, 33, .54) 37%,
        rgba(22, 30, 33, .28) 66%,
        rgba(22, 30, 33, 0) 100%
    );
    pointer-events: none;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991px) {
    .mh2-hero__content {
        left: 40px;
        bottom: 56px;
        gap: 20px;
        max-width: 500px;
    }

    .mh2-hero__title {
        font-size: 32px;
    }

    .mh2-mobility {
        grid-template-columns: 1fr;
        height: auto;
    }

    .mh2-mobility__media {
        order: -1;
        min-height: 360px;
    }

    .mh2-mobility__text {
        padding: 21px 24px;
    }

    .mh2-mobility__text h2 {
        font-size: 40px;
    }

    .mh2-mobility__watermark {
        width: 100%;
        height: auto;
    }

    .mh2-acronym__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mh2-acronym__cell:nth-child(2) {
        border-right: none;
    }

    .mh2-acronym__cell {
        height: auto;
        min-height: 160px;
    }
}

@media (max-width: 767px) {
    .mh2-page .header {
        padding: 10px 19px;
    }

    .mh2-page .mh2-hero {
        margin-top: -64px;
        height: 100svh;
        min-height: 100svh;
        max-height: 100svh;
    }

    .mh2-page .logo-desktop {
        display: none;
    }

    .mh2-page .logo-mobile {
        display: block;
        height: 44px;
        width: auto;
    }

    .mh2-shell {
        padding: 0 19px;
    }

    .mh2-section__title {
        font-size: 32px;
        text-align: left;
    }

    .mhero-framed-carousel--hero .mh2-hero__slide-inner {
        overflow: hidden;
    }

    .mhero-framed-carousel--hero .mh2-hero__slide-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        object-fit: cover;
    }

    .mhero-framed-carousel--hero .mh2-hero__slide-inner picture {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .mh2-page .cursor-wrap {
        display: none !important;
    }

    .mh2-page .mhero-framed-carousel--hero .mhero-framed-carousel__slider,
    .mh2-page .mhero-framed-carousel--hero .mhero-framed-carousel__mask,
    .mh2-page .mhero-framed-carousel--hero .mhero-framed-carousel__slider .slider-arrow-left,
    .mh2-page .mhero-framed-carousel--hero .mhero-framed-carousel__slider .slider-arrow-right {
        cursor: auto;
    }

    .mh2-hero__overlay {
        display: none;
    }

    .mh2-hero__content {
        left: 19px;
        right: 19px;
        bottom: 43px;
        gap: 22px;
        max-width: none;
        width: auto;
    }

    .mh2-hero__title {
        max-width: 270px;
        font-size: 32px;
        font-weight: 700;
        line-height: 38.4px;
        text-transform: none;
    }

    .mh2-hero__desc {
        font-size: 16px;
        font-weight: 500;
        line-height: 22.4px;
    }

    .mh2-hero__cta {
        width: 100%;
        height: 44px;
        padding-top: 12px;
        padding-bottom: 12px;
        font-size: 16px;
        line-height: 19.2px;
    }

    .mhero-framed-carousel--hero .mhero-framed-carousel__nav {
        right: 19px;
        bottom: 19px;
        gap: 12px;
    }

    .mhero-framed-carousel--hero .mhero-framed-carousel__slider .w-slider-dot {
        width: 12px !important;
        height: 12px !important;
        flex: 0 0 12px;
    }

    .mh2-mobility__text {
        gap: 21px;
    }

    .mh2-mobility__text h2 {
        font-size: 34px;
        font-weight: 500;
        line-height: 40.8px;
    }

    .mh2-mobility__text p {
        font-size: 16px;
        font-weight: 500;
        line-height: 22.4px;
    }

    .mh2-section {
        padding: 56px 0;
    }

    .mh2-tabs {
        gap: 8px;
    }

    .mh2-tab {
        flex: 1;
        min-width: 0;
    }

    .mh2-showcase__spec-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 8px;
    }

    .mh2-showcase__tabs {
        margin: 21px;
    }

    .mh2-showcase__stage {
        width: 100%;
        max-width: 351px;
        aspect-ratio: 1 / 1;
        margin-left: 0;
        margin-right: auto;
    }

    .mh2-showcase__callout {
        width: 58%;
        min-width: 190px;
        transform: scale(.72);
        transform-origin: left top;
    }

    .mh2-showcase__callout-label {
        font-size: 12px;
    }

    .mh2-showcase__callout-value {
        font-size: 22px;
    }

    .mh2-showcase__callout-line {
        top: 24px;
    }

    .mh2-showcase__spec-tabs .mh2-tab {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .mh2-acronym__media {
        aspect-ratio: 390 / 575;
    }

    .mh2-acronym__picture {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .mh2-acronym__bg {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        object-fit: cover;
    }

    .mh2-acronym__overlay {
        display: block;
        position: absolute;
        inset: 0;
        background: linear-gradient(
            180deg,
            rgba(23, 30, 33, .61) 13.162%,
            rgba(23, 30, 33, 0) 37.778%
        );
        pointer-events: none;
    }

    .mh2-acronym__grid {
        grid-template-columns: 1fr;
        margin-top: -156px;
        z-index: 1;
    }

    .mh2-acronym__cell {
        height: 122px;
        min-height: 122px;
        padding: 16px 32px;
        border-right: none;
        border-bottom: 1.285px solid var(--mh2-teal-2);
        justify-content: flex-start;
        align-items: center;
    }

    .mh2-acronym__cell:nth-child(odd) {
        border-right: none;
    }

    .mh2-acronym__cell--last {
        border-bottom: none;
    }

    .mh2-acronym__inner {
        gap: 10px;
    }

    .mh2-acronym__word b {
        font-size: 50px;
        font-weight: 800;
        line-height: 37px;
    }

    .mh2-acronym__word span {
        font-size: 32px;
        line-height: 37px;
    }

    .mh2-acronym__desc {
        line-height: 28.788px;
    }
}
