.shs-hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
}

.shs-content-area-dark { margin-bottom: 0px !important; }

.shs-hero-section::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 45%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        0deg,
        #00040A                    0%,
        rgba(0, 4, 10, 0.987)      5%,
        rgba(0, 4, 10, 0.951)     10%,
        rgba(0, 4, 10, 0.896)     16%,
        rgba(0, 4, 10, 0.825)     23%,
        rgba(0, 4, 10, 0.741)     30%,
        rgba(0, 4, 10, 0.648)     38%,
        rgba(0, 4, 10, 0.55)      46%,
        rgba(0, 4, 10, 0.45)      54%,
        rgba(0, 4, 10, 0.352)     62%,
        rgba(0, 4, 10, 0.25)      70%,
        rgba(0, 4, 10, 0.15)      78%,
        rgba(0, 4, 10, 0.07)      87%,
        rgba(0, 4, 10, 0.02)      94%,
        rgba(0, 4, 10, 0)        100%
    );
}

.shs-video-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background-color: #000;
}

.shs-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    will-change: transform;
}

.shs-hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding-left: 5% !important;
    padding: 3rem;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.shs-hero-text-container {
    max-width: 100%;
    width: 100%;
    padding-left: 0px !important;
}

.shs-hero-left-col {
    flex-shrink: 0;
    margin-right: 2rem;
}

.shs-hero-right-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 80vh;
}

.shs-hero-right-col--bottom {
    justify-content: flex-end;
    gap: 1.25rem;
}

.shs-v-line-container.shs-with-text {
    position: relative;
    width: 20px;
    overflow: visible;
    height: 80vh;
    display: flex;
    flex-direction: column;
}

.shs-v-line-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    color: white;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    padding-bottom: 1rem;
    white-space: nowrap;
}

.shs-v-line-text span { display: inline-block; }

.shs-v-line {
    width: 4px;
    flex: 1;
    background-color: white;
    margin: 0 auto;
    margin-top: 10px;
    animation: shsLineGrow 1s ease forwards;
}

@keyframes shsLineGrow {
    from { transform: scaleY(0); transform-origin: top; }
    to   { transform: scaleY(1); transform-origin: top; }
}

.shs-hero-right-col .shs-big-heading {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    margin-top: 0;
    color: white;
}

.shs-hero-right-col--bottom .shs-big-heading {
    margin-bottom: 0;
}

.shs-hero-right-col .shs-intro-text {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 100%;
    text-align: left;
    color: white;
}

.shs-no-image-section {
    width: 100%;
    padding: 4rem 2rem;
    margin-bottom: var(--sso-mb, 2rem);
    background-color: #ffffff;
}

.shs-no-image-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.shs-no-image-subtitle {
    color: #00040A;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin-top: 0;
    margin-bottom: .5rem;
    line-height: 1.2;
}

.shs-no-image-title {
    color: #00040A;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: .5rem !important;
    margin-top: 0;
    margin-bottom: .5rem;
    line-height: 1.2;
}

.shs-no-image-description {
    color: #00040A;
    font-weight: 400;
    text-align: center;
    font-size: 16px;
    max-width: 1320px;
}

.content-area-splits {
    position: relative;
    overflow: hidden;
}

.shs-video-mute-btn {
    position: absolute;
    bottom: 24px;
    right: 24px;
    z-index: 3;
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: rgba(0, 0, 0, 0.45);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    transition: background 200ms ease, border-color 200ms ease, opacity 200ms ease;
    -webkit-tap-highlight-color: transparent;
}

.shs-video-mute-btn--visible { display: flex; }

.shs-video-mute-btn:hover {
    background: rgba(0, 0, 0, 0.70);
    border-color: rgba(255, 255, 255, 0.70);
}

.shs-video-mute-btn:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.shs-video-mute-btn .shs-icon--sound  { display: none; }
.shs-video-mute-btn .shs-icon--muted  { display: block; }
.shs-video-mute-btn[aria-pressed="false"] .shs-icon--sound { display: block; }
.shs-video-mute-btn[aria-pressed="false"] .shs-icon--muted { display: none; }

/* ═══════════════════════════════════════════════════════
   MOBILE IMAGE HERO  — untouched
   ═══════════════════════════════════════════════════════ */

.shs-mobile-hero {
    display: flex;
    flex-direction: column;
    background-color: #00040A;
    margin-bottom: var(--sso-mb, 2rem);
    position: relative;
}

.shs-mobile-hero__image-wrap {
    position: relative;
    width: 100%;
    flex-shrink: 0;
    line-height: 0;
    z-index: 1;
}

.shs-mobile-hero__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.shs-mobile-hero__gradient {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 50%;
    pointer-events: none;
    background: linear-gradient(
        0deg,
        #00040A                    0%,
        rgba(0, 4, 10, 0.95)       8%,
        rgba(0, 4, 10, 0.85)      20%,
        rgba(0, 4, 10, 0.60)      45%,
        rgba(0, 4, 10, 0.20)      75%,
        rgba(0, 4, 10, 0)        100%
    );
}

.shs-mobile-hero__heading-overlay {
    position: absolute;
    top: 1.5rem;
    left: 3.5rem;
    right: 1rem;
    z-index: 2;
}

.shs-mobile-hero__heading-overlay .shs-mobile-hero__heading {
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    text-wrap: balance;
}

.shs-mobile-hero__left {
    position: absolute;
    top: 0;
    left: 1rem;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
}

.shs-mobile-hero__v-line-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    color: white;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    padding-bottom: 0.75rem;
    padding-top: 0.75rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.shs-mobile-hero__v-line {
    width: 4px;
    flex: 1;
    min-height: 20px;
    background-color: white;
    margin: 0 auto;
    animation: shsLineGrow 1s ease forwards;
}

.shs-mobile-hero__panel {
    padding: 1.5rem 1rem 2rem 3.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.shs-mobile-hero__right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.shs-mobile-hero__heading {
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
}

.shs-mobile-hero__text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════
   DESKTOP / TABLET — new below-image text panel layout
   ═══════════════════════════════════════════════════════ */

.shs-dt-hero {
    position: relative;
    background-color: #00040A;
    margin-bottom: var(--sso-mb, 2rem);
}

.shs-dt-hero__image-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    height: 80svh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.shs-dt-hero__image-section::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 45%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        0deg,
        #00040A                    0%,
        rgba(0, 4, 10, 0.987)      5%,
        rgba(0, 4, 10, 0.951)     10%,
        rgba(0, 4, 10, 0.896)     16%,
        rgba(0, 4, 10, 0.825)     23%,
        rgba(0, 4, 10, 0.741)     30%,
        rgba(0, 4, 10, 0.648)     38%,
        rgba(0, 4, 10, 0.55)      46%,
        rgba(0, 4, 10, 0.45)      54%,
        rgba(0, 4, 10, 0.352)     62%,
        rgba(0, 4, 10, 0.25)      70%,
        rgba(0, 4, 10, 0.15)      78%,
        rgba(0, 4, 10, 0.07)      87%,
        rgba(0, 4, 10, 0.02)      94%,
        rgba(0, 4, 10, 0)        100%
    );
}

.shs-dt-hero__heading-overlay {
    position: absolute;
    top: 2rem;
    left: 5rem;
    right: 2rem;
    z-index: 2;
}

.shs-dt-hero__heading-overlay .shs-dt-hero__heading {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    text-wrap: balance;
}

.shs-dt-hero__left {
    position: absolute;
    top: 0;
    left: 1.5rem;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    padding-block: 1.5rem;
}

.shs-dt-hero__v-line-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    color: white;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    padding-bottom: 1rem;
    padding-top: 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.shs-dt-hero__v-line {
    width: 4px;
    flex: 1;
    min-height: 40px;
    background-color: white;
    margin: 0 auto;
    animation: shsLineGrow 1s ease forwards;
}

.shs-dt-hero__panel {
    padding: 0 2rem 2.5rem 5rem;
    display: flex;
    align-items: flex-start;
}

.shs-dt-hero__right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.shs-dt-hero__heading {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
}

.shs-dt-hero__text {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    max-width: 100% !important;
}

@media (max-width: 1000px) {
    .shs-dt-hero__heading-overlay .shs-dt-hero__heading,
    .shs-dt-hero__heading { font-size: 2.5rem; }
    .shs-dt-hero__panel   { padding: 0 1.5rem 2rem 4.5rem; }
    .shs-dt-hero__left    { left: 1rem; }
    .shs-dt-hero__heading-overlay { left: 4rem; }
}

@media (max-width: 640px) {
    .shs-hero-desktop-only { display: none !important; }
    .shs-hero-mobile-only  { display: block !important; }
     .shs-mobile-hero__v-line { width: 1px !important; }
}

@media (min-width: 641px) {
    .shs-hero-mobile-only  { display: none !important; }
    .shs-hero-desktop-only { display: block !important; }
}


@media (prefers-reduced-motion: reduce) {
    .shs-video-bg { animation: none !important; }
    .shs-v-line,
    .shs-dt-hero__v-line,
    .shs-mobile-hero__v-line { animation: none !important; transform: scaleY(1) !important; }
}
