/*-----------------------------------------------------------------------------------
Project Name: ESSB | Website: https://essb.in
Author: Dileep Dilraj | Website: https://www.dileepdilraj.com
Description: Elite Soccer School Bangalore - Official Website
Designer & Developer: Dileep Dilraj
Version: 1.0
Last Update: Jan 2026
Copyright: © 2026 Dileep Dilraj. All Rights Reserved.
-----------------------------------------------------------------------------------*/
/* ================= RESET & PERFORMANCE ================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body.no-scroll {
    overflow: hidden;
    height: 100%;
}

.essb-header,
.essb-hp-hero {
    contain: layout style paint;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ================= FONTS ================= */
/* Heading font */
@font-face {
    font-family: "Alterwave";
    src: url("../font/Alterwave-Regular.otf") format("opentype");
    font-weight: 400;
    font-display: swap;
}

/* Body font */
@font-face {
    font-family: "Satoshi";
    src: url("../font/Satoshi-Regular.otf") format("opentype");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi";
    src: url("../font/Satoshi-Bold.otf") format("opentype");
    font-weight: 700;
    font-display: swap;
}

/* ================= VARIABLES ================= */
:root {
    --font-heading: "Alterwave", sans-serif;
    --font-body: "Satoshi", sans-serif;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-bold: 700;
    --color-text: #000;
    --color-border: #000;
    --color-bg: #fff;
    --color-light-bg: #f5f5f5;
}

/* ================= GLOBAL TYPOGRAPHY ================= */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: var(--fw-regular);
    color: var(--color-text);
}

h6,
p,
li,
a,
span,
button,
input {
    font-family: var(--font-body);
    font-weight: var(--fw-regular);
    color: var(--color-text);
}

a {
    text-decoration: none;
}

/* ================= CONTAINERS ================= */
.essb-container {
    width: min(1220px, 100%);
    margin: 0 auto;
    padding: 15px;
}

.essb-wrap {
    max-width: 1350px;
    margin-inline: auto;
    padding: 20px;
}

/* ================= HEADER ================= */
.essb-header {
    position: fixed;
    /* <-- add this */
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    /* higher than menus so it stays on top */
    background: var(--color-bg);
    border-bottom: 1px solid #eee;
}

.essb-header-home {
    background: transparent;
    border-bottom: none;
}

.essb-header-home .essb-nav a {
    color: #fff;
    letter-spacing: 0.05em;
    text-shadow: 0 0 5px rgba(0, 0, 0, 1);
}

.essb-header-home .essb-contact-btn {
    border-color: #fff;
    background-color: transparent;
    color: #fff;
}

.essb-header-home .essb-contact-btn img {
    filter: invert(1);
}

.essb-header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.essb-logo img {
    height: 50px;
}

.essb-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.essb-nav ul {
    display: flex;
    list-style: none;
    gap: 24px;
    padding: 6px 22px;
    margin: 0;
}

.essb-nav a {
    font-weight: var(--fw-regular);
}

/* Menu */
.essb-contact-btn,
.essb-menu-toggle {
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        color .25s ease;
}

.essb-contact-btn {
    height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    gap: 10px;
}

.essb-contact-btn:hover,
.essb-menu-toggle:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.essb-menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

/* ================= MOBILE NAV ================= */
@media (max-width: 991px) {
    .essb-nav {
        display: none;
        position: absolute;
        top: 70px;
        right: 20px;
        background: #fff;
        border: 1px solid var(--color-border);
        border-radius: 16px;
        padding: 15px;
        width: 200px;
        z-index: 9999;
    }

    .essb-nav ul {
        flex-direction: column;
        gap: 14px;
        padding: 0;
    }

    .essb-nav.active {
        display: block;
        animation: fadeDown 0.3s ease;
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .essb-contact-btn {
        display: none;
    }

    .essb-logo img {
        height: 44px;
    }
}

/* ===== Overlays & Menu (top→bottom drop) ===== */
.essb-menu,
.essb-menu2,
.essb-menu-style {
    position: fixed;
    top: 68px;
    /* <-- start below header */
    left: 0;
    width: 100%;
    height: calc(100% - 70px);
    /* fill remaining space */
    z-index: 1500;
    transform: translateX(100%);
    transition: transform .55s cubic-bezier(.22, .61, .36, 1);
}

.essb-menu {
    background: #0f0f10;
}

.essb-menu2 {
    background: #4b4b4b;
}

.essb-menu-style {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.essb-menu {
    transition-delay: 0s;
}

.essb-menu2 {
    transition-delay: .12s;
}

.essb-menu-style {
    transition-delay: .24s;
}

.essb-menu.show,
.essb-menu2.show,
.essb-menu-style.show {
    transform: translateX(0);
}

.essb-menu-style .menu-bg {
    position: absolute;
    width: 80%;
    max-width: 450px;
    align-items: center;
    opacity: 0;
    filter: blur(6px);
    transition: opacity .45s ease .3s, transform .6s ease .3s, filter .45s ease .3s;
    pointer-events: none;
}

.essb-menu-style .menu-bg {
    right: 20;
    bottom: 50;
    transform: translateY(20px) scale(.96) rotate(-4deg);
}

.essb-menu-style.show .menu-bg {
    opacity: .06;
    filter: blur(0);
    transform: translateY(0) scale(1) rotate(0);
}

.essb-menu-links {
    opacity: 0;
    transform: translateY(18px) scaleY(1.02);
    transition: opacity .4s ease .28s, transform .5s ease .28s;
    text-transform: uppercase;
}

.essb-menu-style.show .essb-menu-links {
    opacity: 1;
    transform: translateY(0) scaleY(1);
}

.essb-menu-links ul li {
    margin: 10px 0;
    padding-block: 10px;
}

.essb-menu-links ul li a {
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: clamp(22px, 3vw + 10px, 54px);
    font-weight: 300;
    color: var(--color-text);
    letter-spacing: .02em;
    transition: color .25s ease, transform .25s ease, opacity .25s ease;
    display: inline-block;
}

.essb-menu-links ul li a:hover {
    color: #555;
    transform: scale(1.1);
}

.hamburger-menu.essb-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 999px;
    background: #fff;
    padding: 0;
}

.hamburger-menu.essb-menu-toggle img {
    width: 18px;
    height: 18px;
    display: block;
}

.hamburger-menu.essb-menu-toggle.active {
    border-color: #000;
    background: #fff;
}

@media (max-width: 576px) {
    .essb-header {
        box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
    }
}

/* ================= Page Header ================= */
.page-header {
    position: relative;
    height: 400px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* Background image */
.page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Dark gradient overlay */
.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 70%, #FFF 100%);
    z-index: 2;
}

/* Content */
.page-header-content {
    position: relative;
    z-index: 3;
    padding-bottom: 100px;
}

/* Breadcrumb */
.breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 10px;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.breadcrumb-item.active {
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Title */
.page-title {
    color: #ffffff;
    font-size: 56px;
    font-weight: 300;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .page-header {
        height: 300px;
    }

    .page-title {
        font-size: 36px;
    }

    .page-header-content {
        padding-bottom: 50px;
    }
}

/* 🖥 Desktop & tablets (up to 1500px) */
@media (min-width: 768px) and (max-width: 1499px) {
    .page-header {
        background-size: contain;
    }
}

/* 🖥🖥 Large screens (1500px and above) */
@media (min-width: 1500px) {
    .page-header {
        background-size: cover;
    }
}

@media (max-width: 767px) {
    .page-header {
        height: 260px;
    }
}

/* ================= CTA ================= */
.cta-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.cta-title {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #000;
}

.cta-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #6c757d;
    max-width: 600px;
}

.cta-btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 999px;
    background: #FFF;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.30) inset;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    background: #FFF;
    box-shadow: 0 0 12px 0 rgba(85, 85, 85, 0.6) inset;
}

/* ================= FOOTER ================= */
.essb-footer {
    position: relative;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    overflow: hidden;
}

.essb-footer-boy {
    position: absolute;
    right: 24px;
    bottom: 62px;
    width: 170px;
    max-width: 38vw;
    height: auto;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

/* Main grid */
.essb-footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 16px 90px;
    /* extra bottom space so boy/grass doesn’t clash */
    display: grid;
    grid-template-columns: 4fr 1fr 1fr 1.2fr;
    gap: 48px;
    position: relative;
    z-index: 2;
    /* keep content above boy overlay */
}

/* Footer brand */
.footer-brand img {
    max-width: 180px;
    margin-bottom: 16px;
}

.footer-brand p {
    max-width: 320px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #555;
}

/* Social icons */
.footer-socials {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border: 0.5px solid #a8a8a8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, transform 0.2s ease;
    background: #fff;
}

.footer-socials a img {
    width: 22px;
    height: 22px;
    display: block;
    object-fit: contain;
    margin-bottom: 0;
}

.footer-socials a:hover {
    border-color: #000;
    transform: translateY(-2px);
}

/* Footer links */
.footer-links h6,
.footer-contact h6 {
    font-weight: var(--fw-bold);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    color: #555;
    text-decoration: none;
}

.footer-links a:hover {
    color: #000;
}

/* Contact */
.footer-contact address {
    font-style: normal;
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.contact-item img {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item a {
    word-break: break-word;
    color: #555;
    text-decoration: none;
}

.contact-item a:hover {
    color: #000;
}

/* ================= FOOTER BASE (needed for overlay) ================= */
:root {
    --footer-max: 1300px;
    --footer-green: #10b041;
    --grass-h-desktop: 44px;
    --grass-h-tablet: 40px;
    --grass-h-mobile: 34px;
}

.essb-footer {
    position: relative;
    overflow: hidden;
}

/* Boy overlay (NEVER takes layout space) */
.essb-footer-boy {
    position: absolute !important;
    right: 24px;
    bottom: 62px;
    /* above green bar */
    width: 170px;
    height: auto;
    opacity: 0.35;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

/* ================= GRASS STRIP (IF YOU USE THIS SECTION) ================= */
/* Keep it if your footer has:
   <div class="essb-footer-ground"><img class="essb-footer-grass" ... /></div>
*/
.essb-footer-ground {
    position: relative;
    z-index: 2;
    height: var(--grass-h-desktop);
    line-height: 0;
}

.essb-footer-grass {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ================= FOOTER BOTTOM (GRASS + GREEN BAR) ================= */
.essb-footer-bottom {
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 22px 16px 16px;
    /* content padding */
    overflow: hidden;
}

/* REAL grass strip (this is the key fix) */
.essb-footer-bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--grass-h-desktop);
    background: url("../img/grass.svg") repeat-x bottom;
    background-size: auto 100%;
    z-index: 1;
    padding: 50px;
}

/* CONTENT WRAPPER */
.essb-footer-bottom-inner {
    max-width: var(--footer-max);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

/* Typography */
.essb-footer-bottom p,
.essb-footer-bottom span,
.footer-bottom-links a {
    font-size: 14px;
    color: #111;
}

.essb-footer-bottom p {
    margin: 0;
    line-height: 1.4;
}

/* Links */
.footer-bottom-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
}

.footer-bottom-links a {
    color: #111;
    padding: 0 12px;
    position: relative;
    text-decoration: none;
    line-height: 1.4;
}

.footer-bottom-links a:hover {
    opacity: 0.85;
}

.footer-bottom-links a:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: -2px;
    color: #111;
}

/* ================= RESPONSIVE FOOTER (YOUR MISSING PARTS INCLUDED) ================= */
@media (max-width: 991px) {

    /* your footer grid settings (kept) */
    .essb-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding-bottom: 110px;
    }

    /* grass sizing for tablet */
    .essb-footer-ground {
        height: var(--grass-h-tablet);
    }

    /* bottom bar grass sizing for tablet */
    .essb-footer-bottom {
        background-size: 100% var(--grass-h-tablet), 100% 100%;
        padding: calc(var(--grass-h-tablet) + 16px) 16px 14px 16px;
    }

    /* boy responsive placement */
    .essb-footer-boy {
        right: 16px !important;
        bottom: 70px;
        width: 150px;
    }
}

@media (max-width: 576px) {

    /* your footer grid settings (kept) */
    .essb-footer-inner {
        grid-template-columns: 1fr;
        padding: 40px 16px 30px;
        gap: 32px;
    }

    /* grass sizing for mobile */
    .essb-footer-ground {
        height: var(--grass-h-mobile);
    }

    /* bottom bar stacks */
    .essb-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    /* bottom bar grass sizing for mobile */
    .essb-footer-bottom {
        background-size: 100% var(--grass-h-mobile), 100% 100%;
        padding: calc(var(--grass-h-mobile) + 14px) 16px 14px 16px;
    }

    .essb-footer-bottom::before {
        padding: 80px;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .footer-bottom-links a {
        padding: 0 8px;
    }

    /* boy overlay (still absolute, no layout space) */
    .essb-footer-boy {
        position: absolute !important;
        right: 6px !important;
        bottom: 100px;
        width: 150px;
    }
}

/* ---------- CONTACT US PAGE ---------- */
.essb-contact {
    background: #ffffff;
    padding: 5rem 0;
    color: #111;
}

.essb-chip {
    display: none;
}

.essb-heading {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.essb-subtext {
    font-size: 1.05rem;
    color: #444;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.essb-contact-lines p {
    font-size: 1.05rem;
    gap: 0.75rem;
}

.essb-form-card {
    background: #fff;
    padding: 1.8rem;
    box-shadow: 0 0px 50px rgba(0, 0, 0, 0.10);
}

.essb-form-title {
    font-size: 1.8rem;
    font-weight: 300;
    text-align: center;
    color: #111;
    margin-bottom: 1rem;
}

.essb-input {
    width: 100%;
    background: #f1f1f1;
    border: 1px solid transparent;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    margin-top: 10px;
}

.essb-input:focus {
    outline: none;
    background: #ededed;
}

.essb-input::placeholder {
    color: #777;
}

.essb-input.error {
    border-color: red;
}

.essb-textarea {
    min-height: 140px;
    resize: none;
}

.essb-submit {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    cursor: pointer;
}

.essb-submit:hover,
.essb-submit:focus,
.essb-submit:active {
    background: #000;
    color: #fff;
    outline: none;
}

.form-status {
    margin-top: 10px;
    font-size: 0.9rem;
}

/* ---------- RESPONSIVE STYLES ---------- */
/* Tablets (≤ 991px) */
@media (max-width: 991px) {
    .essb-contact {
        padding: 3.5rem 0;
    }

    .essb-heading {
        font-size: clamp(1.8rem, 4vw, 2.4rem);
        text-align: left;
    }

    .essb-subtext {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .essb-form-card {
        margin-top: 2rem;
        padding: 1.6rem;
    }
}

/* Mobile (≤ 767px) */
@media (max-width: 767px) {
    .essb-contact {
        padding: 3rem 1rem;
    }

    .essb-heading {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .essb-subtext {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .essb-contact-lines p {
        font-size: 0.95rem;
    }

    .essb-form-card {
        width: 100%;
        padding: 1.4rem;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
    }

    .essb-form-title {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .essb-input {
        font-size: 0.95rem;
        padding: 0.85rem 0.9rem;
    }

    .essb-submit {
        padding: 0.95rem;
        font-size: 0.9rem;
    }
}

/* Small phones (≤ 480px) */
@media (max-width: 480px) {
    .essb-heading {
        font-size: 1.45rem;
    }

    .essb-subtext {
        font-size: 0.9rem;
    }

    .essb-input {
        padding: 0.8rem;
    }

    .essb-submit {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
}

/* ---------- SITEMAP PAGE ---------- */
.sitemap-section {
    padding: 4rem 0;
    background: #fff;
    color: #111;
}

.sitemap-block {
    margin-bottom: 2.5rem;
}

.sitemap-block .sitemap-title {
    font-size: 1.2rem;
    font-weight: 400;
    text-transform: uppercase !important;
    margin-bottom: 1.5rem;
}

.sitemap-block .sitemap-title-a {
    font-size: 1.2rem;
    font-weight: 400;
    font-family: var(--font-heading);
    text-transform: uppercase !important;
    margin-bottom: 1.5rem;
}

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-list li a {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.6rem;
    text-decoration: none;
    display: inline-block;
}

.sitemap-list li a:hover {
    color: #000;
}

.sitemap-divider {
    border: none;
    border-top: 1px solid #111;
    margin: 2.5rem 0;
}

/* ---------- RESPONSIVE TWEAKS ---------- */
@media (max-width: 768px) {
    .sitemap-title {
        font-size: 1.1rem;
    }

    .sitemap-list li {
        font-size: 0.9rem;
    }

    .sitemap-divider {
        margin: 2rem 0;
    }
}

@media (max-width: 576px) {
    .sitemap-section {
        padding: 3rem 1rem;
    }

    .sitemap-title {
        margin-bottom: 1rem;
    }

    .sitemap-list li {
        margin-bottom: 0.5rem;
    }
}

/* ---------- TNC PAGE ---------- */
.essb-tnc-container {
    background-color: #ffffff;
    color: #000000;
    padding: 3rem 1rem;
    border-radius: 8px;
}

.essb-tnc-back-btn {
    display: inline-flex;
    align-items: center;
    border-radius: 10px;
    background: #252525;
    padding: 12px 18px;
    border: none;
    text-decoration: none;
    margin-bottom: 2rem;
}

.essb-tnc-back-icon {
    margin-right: 8px;
}

.essb-tnc-back-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
}

.essb-tnc-row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 5rem;
}

.essb-tnc-nav-col {
    flex: 0 0 220px;
    max-width: 220px;
}

.essb-tnc-content-col {
    flex: 1;
    padding-left: 1rem;
}

.essb-tnc-nav .nav-link {
    color: #555555;
    border-radius: 0;
    text-align: left;
    transition: all 0.2s ease-in-out;
    border-left: 2px solid #dcdcdc;
    font-weight: 500;
    padding: 10px 15px;
}

.essb-tnc-nav .nav-link:hover {
    background-color: #f5f5f5;
    color: #000000;
    border-radius: 0px 5px 5px 0px;
    cursor: pointer;
}

.essb-tnc-nav .nav-link.active {
    background: none;
    color: #000000;
    border-left: 3px solid #000000;
}

.essb-tnc-pane {
    padding: 2rem;
    border-radius: 10px;
    background-color: #f5f5f5;
    margin-bottom: 1rem;
    animation: 0.5s ease-in-out 0s 1 fadeIn;
}

.essb-tnc-list {
    padding-left: 1.2rem;
}

.essb-tnc-date {
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #666666;
    font-size: 0.9rem;
}

.essb-tnc-pane h2 {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-body);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 767px) {
    .essb-tnc-row {
        flex-direction: column;
    }

    .essb-tnc-content-col {
        padding-left: 0;
    }

    .essb-tnc-nav-col {
        flex: 0 0 120px;
    }

    .essb-tnc-back-btn {
        margin-bottom: 1rem;
    }
}

/* ---------- CANCELLATION POLICY PAGE ---------- */
.policy-section {
    background-color: #ffffff;
}

.policy-content {
    max-width: 1200px;
}

.policy-main-title {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.policy-content h4 {
    margin-top: 32px;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--font-body);
    font-size: 18px;
}

.policy-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

.policy-content ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.policy-content ul li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 6px;
}

/* ---------- SUPPORT CENTER PAGE ---------- */
.faq-section .nav-tabs {
    max-width: 1400px;
    margin: auto;
    border-bottom: 1px solid #cdcdcd;
}

.faq-tabs .nav-link {
    color: #000;
    border: none;
    font-weight: 500;
}

.faq-tabs .nav-link.active {
    border-bottom: 2px solid #000;
}

.faq-accordion {
    max-width: 1400px;
    margin: auto;
}

.faq-item {
    background: #f6f6f6;
    margin-bottom: 14px;
    padding: 18px 20px;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.faq-answer {
    display: none;
    margin-top: 12px;
    font-size: 14px;
    color: #333;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ---------- ESSB GALLERY SECTION ---------- */
.essb-gallery-1__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    grid-template-rows: auto auto;
    gap: 20px;
    margin-top: 50px;
}

/* BASE BOX */
.essb-gallery-1__box {
    background: #eaeaea;
    overflow: hidden;
}

/* SMALL BOXES */
.essb-gallery-1__small {
    height: 300px;
}

/* WIDE BOX */
.essb-gallery-1__wide {
    grid-column: 1 / span 2;
    height: 200px;
}

/* LARGE VIDEO */
.essb-gallery-1__large {
    grid-column: 3;
    grid-row: 1 / span 2;
    height: 520px;
    position: relative;
}

/* ===============================
   VIDEO PLAY BUTTON
================================ */
.essb-gallery-1__video .essb-gallery-1__play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 2;
}

.essb-gallery-1__video .essb-gallery-1__play-btn::before {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    z-index: -1;
}

/* ===============================
   RESPONSIVE
================================ */
/* Tablet */
@media (max-width: 992px) {
    .essb-gallery-1__grid {
        grid-template-columns: 1fr 1fr;
    }

    .essb-gallery-1__large {
        grid-column: 1 / -1;
        grid-row: auto;
        height: 320px;
    }

    .essb-gallery-1__wide {
        grid-column: 1 / -1;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .essb-gallery-1__grid {
        grid-template-columns: 1fr;
    }

    .essb-gallery-1__small,
    .essb-gallery-1__wide,
    .essb-gallery-1__large {
        grid-column: auto;
        height: 220px;
    }
}

/* CONTENT ROW */
.essb-content-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    margin: 100px 0;
}

/* TEXT */
.essb-text-content {
    max-width: 580px;
}

.essb-section-heading {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 18px;
}

.essb-section-text {
    line-height: 1.7;
    color: #555;
    font-size: 16px;
}

/* BUTTON */
.essb-btn-primary {
    margin-top: 28px;
    padding: 14px 34px;
    border-radius: 30px;
    border: none;
    background: #000;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.essb-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.essb-floating-images {
    flex-shrink: 0;
    max-width: 480px;
}

.essb-gallery-image {
    width: 100%;
    height: auto;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .essb-content-row {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .essb-content-row {
        flex-direction: column;
        text-align: center;
        margin: 70px 0;
    }

    .essb-text-content {
        max-width: 100%;
    }

    .essb-floating-images {
        max-width: 480px;
        margin-top: 40px;
    }
}

/* GRID */
.essb-testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.essb-testimonial-title {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 18px;
    text-align: center;
}

/* CARD */
.essb-testimonial-card {
    background: #fff;
    padding: 26px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* HEADER */
.essb-testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.essb-testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.essb-testimonial-user img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    background: #333;
}

.essb-testimonial-user h4 {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
    font-family: var(--font-body);
}

.essb-testimonial-user span {
    font-size: 13px;
    color: #777;
}

/* PLATFORM ICON */
.essb-testimonial-platform {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.essb-platform-google {
    color: #4285f4;
}

.essb-platform-star {
    color: #00c853;
}

.essb-platform-x {
    color: #111;
}

/* DIVIDER */
.essb-testimonial-card hr {
    margin: 18px 0;
    border: none;
    border-top: 1px solid #333;
}

/* TEXT */
.essb-testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .essb-testimonials {
        grid-template-columns: 1fr;
    }
}

/* ================================
   ESSB GALLERY 2
================================ */
.essb-gallery-2 {
    margin-top: 34px;
}

.essb-gallery-2__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* LEFT */
.essb-gallery-2__left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* RIGHT */
.essb-gallery-2__right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.essb-gallery-2__right-bottom {
    display: flex;
    gap: 24px;
}

/* ===============================
   IMAGE BASE
================================ */
.essb-gallery-2__img {
    width: 100%;
    background: #eaeaea;
}

.essb-gallery-2__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===============================
   DESKTOP – RESPONSIVE & FLEXIBLE
================================ */
.essb-gallery-2__img--left-top {
    aspect-ratio: 57 / 32;
}

.essb-gallery-2__img--left-bottom {
    aspect-ratio: 19 / 8;
}

.essb-gallery-2__img--right-top {
    aspect-ratio: 14 / 5;
}

.essb-gallery-2__img--right-bottom-left,
.essb-gallery-2__img--right-bottom-right {
    aspect-ratio: 3 / 4;
}

/* ===============================
   MOBILE – ALL SQUARE
================================ */
@media (max-width: 768px) {
    .essb-gallery-2__grid {
        grid-template-columns: 1fr;
    }

    .essb-gallery-2__right-bottom {
        flex-direction: column;
    }

    .essb-gallery-2__img {
        aspect-ratio: 1 / 1;
    }
}

/* ---------- BLOGS LIST PAGE ---------- */
.essb-blog-list {
    max-width: 1350px;
    margin: auto;
    padding: 40px 20px;
}

.essb-blog-list__card {
    background: #f1f1f1;
    padding: 20px;
}

.essb-blog-list__image {
    background: #e0e0e0;
    aspect-ratio: 4 / 3;
    margin-bottom: 16px;
}

.essb-blog-list__title {
    margin: 0 0 8px;
    font-weight: 300;
}

.essb-blog-list__desc {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.essb-blog-list__btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 8px 14px;
    font-size: 14px;
    text-decoration: none;
}

/* ===============================
   FEATURED CARD – DESKTOP
================================ */
.essb-blog-list__card--featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

/* Desktop order: TEXT first, IMAGE second */
.essb-blog-list__content {
    order: 1;
}

.essb-blog-list__image {
    order: 2;
    aspect-ratio: 16 / 9;
    background: #e0e0e0;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {
    .essb-blog-list__card--featured {
        grid-template-columns: 1fr;
    }

    /* Mobile order: IMAGE first, TEXT second */
    .essb-blog-list__image {
        order: 1;
    }

    .essb-blog-list__content {
        order: 2;
    }
}

/* ===============================
   GRID BLOGS
================================ */
.essb-blog-list__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===============================
   RESPONSIVE
================================ */
/* Tablet */
@media (max-width: 992px) {
    .essb-blog-list__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .essb-blog-list__card--featured {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .essb-blog-list__card--featured {
        display: block;
    }

    .essb-blog-list__grid {
        grid-template-columns: 1fr;
    }

    /* All cards same size on mobile */
    .essb-blog-list__card {
        display: block;
    }

    .essb-blog-list__image {
        aspect-ratio: 16 / 9;
    }
}

/* ---------- BLOGS DETAILS PAGE ---------- */
.essb-blog-d-section {
    padding: 46px 0 70px;
    background: #fff;
    color: #111;
    margin-top: 80px;
}

.essb-blog-d-container {
    width: min(1300px, calc(100% - 72px));
    margin: 0 auto;
}

/* Breadcrumb */
.essb-blog-d-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #9a9a9a;
    margin-bottom: 18px;
}

.essb-blog-d-breadcrumb a {
    color: #9a9a9a;
    text-decoration: none;
}

.essb-blog-d-breadcrumb a:hover {
    text-decoration: underline;
}

.essb-blog-d-crumbsep {
    opacity: 0.9;
}

.essb-blog-d-crumbcurrent {
    color: #111;
    font-weight: 500;
}

/* Header */
.essb-blog-d-header {
    margin-bottom: 18px;
}

.essb-blog-d-title {
    font-size: 34px;
    line-height: 1.15;
    font-weight: 300;
    margin: 0 0 12px;
}

.essb-blog-d-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.essb-blog-d-avatar {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #e6e6e6;
    flex: 0 0 auto;
}

.essb-blog-d-metatext {
    display: grid;
    gap: 2px;
}

.essb-blog-d-author {
    font-size: 13px;
    font-weight: 500;
    color: #111;
}

.essb-blog-d-submeta {
    font-size: 12px;
    color: #9a9a9a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.essb-blog-d-dot {
    opacity: 0.9;
}

/* Hero */
.essb-blog-d-hero {
    width: 100%;
    height: 260px;
    background: #e9e9e9;
    margin: 18px 0 26px;
}

/* Content typography */
.essb-blog-d-content {
    font-size: 13px;
    line-height: 1.75;
    color: #4a4a4a;
}

.essb-blog-d-content h2 {
    font-size: 14px;
    font-weight: 400;
    color: #111;
    margin: 0 0 10px;
}

.essb-blog-d-content h3 {
    font-size: 14px;
    font-weight: 400;
    color: #111;
    margin: 18px 0 10px;
}

.essb-blog-d-content h4 {
    font-size: 13px;
    font-weight: 400;
    color: #111;
    margin: 14px 0 8px;
}

.essb-blog-d-content p {
    margin: 0 0 12px;
}

.essb-blog-d-content ul {
    margin: 8px 0 14px 18px;
    padding: 0;
}

.essb-blog-d-content li {
    margin: 6px 0;
}

/* Quote block */
.essb-blog-d-quote {
    background: #efefef;
    border-left: 0;
    margin: 18px 0;
    padding: 18px 20px;
    text-align: center;
    color: #111;
    font-weight: 400;
    font-size: 12px;
}

/* Inline image */
.essb-blog-d-inlineimg {
    width: 100%;
    height: 240px;
    background: #e9e9e9;
    margin: 16px 0 22px;
}

/* Responsive */
@media (max-width: 720px) {
    .essb-blog-d-container {
        width: min(980px, calc(100% - 32px));
    }

    .essb-blog-d-title {
        font-size: 26px;
    }

    .essb-blog-d-hero {
        height: 200px;
    }

    .essb-blog-d-inlineimg {
        height: 200px;
    }
}

/* ---------- OUR COACHES PAGE ---------- */
.essb-Coaches-title {
    font-weight: 300;
    letter-spacing: 1px;
    color: #222;
}

.essb-Coaches-viewport {
    overflow: hidden;
    width: 100%;
    outline: none;
    padding: 10px 0;
}

.essb-Coaches-track {
    display: flex;
    gap: 20px;
    align-items: stretch;
    transform: translateX(0);
}

.essb-Coaches-track.is-animating {
    will-change: transform;
}

.essb-Coaches-card {
    flex: 0 0 auto;
    width: 280px;
    background: #fff;
    text-align: center;
    border: 2px solid #e6e6e6;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.essb-Coaches-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    padding-top: 12px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.essb-Coaches-img img {
    width: 100%;
    height: 80%;
    max-height: calc(80% - 12px);
    object-fit: cover;
    display: block;
}

.essb-Coaches-meta {
    background: #E8E8E8;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: start;
}

.essb-Coaches-role {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: #333;
    margin: 0;
}

.essb-Coaches-name {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    margin: 0;
}

.essb-Coaches-card:hover,
.essb-Coaches-card:focus-within {
    border-color: #d9b24a;
}

.essb-Coaches-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: none;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    background-clip: padding-box;
}

.essb-Coaches-arrow:hover {
    transform: translateY(-50%) scale(1.2);
    border: 1px solid #d9b24a;
}

.essb-Coaches-arrow:active {
    transform: translateY(-50%) scale(1);
}

.essb-Coaches-arrow-left {
    left: -22px;
}

.essb-Coaches-arrow-right {
    right: -22px;
}

.essb-Coaches-arrow-icon {
    display: inline-block;
    font-size: 28px;
    color: var(--accent, #d9b24a);
    line-height: 1;
    font-weight: 700;
    user-select: none;
}

.essb-Coaches-arrow:focus {
    outline: 3px solid rgba(211, 158, 0, 0.18);
}

@media (max-width: 1199px) {
    .essb-Coaches-card {
        width: 200px;
    }
}

@media (max-width: 767px) {
    .essb-Coaches-track {
        gap: 10px;
    }

    .essb-Coaches-card {
        width: 160px;
        margin: 0;
    }

    .essb-Coaches-meta {
        padding: 10px 8px;
    }

    .essb-Coaches-role {
        font-size: 0.82rem;
        letter-spacing: 0.3px;
    }

    .essb-Coaches-name {
        font-size: 0.78rem;
    }

    .essb-Coaches-arrow-left {
        left: 6px;
    }

    .essb-Coaches-arrow-right {
        right: 6px;
    }
}

/* ---------- ABOUT US PAGE ---------- */
.essb-about-section {
    padding: 56px 0;
    background: #fff;
    color: #111;
}

.essb-about-container {
    width: min(1300px, calc(100% - 48px));
    margin: 0 auto;
}

.essb-about-card {
    border: 1px solid #e6e6e6;
    background: #fff;
    padding: 34px;
}

.essb-about-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 34px;
    align-items: start;
}

.essb-about-media {
    background: #e9e9e9;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 380px;
    position: relative;
    cursor: pointer;
    outline: none;
}

.essb-about-media:focus {
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
}

.essb-about-play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    display: grid;
    place-items: center;
}

.essb-about-play-triangle {
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid #111;
    transform: translateX(2px);
}

.essb-about-title {
    margin: 0 0 14px;
    font-size: 44px;
    letter-spacing: 1px;
    font-weight: 300;
}

.essb-about-text {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.55;
    color: #2b2b2b;
}

.essb-about-text:last-child {
    margin-bottom: 0;
}

.essb-about-stats {
    margin-top: 26px;
    border: 1px solid #e6e6e6;
    background: #fff;
    padding: 22px 26px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 22px;
}

.essb-about-stat {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.essb-about-stat-icon {
    width: 54px;
    height: 54px;
    background: #e6e6e6;
    flex: 0 0 auto;
}

.essb-about-stat-body {
    min-width: 0;
}

.essb-about-stat-value {
    font-size: 34px;
    font-weight: 500;
    line-height: 1.05;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.essb-about-stat-label {
    margin-top: 6px;
    font-size: 14px;
    color: #6b6b6b;
}

.essb-about-divider {
    width: 1px;
    height: 42px;
    background: #e6e6e6;
    justify-self: center;
}

/* Responsive */
@media (max-width: 980px) {
    .essb-about-grid {
        grid-template-columns: 360px 1fr;
        gap: 26px;
    }

    .essb-about-title {
        font-size: 38px;
    }
}

@media (max-width: 820px) {
    .essb-about-card {
        padding: 24px;
    }

    .essb-about-grid {
        grid-template-columns: 1fr;
    }

    .essb-about-media {
        max-width: 520px;
        margin: 0 auto;
    }

    .essb-about-title {
        font-size: 34px;
        text-align: left;
    }
}

@media (max-width: 700px) {
    .essb-about-container {
        width: min(1100px, calc(100% - 28px));
    }

    .essb-about-title {
        font-size: 30px;
    }

    .essb-about-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .essb-about-divider {
        width: 100%;
        height: 1px;
    }

    .essb-about-stat-value {
        font-size: 30px;
    }
}

.essb-choose-section {
    padding: 54px 0 70px;
    background: #fff;
    color: #111;
}

.essb-choose-container {
    width: min(1300px, calc(100% - 64px));
    margin: 0 auto;
}

.essb-choose-title {
    font-size: 44px;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 0 0 22px;
}

.essb-choose-title--spaced {
    margin-top: 56px;
}

.essb-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.essb-choose-card {
    background: #fff;
    border: 1px solid #ededed;
    padding: 18px;
}

.essb-choose-thumb {
    background: #e9e9e9;
    height: 150px;
    width: 100%;
    margin-bottom: 16px;
}

.essb-choose-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.essb-choose-card-title {
    margin: 0;
    font-size: 24px;
    font-weight: 300;
}

.essb-choose-card-desc {
    margin: 0;
    font-size: 15px;
    color: #6b6b6b;
    line-height: 1.4;
}

.essb-awards-wrap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid #ededed;
    background: #fff;
}

.essb-awards-card {
    border-right: 1px solid #ededed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
}

.essb-awards-card:last-child {
    border-right: none;
}

.essb-awards-media {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 46px 18px 18px;
}

.essb-awards-img {
    width: 120px;
    height: auto;
    max-width: 100%;
    display: block;
}

.essb-awards-meta {
    padding: 18px 18px 22px;
}

.essb-awards-season {
    font-size: 12px;
    letter-spacing: 1px;
    color: #8a8a8a;
    margin-bottom: 8px;
}

.essb-awards-name {
    font-size: 26px;
    font-weight: 600;
    color: #111;
}

@media (max-width: 1100px) {
    .essb-choose-title {
        font-size: 38px;
    }

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

    .essb-awards-wrap {
        grid-template-columns: repeat(3, 1fr);
    }

    .essb-awards-card:nth-child(3) {
        border-right: none;
    }
}

@media (max-width: 700px) {
    .essb-choose-container {
        width: min(1200px, calc(100% - 28px));
    }

    .essb-choose-title {
        font-size: 30px;
    }

    .essb-choose-grid {
        grid-template-columns: 1fr;
    }

    .essb-choose-thumb {
        height: 140px;
    }

    .essb-awards-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .essb-awards-card {
        min-height: 320px;
    }

    .essb-awards-card:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 420px) {
    .essb-awards-wrap {
        grid-template-columns: 1fr;
    }

    .essb-awards-card {
        border-right: none;
    }
}

/* ---------- ESSB Store PAGE ---------- */
.essb-shop-section {
    padding: 54px 0;
    background: #fff;
}

.essb-shop-container {
    width: min(1300px, calc(100% - 64px));
    margin: 0 auto;
}

.essb-shop-card {
    background: #f2f2f2;
    padding: 54px 56px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.essb-shop-img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
}

.essb-shop-img img {
    width: min(280px, 80%);
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.08));
}

.essb-shop-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-top: 26px;
}

.essb-shop-name {
    margin: 0 0 10px;
    font-size: 40px;
    letter-spacing: 0.5px;
    font-weight: 300;
    color: #111;
}

.essb-shop-price {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.essb-shop-price-new {
    font-size: 22px;
    font-weight: 700;
    color: #111;
}

.essb-shop-price-old {
    font-size: 20px;
    color: #e02020;
    text-decoration: line-through;
    font-weight: 500;
}

.essb-shop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    min-width: 180px;
}

.essb-shop-btn:hover {
    opacity: 0.9;
}

@media (max-width: 900px) {
    .essb-shop-card {
        padding: 44px 34px;
        min-height: 480px;
    }

    .essb-shop-name {
        font-size: 34px;
    }

    .essb-shop-btn {
        font-size: 20px;
        min-width: 200px;
    }
}

@media (max-width: 680px) {
    .essb-shop-container {
        width: min(1200px, calc(100% - 28px));
    }

    .essb-shop-card {
        padding: 34px 22px;
        min-height: 520px;
    }

    .essb-shop-img img {
        width: min(360px, 60%);
    }

    .essb-shop-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .essb-shop-name {
        font-size: 30px;
    }

    .essb-shop-btn {
        width: 100%;
        min-width: 0;
        padding: 16px 22px;
        font-size: 20px;
    }
}

.essb-store-section {
    padding: 60px 0 80px;
    background: #fff;
    color: #111;
}

.essb-store-container {
    width: min(1300px, calc(100%));
    margin: 0 auto;
}

.essb-store-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
}

.essb-store-title {
    margin: 0;
    font-size: 38px;
    font-weight: 300;
    letter-spacing: 1px;
}

.essb-store-nav {
    display: flex;
    gap: 10px;
}

.essb-store-navbtn {
    width: 58px;
    height: 52px;
    border: 1px solid #e6e6e6;
    background: #e9e9e9;
    cursor: pointer;
    font-size: 34px;
    line-height: 1;
    display: grid;
    place-items: center;
}

.essb-store-navbtn:hover {
    filter: brightness(0.98);
}

.essb-store-viewport {
    overflow: hidden;
    width: 100%;
}

.essb-store-track {
    display: flex;
    gap: 28px;
    align-items: stretch;
    transform: translateX(0);
    transition: transform 700ms cubic-bezier(.22, .9, .32, 1);
}

.essb-store-card {
    position: relative;
    flex: 0 0 auto;
    width: 360px;
    border: 1px solid #111;
    background: #fff;
}

.essb-store-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #e5391e;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.6px;
    padding: 8px 12px;
}

.essb-store-img {
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px 22px;
}

.essb-store-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.essb-store-bottom {
    border-top: 1px solid #111;
    padding: 18px 18px 16px;
}

.essb-store-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.essb-store-name {
    font-size: 26px;
    font-weight: 400;
}

.essb-store-price {
    font-size: 26px;
    font-weight: 400;
}

.essb-store-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
}

.essb-store-btn:hover {
    opacity: 0.92;
}

@media (max-width: 1100px) {
    .essb-store-title {
        font-size: 44px;
    }

    .essb-store-track {
        gap: 28px;
    }

    .essb-store-card {
        width: 320px;
    }

    .essb-store-img {
        height: 380px;
    }
}

@media (max-width: 820px) {
    .essb-store-container {
        width: min(1200px, calc(100% - 28px));
    }

    .essb-store-title {
        font-size: 34px;
    }

    .essb-store-navbtn {
        width: 52px;
        height: 48px;
    }

    .essb-store-card {
        width: 280px;
    }

    .essb-store-img {
        height: 340px;
    }

    .essb-store-name,
    .essb-store-price {
        font-size: 22px;
    }

    .essb-store-btn {
        height: 52px;
        font-size: 18px;
    }
}

@media (max-width: 520px) {
    .essb-store-head {
        align-items: flex-start;
    }

    .essb-store-title {
        font-size: 30px;
    }

    .essb-store-card {
        width: 260px;
    }

    .essb-store-img {
        height: 320px;
    }
}

.essb-shop-hero-wrap {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    overflow: hidden;
}

.essb-shop-hero-left,
.essb-shop-hero-right {
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

.essb-shop-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.essb-shop-hero-gloves {
    position: relative;
    z-index: 2;
    width: min(520px, 80%);
    height: auto;
    display: block;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.18));
}

.essb-shop-hero-content {
    position: relative;
    z-index: 3;
    padding: 54px 52px;
    max-width: 560px;
}

.essb-shop-hero-title {
    margin: 0 0 34px;
    font-size: 58px;
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: 1px;
    color: #111;
}

.essb-shop-hero-sub {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.essb-shop-hero-kicker {
    font-size: 18px;
    color: #333;
}

.essb-shop-hero-product {
    font-size: 30px;
    font-weight: 400;
    color: #111;
}

.essb-shop-hero-btn {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    padding: 0 30px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    width: fit-content;
}

.essb-shop-hero-btn:hover {
    opacity: 0.92;
}

.essb-shop-hero-keeper {
    position: absolute;
    right: 44px;
    bottom: 18px;
    width: min(360px, 42%);
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.14));
    pointer-events: none;
}

/* ====== Responsive ====== */
@media (max-width: 1100px) {
    .essb-shop-hero-wrap {
        min-height: 380px;
    }

    .essb-shop-hero-left,
    .essb-shop-hero-right {
        min-height: 380px;
    }

    .essb-shop-hero-content {
        padding: 44px 36px;
    }

    .essb-shop-hero-title {
        font-size: 56px;
    }

    .essb-shop-hero-product {
        font-size: 34px;
    }

    .essb-shop-hero-keeper {
        right: 26px;
        width: min(320px, 44%);
    }
}

@media (max-width: 900px) {
    .essb-shop-hero-wrap {
        grid-template-columns: 1fr;
    }

    .essb-shop-hero-left {
        min-height: 340px;
    }

    .essb-shop-hero-right {
        min-height: 420px;
    }

    .essb-shop-hero-gloves {
        width: min(520px, 86%);
        top: 50%;
    }

    .essb-shop-hero-content {
        max-width: none;
        padding: 40px 28px 140px;
    }

    .essb-shop-hero-keeper {
        right: 20px;
        bottom: 10px;
        width: min(320px, 56%);
    }
}

@media (max-width: 520px) {
    .essb-shop-hero-wrap {
        width: min(1280px, calc(100% - 20px));
    }

    .essb-shop-hero-left {
        min-height: 280px;
    }

    .essb-shop-hero-right {
        min-height: 420px;
    }

    .essb-shop-hero-title {
        font-size: 42px;
    }

    .essb-shop-hero-product {
        font-size: 26px;
    }

    .essb-shop-hero-btn {
        height: 52px;
        padding: 0 26px;
        font-size: 18px;
    }

    .essb-shop-hero-keeper {
        right: 12px;
        width: min(260px, 62%);
    }
}

/* ---------- ESSB PRODUCT DETAILS PAGE ---------- */
/* Page base */
.essb-shop-p-page {
    width: min(1300px, calc(100% - 44px));
    margin: 0 auto;
    margin-top: 80px;
    padding: 28px 18px 60px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #111;
}

.essb-shop-p-breadcrumb {
    font-size: 14px;
    color: #8a8a8a;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.essb-shop-p-breadcrumb a {
    color: #8a8a8a;
    text-decoration: none;
}

.essb-shop-p-breadcrumb a:hover {
    text-decoration: underline;
}

.essb-shop-p-bc-active {
    color: #111;
}

/* Top layout */
.essb-shop-p-top {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 34px;
    align-items: start;
}

/* Gallery */
/* =========================
   Gallery (fixed)
   ========================= */
.essb-shop-p-gallery {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 20px;
    align-items: start;
}

.essb-shop-p-thumbs {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.essb-shop-p-thumb {
    width: 96px;
    height: 96px;
    border: 1px solid #2a2a2a;
    background: #fff;
    padding: 10px;
    cursor: pointer;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.essb-shop-p-thumb img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    display: block;
}

.essb-shop-p-thumb.is-active {
    border-color: #111 !important;
    outline: 2px solid #111 !important;
}

.essb-shop-p-mainimgwrap {
    width: 100%;
    min-height: 520px;
    display: grid;
    place-items: center;
    overflow: hidden;
    /* prevents giant image overflow */
}

.essb-shop-p-mainimg {
    max-width: 520px;
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: contain;
    display: block;
}

/* =========================
   Mobile / Tablet
   ========================= */
@media (max-width: 980px) {
    .essb-shop-p-gallery {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .essb-shop-p-mainimgwrap {
        order: 1;
        min-height: 340px;
        max-height: 420px;
    }

    .essb-shop-p-mainimg {
        max-width: 100%;
        max-height: 420px;
    }

    .essb-shop-p-thumbs {
        order: 2;
        flex-direction: row;
        gap: 12px;
        /* smooth horizontal strip */
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 6px 2px 10px;
        /* hide “ugly” scrollbar space */
        scrollbar-width: none;
        /* Firefox */
    }

    .essb-shop-p-thumbs::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .essb-shop-p-thumb {
        width: 86px;
        height: 86px;
        scroll-snap-align: start;
    }
}

/* Extra small phones */
@media (max-width: 420px) {
    .essb-shop-p-mainimgwrap {
        min-height: 300px;
        max-height: 360px;
    }

    .essb-shop-p-thumb {
        width: 78px;
        height: 78px;
        padding: 8px;
    }
}

/* Info */
.essb-shop-p-info {
    padding-top: 8px;
}

.essb-shop-p-title {
    font-size: 56px;
    line-height: 1.03;
    letter-spacing: 0.5px;
    margin: 0 0 12px;
    font-weight: 300;
    /* requested */
    text-transform: uppercase;
}

.essb-shop-p-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 14px;
}

.essb-shop-p-price-now {
    font-size: 24px;
    font-weight: 700;
}

.essb-shop-p-price-old {
    font-size: 18px;
    color: #d50000;
    text-decoration: line-through;
}

.essb-shop-p-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    margin: 0 0 14px;
    max-width: 420px;
}

.essb-shop-p-meta {
    display: grid;
    gap: 8px;
    margin: 12px 0 18px;
}

.essb-shop-p-meta-row {
    font-size: 13px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.essb-shop-p-meta-k {
    font-weight: 700;
    letter-spacing: 0.2px;
}

.essb-shop-p-meta-v {
    color: #555;
}

.essb-shop-p-buybtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 22px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.3px;
    border: 1px solid #111;
    transition: transform .12s ease, background .12s ease;
}

.essb-shop-p-buybtn:hover {
    transform: translateY(-1px);
    background: #000;
}

/* Tabs */
.essb-shop-p-tabs {
    margin-top: 42px;
}

.essb-shop-p-tabbar {
    display: flex;
    gap: 26px;
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.essb-shop-p-tabbar::-webkit-scrollbar {
    display: none;
}

.essb-shop-p-tab {
    background: none;
    border: none;
    padding: 10px 0;
    cursor: pointer;
    font-size: 18px;
    color: #9a9a9a;
    font-weight: 500;
    position: relative;
}

.essb-shop-p-tab.is-active {
    color: #111;
}

.essb-shop-p-tab.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -11px;
    width: 120px;
    max-width: 100%;
    height: 2px;
    background: #111;
}

.essb-shop-p-tabpanes {
    padding-top: 18px;
}

.essb-shop-p-pane {
    display: none;
    font-size: 15px;
    color: #333;
    line-height: 1.8;
}

.essb-shop-p-pane.is-active {
    display: block;
}

.essb-shop-p-bullets {
    margin: 0;
    padding-left: 18px;
}

.essb-shop-p-bullets li {
    margin: 8px 0;
}

.essb-shop-p-review {
    border: 1px solid #ededed;
    padding: 12px 14px;
    margin-bottom: 10px;
}

.essb-shop-p-review-name {
    font-weight: 700;
    margin-bottom: 6px;
}

.essb-shop-p-review-text {
    color: #444;
}

/* Responsive */
@media (max-width: 980px) {
    .essb-shop-p-top {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .essb-shop-p-gallery {
        grid-template-columns: 1fr;
    }

    .essb-shop-p-thumbs {
        flex-direction: row;
        order: 2;
        overflow: auto;
        padding-bottom: 6px;
    }

    .essb-shop-p-thumb {
        flex: 0 0 auto;
    }

    .essb-shop-p-mainimgwrap {
        order: 1;
        min-height: 320px;
    }

    .essb-shop-p-title {
        font-size: 44px;
    }
}

@media (max-width: 520px) {
    .essb-shop-p-title {
        font-size: 36px;
    }

    .essb-shop-p-tabbar {
        gap: 14px;
        overflow: auto;
    }

    .essb-shop-p-tab {
        font-size: 16px;
        white-space: nowrap;
    }

    .essb-shop-p-tab.is-active::after {
        width: 90px;
    }
}

/* =========================
   ESSB Store CTA (Promo Video)
   ========================= */
.essb-shop-cta {
    width: 100%;
    padding: 0;
}

.essb-shop-cta-wrap {
    position: relative;
    width: 100%;
    min-height: 320px;
    overflow: hidden;
    border-radius: 0;
}

/* Background image */
.essb-shop-cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

/* Overlay */
.essb-shop-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.45) 45%,
            rgba(0, 0, 0, 0.25) 100%);
}

/* Content row */
.essb-shop-cta-content {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 56px 64px;
}

/* Title */
.essb-shop-cta-title {
    margin: 0;
    color: #fff;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 0.95;
    text-transform: uppercase;
    font-size: clamp(32px, 4vw, 64px);
    max-width: 520px;
}

/* Play link */
.essb-shop-cta-play {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    /* Changed from center to flex-start */
    text-decoration: none;
    outline: none;
}

/* Circle */
.essb-shop-cta-play-circle {
    width: 92px;
    height: 92px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: grid;
    place-items: center;
    backdrop-filter: blur(6px);
    transition: transform 0.15s ease, background 0.15s ease;
}

/* Triangle */
.essb-shop-cta-play-tri {
    width: 0;
    height: 0;
    border-left: 18px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    transform: translateX(2px);
}

/* Hover / focus */
.essb-shop-cta-play:hover .essb-shop-cta-play-circle {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.22);
}

.essb-shop-cta-play:focus-visible .essb-shop-cta-play-circle {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 900px) {
    .essb-shop-cta-content {
        padding: 44px 28px;
    }

    .essb-shop-cta-title {
        max-width: 420px;
    }

    .essb-shop-cta-play-circle {
        width: 78px;
        height: 78px;
    }

    .essb-shop-cta-play-tri {
        border-left-width: 16px;
        border-top-width: 11px;
        border-bottom-width: 11px;
    }
}

@media (max-width: 640px) {

    .essb-shop-cta-wrap,
    .essb-shop-cta-content {
        min-height: 260px;
    }

    .essb-shop-cta-content {
        padding: 34px 18px;
        align-items: flex-end;
    }

    .essb-shop-cta-title {
        font-size: clamp(34px, 7vw, 52px);
        line-height: 0.98;
    }

    .essb-shop-cta-play-circle {
        width: 68px;
        height: 68px;
    }
}

/* ---------- AWARDS PAGE ---------- */
.essb-ach-section {
    padding: 56px 0 80px;
    background: #fff;
    color: #111;
}

.essb-ach-container {
    width: min(1300px, calc(100% - 48px));
    margin: 0 auto;
}

.essb-ach-awards {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-bottom: 22px;
}

.essb-ach-award {
    background: #f2f2f2;
    padding: 24px 18px;
    display: grid;
    place-items: center;
    text-align: center;
    min-height: 170px;
}

.essb-ach-award--wide {
    min-height: 200px;
}

.essb-ach-award-img {
    display: grid;
    place-items: center;
    margin-bottom: 12px;
}

.essb-ach-award-img img {
    width: 92px;
    height: auto;
    display: block;
}

.essb-ach-award--wide .essb-ach-award-img img {
    width: 110px;
}

.essb-ach-award-text {
    font-size: 22px;
    color: #111;
}

.essb-ach-awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.essb-ach-title {
    margin-top: 50px;
    font-size: 38px;
    font-weight: 300;
    letter-spacing: 1px;
}

.essb-ach-table {
    border-top: 1px solid #d6d6d6;
    margin-bottom: 34px;
}

.essb-ach-row {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr 1fr 0.35fr;
    gap: 22px;
    padding: 16px 0;
    border-bottom: 1px solid #d6d6d6;
    align-items: center;
}

.essb-ach-row--head {
    display: none;
    /* hidden to match screenshot look */
}

.essb-ach-cell {
    font-size: 16px;
    color: #1a1a1a;
}

.essb-ach-cell--year {
    text-align: right;
}

.essb-ach-gallery {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    gap: 18px;
    align-items: center;
    margin-top: 8px;
}

.essb-ach-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid #e6e6e6;
    background: #efefef;
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
    display: grid;
    place-items: center;
}

.essb-ach-viewport {
    overflow: hidden;
    width: 100%;
}

.essb-ach-track {
    display: flex;
    gap: 26px;
    transform: translateX(0);
    transition: transform 700ms cubic-bezier(.22, .9, .32, 1);
}

.essb-ach-slide {
    flex: 0 0 auto;
    width: 320px;
    height: 220px;
    background: #e9e9e9;
}

@media (max-width: 980px) {
    .essb-ach-title {
        font-size: 36px;
    }

    .essb-ach-awards-grid {
        gap: 18px;
    }

    .essb-ach-slide {
        width: 280px;
        height: 200px;
    }
}

@media (max-width: 760px) {
    .essb-ach-container {
        width: min(1100px, calc(100% - 28px));
    }

    .essb-ach-awards-grid {
        grid-template-columns: 1fr;
    }

    .essb-ach-award {
        min-height: 160px;
    }

    .essb-ach-title {
        font-size: 30px;
        margin-top: 26px;
    }

    .essb-ach-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 14px 0;
    }

    .essb-ach-cell--year {
        text-align: left;
        color: #6b6b6b;
    }

    .essb-ach-gallery {
        grid-template-columns: 40px 1fr 40px;
        gap: 12px;
    }

    .essb-ach-track {
        gap: 16px;
    }

    .essb-ach-slide {
        width: 240px;
        height: 180px;
    }
}

/* ---------- SPONSORSHIPS PAGE ---------- */
.essb-sponsor-section {
    padding: 56px 0 80px;
    background: #fff;
    color: #111;
}

.essb-sponsor-container {
    width: min(1300px, calc(100% - 56px));
    margin: 0 auto;
}

.essb-sponsor-title {
    margin: 0 0 18px;
    font-size: 26px;
    font-weight: 400;
    color: #111;
}

.essb-sponsor-emoji {
    font-size: 20px;
}

.essb-sponsor-p {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.65;
    color: #222;
}

.essb-sponsor-h {
    margin: 18px 0 10px;
    font-size: 16px;
    font-weight: 500;
    color: #111;
}

.essb-sponsor-list {
    margin: 0 0 14px 18px;
    padding: 0;
    font-size: 13px;
    line-height: 1.7;
    color: #222;
}

.essb-sponsor-list li {
    margin: 3px 0;
}

.essb-sponsor-list--plain {
    list-style: disc;
}

.essb-sponsor-strong {
    margin: 18px 0 18px;
    font-size: 15px;
    font-weight: 400;
    color: #111;
}

.essb-sponsor-visuals {
    display: flex;
    align-items: flex-end;
    gap: 32px;
    padding: 10px 0 22px;
    flex-wrap: wrap;
}

.essb-sponsor-visual {
    width: 160px;
    height: auto;
    display: block;
    object-fit: contain;
}

.essb-sponsor-gallery {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    gap: 16px;
    align-items: center;
    margin-top: 8px;
}

.essb-sponsor-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid #e6e6e6;
    background: #efefef;
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
    display: grid;
    place-items: center;
}

.essb-sponsor-viewport {
    overflow: hidden;
    width: 100%;
}

.essb-sponsor-track {
    display: flex;
    gap: 22px;
    transform: translateX(0);
    transition: transform 700ms cubic-bezier(.22, .9, .32, 1);
}

.essb-sponsor-slide {
    flex: 0 0 auto;
    width: 310px;
    height: 210px;
    background: #e9e9e9;
}

@media (max-width: 900px) {
    .essb-sponsor-container {
        width: min(1080px, calc(100% - 28px));
    }

    .essb-sponsor-visuals {
        gap: 18px;
    }

    .essb-sponsor-visual {
        width: 140px;
    }

    .essb-sponsor-slide {
        width: 270px;
        height: 190px;
    }
}

@media (max-width: 650px) {
    .essb-sponsor-title {
        font-size: 22px;
    }

    .essb-sponsor-visuals {
        justify-content: center;
        gap: 16px;
    }

    .essb-sponsor-visual {
        width: 120px;
    }

    .essb-sponsor-gallery {
        grid-template-columns: 40px 1fr 40px;
        gap: 12px;
    }

    .essb-sponsor-track {
        gap: 14px;
    }

    .essb-sponsor-slide {
        width: 240px;
        height: 180px;
    }
}

/* ---------- ARENAS LIST PAGE ---------- */
.essb-arenas-section {
    padding: 42px 0 70px;
    background: #fff;
    color: #111;
}

.essb-arenas-container {
    width: min(1300px, calc(100% - 56px));
    margin: 0 auto;
}

.essb-arenas-topbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 22px;
}

.essb-arenas-filter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.essb-arenas-filterlabel {
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

.essb-arenas-filter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.essb-arenas-page-description {
    color: #fff;
}

/* "Centers In" text */
.essb-arenas-filterlabel {
    font-size: 28px;
    /* reduced */
    font-weight: 700;
    line-height: 1;
    margin: 0;
    color: #111;
}

/* select wrapper */
.essb-arenas-selectwrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    border-bottom: 2px solid #7D7D7D;
}

/* dropdown */
.essb-arenas-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 135px;
    /* requested width */
    background: #efefef;
    border: none;
    padding: 10px 52px 10px 18px;
    font-size: 24px;
    /* reduced font */
    font-weight: 500;
    line-height: 1.1;
    color: #111;
    cursor: pointer;
}

/* caret */
.essb-arenas-caret {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 24px;
    color: #111;
}

/* Mobile */
@media (max-width: 600px) {
    .essb-arenas-filterlabel {
        font-size: 22px;
    }

    .essb-arenas-select {
        width: 220px;
        font-size: 20px;
        padding: 10px 44px 10px 14px;
    }

    .essb-arenas-caret {
        font-size: 14px;
    }
}

.essb-arenas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 40px;
}

.essb-arenas-card,
.essb-arenas-soon {
    border: 1px solid #e6e6e6;
    background: #fff;
}

.essb-arenas-media {
    background: #fff;
    padding: 18px 18px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 220px;
}

.essb-arenas-media img {
    width: 100%;
    max-width: 260px;
    height: auto;
    display: block;
    object-fit: contain;
    opacity: 0.95;
}

.essb-arenas-meta {
    background: #e9e9e9;
    padding: 18px 18px 16px;
}

.essb-arenas-name {
    margin: 0 0 6px;
    font-size: 26px;
    font-weight: 300;
}

.essb-arenas-loc {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #222;
    font-size: 14px;
}

.essb-arenas-pin {
    font-size: 14px;
    line-height: 1;
}

.essb-arenas-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 38px;
    border: 1px solid #222;
    background: transparent;
    color: #111;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.4px;
}

.essb-arenas-btn:hover {
    background: #111;
    color: #fff;
}

.essb-arenas-soon {
    background: #e9e9e9;
    min-height: 365px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.essb-arenas-sooninner {
    text-align: center;
    max-width: 320px;
}

.essb-arenas-soontitle {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 300;
}

.essb-arenas-soonloc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #222;
}

.essb-arenas-card.is-hidden,
.essb-arenas-soon.is-hidden {
    display: none;
}

@media (max-width: 1100px) {
    .essb-arenas-grid {
        gap: 22px 22px;
    }

    .essb-arenas-name {
        font-size: 22px;
    }
}

@media (max-width: 900px) {
    .essb-arenas-container {
        width: min(1120px, calc(100% - 28px));
    }

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

    .essb-arenas-media {
        min-height: 200px;
    }

    .essb-arenas-soon {
        min-height: 330px;
    }
}

@media (max-width: 560px) {
    .essb-arenas-filterlabel {
        font-size: 16px;
    }

    .essb-arenas-select {
        font-size: 15px;
        padding: 10px 40px 10px 12px;
    }

    .essb-arenas-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .essb-arenas-name {
        font-size: 22px;
    }

    .essb-arenas-media {
        min-height: 190px;
    }

    .essb-arenas-soon {
        min-height: 280px;
    }
}

/* ---------- ARENA DETAILS PAGE ---------- */
.essb-arena-d-section {
    background: #fff;
    padding: 40px 0 70px;
}

.essb-arena-d-container {
    width: min(1300px, 100%);
    margin: 0 auto;
}

.essb-arena-d-top {
    margin-bottom: 26px;
}

.essb-arena-d-gallery {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 22px;
    align-items: stretch;
}

.essb-arena-d-main {
    background: #f3f3f3;
    border: 1px solid #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 270px;
    overflow: hidden;
}

.essb-arena-d-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.essb-arena-d-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.essb-arena-d-thumb {
    border: 1px solid #ececec;
    background: #f3f3f3;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    min-height: 126px;
}

.essb-arena-d-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.essb-arena-d-thumb--overlay .essb-arena-d-seeall {
    position: absolute;
    right: 12px;
    bottom: 12px;
    background: #111;
    color: #fff;
    font-size: 12px;
    padding: 8px 10px;
    letter-spacing: .3px;
}

.essb-arena-d-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 26px;
    align-items: start;
}

.essb-arena-d-card {
    background: #fff;
    border: 1px solid #efefef;
    padding: 18px 18px;
    margin-bottom: 18px;
}

.essb-arena-d-cardtitle {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 14px;
    color: #111;
}

.essb-arena-d-p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: #333;
}

.essb-arena-d-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
}

.essb-arena-d-ovitem {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.essb-arena-d-ovitem--full {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
}

.essb-arena-d-ovicon {
    font-size: 18px;
    border: 1px solid #ccc;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.essb-arena-d-ovlabel {
    font-size: 12px;
    color: #666;
    margin-bottom: 2px;
}

.essb-arena-d-ovvalue {
    font-size: 13px;
    font-weight: 600;
    color: #111;
}

.essb-arena-d-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border: 1px solid #111;
    height: 44px;
    padding: 0 16px;
    font-size: 13px;
    letter-spacing: .4px;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease;
}

.essb-arena-d-btn:hover {
    transform: translateY(-1px);
    background: #000;
}

.essb-arena-d-btn--sm {
    height: 40px;
    font-size: 12px;
    padding: 0 14px;
}

.essb-arena-d-btn--full {
    width: 100%;
}

.essb-arena-d-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.essb-arena-d-chip {
    background: #efefef;
    border: 1px solid #e5e5e5;
    padding: 10px 14px;
    font-size: 12px;
    color: #111;
    font-weight: 400;
}

.essb-arena-d-list {
    margin: 0;
    padding-left: 16px;
    color: #222;
    font-size: 13px;
    line-height: 1.85;
}

.essb-arena-d-video {
    background: #e9e9e9;
    border: 1px solid #efefef;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.essb-arena-d-play {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: none;
    background: #bdbdbd;
    color: #111;
    font-size: 18px;
    cursor: pointer;
}

.essb-arena-d-right {
    position: relative;
}

.essb-arena-d-stickywrap {
    position: sticky;
    top: 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.essb-arena-d-formcard,
.essb-arena-d-infocard {
    border: 1px solid #efefef;
    background: #fff;
    padding: 18px;
}

.essb-arena-d-formtitle {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #111;
}

.essb-arena-d-formsub {
    font-size: 12px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 12px;
}

.essb-arena-d-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.essb-arena-d-input {
    height: 44px;
    border: 1px solid #efefef;
    background: #f7f7f7;
    padding: 0 12px;
    font-size: 13px;
    outline: none;
}

.essb-arena-d-input:focus {
    background: #fff;
    border-color: #cfcfcf;
}

.essb-arena-d-textarea {
    height: auto;
    padding: 10px 12px;
    resize: vertical;
}

.essb-arena-d-support {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 12px 0 12px;
}

.essb-arena-d-avatar {
    width: 44px;
    height: 44px;
    background: #282828;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.essb-arena-d-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 🔑 fills the box perfectly */
    display: block;
    transform: scaleX(-1);
}

.essb-arena-d-supportname {
    font-size: 13px;
    font-weight: 700;
    color: #111;
}

.essb-arena-d-supportphone {
    font-size: 12px;
    color: #444;
}

/* Modal box for slider */
.essb-arena-d-modalbox--slider {
    width: min(1100px, 94%);
    margin: 24px auto;
    padding: 14px;
}

/* Header actions */
.essb-arena-d-modalactions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.essb-arena-d-modalcount {
    font-size: 12px;
    font-weight: 700;
    color: #111;
    background: #f4f4f4;
    border: 1px solid #e9e9e9;
    padding: 6px 10px;
}

/* Slider layout */
.essb-arena-d-slider {
    position: relative;
    display: grid;
    grid-template-columns: 54px 1fr 54px;
    align-items: center;
    gap: 12px;
    padding: 8px 8px 14px;
}

/* Image stage */
.essb-arena-d-sliderstage {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* 80% of screen image */
.essb-arena-d-sliderimg {
    width: auto;
    height: auto;
    max-width: 80vw;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    background: #f3f3f3;
    border: 1px solid #efefef;
}

/* Arrow buttons */
.essb-arena-d-sliderbtn {
    width: 54px;
    height: 54px;
    border: 1px solid #e5e5e5;
    background: #fff;
    cursor: pointer;
    font-size: 34px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.essb-arena-d-sliderbtn:hover {
    background: #f2f2f2;
}

.essb-arena-d-sliderbtn:disabled {
    opacity: .35;
    cursor: not-allowed;
}

/* Thumbnail row (optional) */
.essb-arena-d-thumbrow {
    display: flex;
    gap: 10px;
    overflow: auto;
    padding: 10px 8px 4px;
    border-top: 1px solid #efefef;
}

.essb-arena-d-thumbmini {
    border: 2px solid transparent;
    padding: 0;
    background: transparent;
    cursor: pointer;
    flex: 0 0 auto;
}

.essb-arena-d-thumbmini img {
    width: 64px;
    height: 48px;
    object-fit: cover;
    display: block;
    border: 1px solid #eee;
    background: #f3f3f3;
}

.essb-arena-d-thumbmini.is-active {
    border-color: #111;
}

/* Mobile tweaks */
@media (max-width: 600px) {
    .essb-arena-d-slider {
        grid-template-columns: 44px 1fr 44px;
        gap: 8px;
    }

    .essb-arena-d-sliderbtn {
        width: 44px;
        height: 44px;
        font-size: 28px;
    }

    .essb-arena-d-sliderimg {
        max-width: 92vw;
        max-height: 72vh;
    }
}

/* Modal */
.essb-arena-d-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.essb-arena-d-modal.is-open {
    display: block;
}

.essb-arena-d-modalbackdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.essb-arena-d-modalbox {
    position: relative;
    width: min(980px, 92%);
    margin: 40px auto;
    background: #fff;
    border: 1px solid #eee;
    padding: 14px;
}

.essb-arena-d-modaltop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px 14px;
}

.essb-arena-d-modaltitle {
    font-weight: 800;
    font-size: 14px;
}

.essb-arena-d-modalclose {
    border: 1px solid #ddd;
    background: #fff;
    width: 40px;
    height: 36px;
    cursor: pointer;
}

.essb-arena-d-modalgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 10px;
}

.essb-arena-d-modalgrid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #f2f2f2;
    border: 1px solid #eee;
}

/* Mobile bottom callback */
.essb-arena-d-mobilebar {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .essb-arena-d-gallery {
        grid-template-columns: 1fr;
    }

    .essb-arena-d-grid {
        grid-template-columns: 1fr;
    }

    .essb-arena-d-stickywrap {
        position: static;
    }

    /* Hide desktop callback card; use bottom bar instead */
    #essbCallbackCard {
        display: none;
    }

    .essb-arena-d-mobilebar {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9998;
        background: #fff;
        border-top: 1px solid #eaeaea;
    }

    .essb-arena-d-mobilebarbtn {
        width: 100%;
        height: 54px;
        border: none;
        background: #111;
        color: #fff;
        font-weight: 800;
        letter-spacing: .5px;
        font-size: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        cursor: pointer;
    }

    .essb-arena-d-mobilepanel {
        display: none;
        padding: 12px;
        background: #fff;
    }

    .essb-arena-d-mobilepanel.is-open {
        display: block;
    }

    .essb-arena-d-mobilecaret {
        display: inline-block;
        transform: translateY(-1px);
    }

    .essb-arena-d-modalgrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .essb-arena-d-thumbs {
        gap: 12px;
    }

    .essb-arena-d-thumb {
        min-height: 110px;
    }
}

/* ---------- MARKETING PAGE ---------- */
.essb-marketing-featured-img img {
    width: 100%;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .essb-marketing-featured-img img {
        margin-top: 50px;
    }
}

.essb-mkt-section {
    padding: 70px 0 80px;
    background: #fff;
    color: #111;
}

.essb-mkt-container {
    width: min(1300px, calc(100% - 60px));
    margin: 0 auto;
}

.essb-mkt-title {
    text-align: center;
    font-size: 58px;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin: 0 0 28px;
    text-transform: uppercase;
}

.essb-mkt-copy {
    max-width: 1300px;
    margin: 0 auto 46px;
    font-size: 18px;
    line-height: 1.75;
    color: #1f1f1f;
}

.essb-mkt-copy p {
    margin: 0 0 18px;
}

.essb-mkt-subtitle {
    text-align: center;
    font-size: 28px;
    letter-spacing: 3px;
    font-weight: 300;
    margin: 52px 0 26px;
    text-transform: uppercase;
}

.essb-mkt-agegrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 14px;
}

.essb-mkt-agecard {
    border: 1px solid #e4e4e4;
    background: #fff;
    padding: 18px 18px 16px;
    min-height: 110px;
}

.essb-mkt-agehead {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.essb-mkt-agedesc {
    margin: 0;
    font-size: 16px;
    color: #2a2a2a;
    line-height: 1.4;
}

.essb-mkt-arenaswrap {
    margin-top: 64px;
}

.essb-mkt-arenashead {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.essb-mkt-arenastitle {
    margin: 0;
    font-size: 38px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 300;
}

.essb-mkt-arenaslight {
    font-weight: 300;
    font-family: var(--font-heading);
}

.essb-mkt-arenasbold {
    font-weight: 400;
    font-family: var(--font-heading);
}

.essb-mkt-nav {
    display: flex;
    gap: 14px;
}

.essb-mkt-navbtn {
    width: 46px;
    height: 46px;
    border: none;
    background: #e7e7e7;
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.essb-mkt-navbtn:hover {
    filter: brightness(0.95);
}

.essb-mkt-viewport {
    overflow: hidden;
    width: 100%;
}

.essb-mkt-track {
    display: flex;
    gap: 26px;
    transform: translateX(0);
    transition: transform 450ms ease;
    will-change: transform;
}

.essb-mkt-arena {
    flex: 0 0 auto;
    width: 360px;
    border: 1px solid #e4e4e4;
    background: #fff;
}

.essb-mkt-arenaimg {
    position: relative;
    background: #fff;
    padding: 16px 16px 12px;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.essb-mkt-arenaimg img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    object-fit: contain;
}

.essb-mkt-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #e53935;
    color: #fff;
    font-size: 14px;
    padding: 8px 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.essb-mkt-arenameta {
    background: #e9e9e9;
    padding: 18px 18px 16px;
}

.essb-mkt-arenaname {
    margin: 0 0 6px;
    font-size: 34px;
    font-weight: 300;
}

.essb-mkt-arenaloc {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 15px;
    color: #222;
    margin-bottom: 16px;
}

.essb-mkt-arenabtn {
    display: flex;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid #111;
    text-decoration: none;
    color: #111;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.4px;
    background: transparent;
}

.essb-mkt-arenabtn:hover {
    background: #111;
    color: #fff;
}

.essb-mkt-cta {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.essb-mkt-ctaBtn {
    background: #111;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.essb-mkt-ctaBtn:hover {
    filter: brightness(0.92);
}

@media (max-width: 1100px) {
    .essb-mkt-title {
        font-size: 44px;
    }

    .essb-mkt-agegrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .essb-mkt-arenastitle {
        font-size: 30px;
    }

    .essb-mkt-arena {
        width: 330px;
    }
}

@media (max-width: 720px) {
    .essb-mkt-container {
        width: min(1180px, calc(100% - 26px));
    }

    .essb-mkt-title {
        font-size: 34px;
    }

    .essb-mkt-copy {
        font-size: 16px;
    }

    .essb-mkt-subtitle {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .essb-mkt-agegrid {
        grid-template-columns: 1fr;
    }

    .essb-mkt-arenashead {
        align-items: flex-start;
    }

    .essb-mkt-navbtn {
        width: 40px;
        height: 40px;
        font-size: 26px;
    }

    .essb-mkt-track {
        gap: 16px;
    }

    .essb-mkt-arena {
        width: 78vw;
        max-width: 360px;
    }

    .essb-mkt-arenaname {
        font-size: 26px;
    }
}

/* ---------- OUR PROGRAMS PAGE ---------- */
.essb-programs-section {
    padding: 50px 0 70px;
    background: #fff;
    color: #111;
    margin-top: 80px;
}

.essb-programs-container {
    width: min(1300px, calc(100% - 44px));
    margin: 0 auto;
}

.essb-programs-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: #8a8a8a;
    margin-bottom: 10px;
}

.essb-programs-bcLink {
    color: #8a8a8a;
    text-decoration: none;
}

.essb-programs-bcLink:hover {
    text-decoration: underline;
}

.essb-programs-bcSep {
    color: #b0b0b0;
}

.essb-programs-bcCurrent {
    color: #111;
}

.essb-programs-title {
    text-align: center;
    font-size: 44px;
    font-weight: 300;
    letter-spacing: 0.2px;
    margin: 0 0 26px;
}

.essb-programs-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 28px;
}

.essb-programs-pyramid {
    width: min(420px, 92%);
    height: auto;
    display: block;
    margin: 0 auto;
}

.essb-programs-levels {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.essb-programs-level {
    background: #f1f1f1;
    padding: 18px 20px;
}

.essb-programs-levelTitle {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 300;
}

.essb-programs-levelText {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #2a2a2a;
    max-width: 980px;
}

.essb-programs-note {
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: #5a5a5a;
}

@media (max-width: 768px) {
    .essb-programs-container {
        width: min(1100px, calc(100% - 24px));
    }

    .essb-programs-title {
        font-size: 34px;
    }

    .essb-programs-pyramid {
        width: min(300px, 90%);
    }

    .essb-programs-level {
        padding: 16px 16px;
    }

    .essb-programs-levelTitle {
        font-size: 18px;
    }

    .essb-programs-levelText {
        font-size: 13.5px;
    }
}

/* ---------- OUR PACKAGES PAGE ---------- */
.essb-packages-section {
    padding: 52px 0 70px;
    background: #fff;
    color: #111;
    margin-top: 80px;
}

.essb-packages-container {
    width: min(1300px, calc(100% - 44px));
    margin: 0 auto;
}

.essb-packages-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #8a8a8a;
    margin-bottom: 10px;
}

.essb-packages-bcLink {
    color: #8a8a8a;
    text-decoration: none;
}

.essb-packages-bcLink:hover {
    text-decoration: underline;
}

.essb-packages-bcSep {
    color: #bdbdbd;
}

.essb-packages-bcCurrent {
    color: #111;
}

.essb-packages-title {
    text-align: center;
    font-size: 52px;
    font-weight: 300;
    margin: 0 0 34px;
    letter-spacing: 0.2px;
}

.essb-packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 26px;
}

.essb-packages-card {
    border: 1px solid #ededed;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 210px;
}

.essb-packages-cardTop {
    position: relative;
    padding: 26px 18px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 150px;
}

.essb-packages-star {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.essb-packages-star img {
    width: 100%;
    height: 100%;
    display: block;
}

.essb-packages-monthNum {
    font-size: 74px;
    font-weight: 700;
    line-height: 1;
}

.essb-packages-monthLbl {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.essb-packages-monthNum--gold,
.essb-packages-monthLbl--gold {
    color: #d7a74a;
}

.essb-packages-monthNum--green,
.essb-packages-monthLbl--green {
    color: #19b98b;
}

.essb-packages-monthNum--purple,
.essb-packages-monthLbl--purple {
    color: #6d63b6;
}

.essb-packages-monthNum--gray,
.essb-packages-monthLbl--gray {
    color: #9aa0a6;
}

.essb-packages-priceRow {
    background: #efefef;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #e8e8e8;
}

.essb-packages-price {
    font-size: 22px;
    font-weight: 700;
    color: #111;
}

.essb-packages-box {
    border: 1px solid #ededed;
    background: #fff;
    padding: 22px 22px;
    margin-top: 18px;
}

.essb-packages-boxTitle {
    margin: 0 0 14px;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.essb-packages-list {
    margin: 0;
    padding-left: 18px;
    color: #222;
    line-height: 1.8;
    font-size: 15px;
}

.essb-packages-p {
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 1.8;
    color: #222;
}

/* Responsive */
@media (max-width: 1024px) {
    .essb-packages-title {
        font-size: 44px;
    }

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

    .essb-packages-monthNum {
        font-size: 64px;
    }

    .essb-packages-monthLbl {
        font-size: 20px;
    }
}

@media (max-width: 560px) {
    .essb-packages-container {
        width: min(1200px, calc(100% - 22px));
    }

    .essb-packages-title {
        font-size: 36px;
        margin-bottom: 24px;
    }

    .essb-packages-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .essb-packages-cardTop {
        min-height: 150px;
        padding: 22px 16px;
    }

    .essb-packages-monthNum {
        font-size: 58px;
    }

    .essb-packages-monthLbl {
        font-size: 18px;
    }

    .essb-packages-boxTitle {
        font-size: 24px;
    }
}

/* ---------- HOME PAGE ---------- */
.essb-home-hero {
    margin-top: 0;
}

/* Hero wrapper */
.essb-home-hero-wrap {
    position: relative;
    width: 100%;
    min-height: 700px;
    overflow: hidden;
}

/* Background image */
.essb-home-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
}

/* Slight dark overlay to improve contrast */
.essb-home-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
}

/* Bottom white fade */
.essb-home-hero-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 85%);
    z-index: 2;
    pointer-events: none;
}

/* Center content – FIXED */
.essb-home-hero-content {
    position: absolute;
    inset: 0;
    /* fill entire hero */
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* TRUE vertical centering */
    text-align: center;
    padding: 0 18px;
}

/* Title */
.essb-home-hero-title {
    margin: 0 0 18px;
    color: #fff;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.05;
    font-size: clamp(40px, 6vw, 88px);
    text-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
}

/* CTA button */
.essb-home-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 26px;
    background: #fff;
    color: #111;
    border: 1px solid rgba(0, 0, 0, 0.25);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 13px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.essb-home-hero-btn:hover {
    transform: translateY(-1px);
}

.essb-home-hero-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.24);
}

.essb-home-hero-btn:active {
    transform: translateY(0px);
}

/* =========================
   Responsive tweaks
   ========================= */
@media (max-width: 900px) {
    .essb-home-hero-topbar {
        height: 80px;
    }

    .essb-home-hero-wrap,
    .essb-home-hero-content {
        min-height: 440px;
    }

    .essb-home-hero-fade {
        height: 140px;
    }
}

@media (max-width: 560px) {
    .essb-home-hero-topbar {
        height: 64px;
    }

    .essb-home-hero-wrap,
    .essb-home-hero-content {
        min-height: 380px;
    }

    .essb-home-hero-btn {
        height: 42px;
        padding: 0 20px;
        font-size: 12px;
    }
}

.essb-home-info {
    width: 100%;
    background: #fff;
    padding: 54px 0 70px;
}

.essb-home-info-container {
    width: min(1300px, calc(100%));
    margin: 0 auto;
}

.essb-home-info-block {
    width: 100%;
}

/* =========================
   TOP: PROGRAMS & TRAININGS
   ========================= */
.essb-home-info-title {
    margin-top: 50px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 38px;
    color: #111;
}

.essb-home-info-programs-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 34px;
    align-items: center;
}

.essb-home-info-pyramid {
    display: flex;
    justify-content: center;
    align-items: center;
}

.essb-home-info-pyramid-img {
    width: min(320px, 100%);
    height: auto;
    display: block;
}

.essb-home-info-agegrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.essb-home-info-agecard {
    border: 2px solid #e6e6e6;
    background: #fff;
    padding: 18px 18px 16px;
    min-height: 112px;
}

.essb-home-info-agehead {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.1;
    color: #111;
    margin-bottom: 10px;
}

.essb-home-info-agesub {
    font-size: 15px;
    color: #222;
    line-height: 1.5;
}

/* =========================
   BOTTOM: OUR PACKAGES
   ========================= */
.essb-home-info-packages {
    margin-top: 100px;
}

.essb-home-info-packages-grid {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 34px;
    align-items: center;
}

.essb-home-info-packtitle {
    margin: 0 0 14px;
    font-size: 48px;
    line-height: 1;
    font-weight: 300;
    text-transform: uppercase;
    color: #111;
}

.essb-home-info-packdesc {
    margin: 0 0 22px;
    max-width: 420px;
    font-size: 18px;
    line-height: 1.65;
    color: #222;
}

.essb-home-info-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 20px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid #111;
    transition: transform .12s ease, opacity .12s ease;
}

.essb-home-info-btn:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.essb-home-info-btn:active {
    transform: translateY(0px);
}

/* Right: tilted cards */
.essb-home-info-packcards {
    position: relative;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.essb-home-info-packcard {
    position: absolute;
    width: 190px;
    height: 230px;
    background: #fff;
    border: 4px solid #e6e6e6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.essb-home-info-packcard--center {
    transform: rotate(0deg);
    z-index: 3;
    height: 280px;
    margin-top: 40px;
}

.essb-home-info-packcard--left {
    transform: rotate(-18deg) translateX(-170px);
    z-index: 2;
    opacity: 0.98;
    height: 200px;
    margin-top: -15px;
}

.essb-home-info-packcard--right {
    transform: rotate(18deg) translateX(170px);
    z-index: 1;
    opacity: 0.98;
    height: 200px;
    margin-top: -15px;
}

.essb-home-info-packnum {
    font-size: 78px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -10px;
}

.essb-home-info-packlabel {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* colors */
.essb-home-info-packnum--green,
.essb-home-info-packlabel--green {
    color: #18b18a;
}

.essb-home-info-packnum--gold,
.essb-home-info-packlabel--gold {
    color: #d3a24a;
}

.essb-home-info-packnum--purple,
.essb-home-info-packlabel--purple {
    color: #6b57b6;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 980px) {
    .essb-home-info-programs-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .essb-home-info-agegrid {
        grid-template-columns: 1fr;
    }

    .essb-home-info-packages-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .essb-home-info-packtitle {
        font-size: 44px;
    }

    .essb-home-info-packdesc {
        max-width: 100%;
    }

    .essb-home-info-packcards {
        height: 240px;
    }

    .essb-home-info-packcard {
        width: 170px;
        height: 210px;
    }

    .essb-home-info-packcard--left {
        transform: rotate(-14deg) translateX(-105px);
    }

    .essb-home-info-packcard--right {
        transform: rotate(14deg) translateX(105px);
    }
}

@media (max-width: 520px) {
    .essb-home-info-container {
        width: min(1180px, calc(100% - 28px));
    }

    .essb-home-info-agehead {
        font-size: 24px;
    }

    .essb-home-info-packtitle {
        font-size: 36px;
    }

    .essb-home-info-packcards {
        height: 220px;
    }

    .essb-home-info-packcard {
        width: 150px;
        height: 195px;
        border-width: 3px;
    }

    .essb-home-info-packnum {
        font-size: 64px;
    }

    .essb-home-info-packlabel {
        font-size: 18px;
    }

    .essb-home-info-packcard--left {
        transform: rotate(-12deg) translateX(-86px);
    }

    .essb-home-info-packcard--right {
        transform: rotate(12deg) translateX(86px);
    }
}

.essb-home-desc {
    width: 100%;
    background: #fff;
}

.essb-home-desc-container {
    width: min(1300px, calc(100%));
    margin: 0 auto;
    padding: 56px 0 52px;
}

/* shared title */
.essb-home-desc-title {
    margin: 0 0 18px;
    text-align: center;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 38px;
    color: #111;
}

.essb-home-desc-title--spaced {
    margin-top: 56px;
}

/* =========================
   OUR SERVICES (3 cards)
   ========================= */
.essb-home-desc-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.essb-home-desc-scard {
    position: relative;
    border: 2px solid #e5e5e5;
    background: #fff;
    height: 160px;
    overflow: hidden;
    display: flex;
}

.essb-home-desc-scard-body {
    padding: 25px;
    width: 58%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

.essb-home-desc-scard-h {
    margin: 0;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.2;
    color: #111;
}

.essb-home-desc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 14px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    width: max-content;
}

.essb-home-desc-scard-shape {
    position: absolute;
    right: -44px;
    top: -24px;
    width: 185px;
    height: 165px;
    background: url('../img/service-img.svg') no-repeat center;
    background-size: contain;
    transform: rotate(10deg);
}

/* =========================
   TESTIMONIALS ROW – SCROLLABLE
   ========================= */
.essb-home-desc-testimonials {
    margin-top: 100px;
}

/* ROW */
.essb-home-desc-trow {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    cursor: default;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Hide scrollbar (modern browsers) */
.essb-home-desc-trow::-webkit-scrollbar {
    display: none;
}

/* CARD BASE */
.essb-home-desc-tcard {
    flex: 0 0 auto;
    width: 360px;
    /* controls card width */
    background: #f6f6f6;
    min-height: 250px;
    padding: 20px 20px 16px;
    scroll-snap-align: start;
}

/* VIDEO CARD */
.essb-home-desc-tcard--video {
    background: #dedede;
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* TEXT */
.essb-home-desc-ttext {
    font-size: 13px;
    line-height: 1.65;
    color: #222;
    padding-bottom: 18px;
    border-bottom: 1px solid #d8d8d8;
}

/* META */
.essb-home-desc-tmeta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
}

/* AVATAR */
.essb-home-desc-avatar {
    width: 36px;
    height: 36px;
    border: 1px solid #d6d6d6;
    background: #ddd;
    overflow: hidden;
    flex: 0 0 auto;
}

.essb-home-desc-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* NAME */
.essb-home-desc-person-name {
    font-size: 12px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}

.essb-home-desc-person-sub {
    font-size: 11px;
    color: #666;
    margin-top: 2px;
}

/* VIDEO PLAY BUTTON */
.essb-home-desc-video {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.essb-home-desc-play {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    display: grid;
    place-items: center;
    font-size: 18px;
    color: #111;
}

/* =========================
   MOBILE TWEAKS
   ========================= */
@media (max-width: 640px) {
    .essb-home-desc-tcard {
        width: 280px;
    }
}

/* video tile with play button bottom-right-ish like screenshot */
.essb-home-desc-video {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.essb-home-desc-play {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.18);
    display: grid;
    place-items: center;
    color: #111;
    font-size: 18px;
}

/* small right bar hint */
.essb-home-desc-scrollbar {
    position: absolute;
    right: -10px;
    top: 0;
    width: 16px;
    height: 100%;
    background: #e6e6e6;
}

/* =========================
   BIG CTA STRIP
   ========================= */
.essb-home-desc-cta {
    width: 100%;
    background: #e9e9e9;
    padding: 150px 0;
    margin-top: 68px;
}

.essb-home-desc-cta-inner {
    width: min(900px, calc(100% - 48px));
    margin: 0 auto;
    text-align: center;
}

.essb-home-desc-cta-logo {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto 18px;
}

.essb-home-desc-cta-title {
    margin: 0 0 10px;
    font-size: 44px;
    font-weight: 300;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #111;
}

.essb-home-desc-cta-sub {
    margin: 0 0 22px;
    font-size: 14px;
    color: #222;
}

.essb-home-desc-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 22px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 980px) {
    .essb-home-desc-services-grid {
        grid-template-columns: 1fr;
    }

    .essb-home-desc-scard {
        height: 122px;
    }

    .essb-home-desc-trow {
        grid-template-columns: 1fr;
    }

    .essb-home-desc-scrollbar {
        display: none;
    }

    .essb-home-desc-cta {
        padding: 74px 0;
    }

    .essb-home-desc-cta-title {
        font-size: 38px;
    }
}

@media (max-width: 520px) {
    .essb-home-desc-container {
        width: min(1180px, calc(100% - 28px));
    }

    .essb-home-desc-scard-body {
        width: 65%;
    }

    .essb-home-desc-scard-h {
        font-size: 20px;
    }

    .essb-home-desc-cta-title {
        font-size: 32px;
    }
}

.essb-home-blogs {
    background: #fff;
    padding: 54px 0;
}

.essb-home-blogs-wrap {
    width: min(1300px, calc(100%));
    margin: 0 auto;
}

.essb-home-blogs-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.essb-home-blogs-title {
    margin: 0;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: #111;
    text-transform: uppercase;
}

.essb-home-blogs-nav {
    display: inline-flex;
    gap: 14px;
}

.essb-home-blogs-navbtn {
    width: 44px;
    height: 44px;
    border: 1px solid #e5e5e5;
    background: #ececec;
    color: #111;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 26px;
    line-height: 1;
    transition: transform 0.12s ease, background 0.12s ease;
}

.essb-home-blogs-navbtn:hover {
    background: #e3e3e3;
    transform: translateY(-1px);
}

.essb-home-blogs-row {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.essb-home-blogs-row {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.essb-home-blogs-row::-webkit-scrollbar {
    display: none;
}

/* BLOG CARD */
.essb-home-blogs-card {
    flex: 0 0 auto;
    width: 420px;
    border: 1px solid #e4e4e4;
    background: #fff;
    scroll-snap-align: start;
    display: grid;
    grid-template-rows: 250px auto;
}

.essb-home-blogs-img {
    background: #f2f2f2;
    overflow: hidden;
}

.essb-home-blogs-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.essb-home-blogs-body {
    background: #e9e9e9;
    padding: 16px 16px 14px;
}

.essb-home-blogs-meta {
    font-size: 12px;
    color: #222;
    margin-bottom: 6px;
}

.essb-home-blogs-h {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.05;
    margin: 0 0 8px;
    color: #111;
}

.essb-home-blogs-desc {
    font-size: 14px;
    color: #222;
    line-height: 1.55;
    margin-bottom: 14px;
    max-width: 40ch;
}

.essb-home-blogs-btn {
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid #111;
    background: transparent;
    color: #111;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

/* VIDEO CARD (WIDE) */
.essb-home-blogs-video {
    flex: 0 0 auto;
    width: 520px;
    min-height: 370px;
    border: 1px solid #e4e4e4;
    background: #e9e9e9;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
}

.essb-home-blogs-videoLink {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.essb-home-blogs-videoTitle {
    position: absolute;
    left: 36px;
    bottom: 38px;
    font-size: 48px;
    font-weight: 500;
    color: #111;
}

.essb-home-blogs-play {
    position: absolute;
    right: 56px;
    bottom: 44px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.18);
    display: grid;
    place-items: center;
    font-size: 18px;
    color: #111;
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .essb-home-blogs-wrap {
        width: min(1180px, calc(100% - 28px));
    }

    .essb-home-blogs-card {
        width: 320px;
        grid-template-rows: 200px auto;
    }

    .essb-home-blogs-h {
        font-size: 28px;
    }

    .essb-home-blogs-video {
        width: 420px;
        min-height: 320px;
    }

    .essb-home-blogs-videoTitle {
        font-size: 36px;
        left: 22px;
        bottom: 26px;
    }

    .essb-home-blogs-play {
        right: 22px;
        bottom: 24px;
    }
}

@media (max-width: 520px) {
    .essb-home-blogs-title {
        font-size: 18px;
    }

    .essb-home-blogs-navbtn {
        width: 40px;
        height: 40px;
    }

    .essb-home-blogs-card {
        width: 280px;
    }

    .essb-home-blogs-video {
        width: 320px;
    }
}

.essb-faqs {
    background: #fff;
    padding: 56px 0 70px;
}

.essb-faqs-wrap {
    width: min(1300px, calc(100% - 72px));
    margin: 0 auto;
}

.essb-faqs-title {
    margin: 0 0 18px;
    text-align: center;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #111;
}

.essb-faqs-box {
    border: 1px solid #6e6e6e;
}

/* Each row */
.essb-faqs-item {
    border-top: 1px solid #6e6e6e;
    background: #fff;
}

.essb-faqs-item:first-child {
    border-top: 0;
}

/* When open -> grey background like your image */
.essb-faqs-item[open] {
    background: #e9e9e9;
}

/* Remove default marker */
.essb-faqs-item summary {
    list-style: none;
}

.essb-faqs-item summary::-webkit-details-marker {
    display: none;
}

/* Question row */
.essb-faqs-q {
    cursor: pointer;
    display: grid;
    grid-template-columns: 1fr 40px;
    align-items: center;
    gap: 12px;
    padding: 22px 24px;
    font-size: 24px;
    font-weight: 400;
    color: #111;
    line-height: 1.2;
}

/* Answer text */
.essb-faqs-a {
    padding: 0 24px 22px;
    font-size: 18px;
    line-height: 1.55;
    color: #222;
    max-width: 1100px;
}

/* Chevron icon (CSS-drawn) */
.essb-faqs-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    justify-self: end;
    position: relative;
}

.essb-faqs-icon::before {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 3px solid #111;
    border-bottom: 3px solid #111;
    transform: rotate(45deg);
    /* down */
    transition: transform 0.16s ease;
}

/* open = up arrow */
.essb-faqs-item[open] .essb-faqs-icon::before {
    transform: rotate(-135deg);
}

/* Responsive */
@media (max-width: 900px) {
    .essb-faqs-wrap {
        width: min(1180px, calc(100% - 28px));
    }

    .essb-faqs-q {
        font-size: 20px;
        padding: 18px 16px;
        grid-template-columns: 1fr 34px;
    }

    .essb-faqs-a {
        padding: 0 16px 18px;
        font-size: 15px;
    }

    .essb-faqs-icon {
        width: 28px;
        height: 28px;
    }
}