/* ==========================================================================
   Fleet Landing page (page-templates/fleet-landing.php)
   Uses the shared PDP design tokens (pdp.css :root custom properties).
   ========================================================================== */

.fleet-page {
    --pdp-ink: var(--exg-black, #0a0a0a);
    --pdp-muted: #727272;
    --pdp-line: #dcdcdc;
    --pdp-accent: var(--exg-gold, #ffc800);
    overflow: clip;
    color: var(--pdp-ink);
    font-family: var(--exg-body);
}
.fleet-page,
.fleet-page * {
    box-sizing: border-box;
}

/* --- Shared section layout ----------------------------------------------- */
.fleet-section__inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: var(--exg-section-space, clamp(64px, 6vw, 88px)) 0;
    text-align: center;
}
.fleet-section__title {
    margin: 0 0 var(--exg-stack-eyebrow-gap, 8px);
    font-family: var(--exg-display);
    font-size: var(--exg-type-section-size, clamp(44px, 3.34vw, 48px));
    font-weight: var(--exg-weight-display);
    line-height: var(--exg-type-section-line, 1.083);
    text-transform: uppercase;
    color: var(--pdp-ink);
    text-wrap: balance;
}
.fleet-section__eyebrow {
    margin: 0 0 var(--exg-stack-eyebrow-gap, 8px);
    color: var(--pdp-accent, #ffc800);
    font-family: var(--exg-display);
    font-size: var(--exg-type-eyebrow-size, 14px);
    font-weight: var(--exg-weight-action);
    letter-spacing: var(--exg-tracking-label, 0.08em);
    line-height: var(--exg-type-eyebrow-line, 18px);
    text-transform: uppercase;
}
.fleet-section__subtitle {
    max-width: 760px;
    margin: 0 auto var(--exg-stack-actions-gap, 32px);
    color: var(--pdp-muted);
    font-size: var(--exg-type-lede-size, 18px);
    line-height: var(--exg-type-lede-line, 27px);
}

/* --- Buttons -------------------------------------------------------------- */
.fleet-btn {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border: 2px solid transparent;
    font-family: var(--exg-display);
    font-size: var(--exg-type-action-size, 15px);
    font-weight: var(--exg-weight-action);
    line-height: var(--exg-type-action-line, 20px);
    text-transform: uppercase;
    letter-spacing: .02em;
    text-decoration: none !important;
    border-radius: 4px;
    transition: background .15s ease, color .15s ease;
}
.fleet-btn--primary {
    border-color: var(--pdp-accent);
    background: var(--pdp-accent);
    color: var(--pdp-ink) !important;
}
.fleet-btn--primary:hover {
    border-color: #fff;
    background: #fff;
    color: var(--pdp-ink) !important;
}
.fleet-btn--dark {
    background: #111;
    color: #fff !important;
}
.fleet-btn--dark:hover {
    background: #2a2a2a;
    color: #fff !important;
}

/* --- Hero ------------------------------------------------------------------ */
.fleet-hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(500px, 44vw, 620px);
    overflow: hidden;
    border-top: 5px solid var(--pdp-accent);
    background: var(--exg-black, #0a0a0a);
}
.fleet-hero__media {
    position: absolute;
    z-index: -2;
    inset: 0;
}
.fleet-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}
.fleet-hero__overlay {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: rgba(0,0,0,.55);
}
.fleet-hero__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    width: min(1180px, calc(100% - 48px));
    min-height: clamp(500px, 44vw, 620px);
    align-items: flex-start;
    justify-content: center;
    margin: 0 auto;
    padding: clamp(72px, 8vw, 108px) 0;
    text-align: center;
}
.fleet-hero__phone {
    display: block;
    margin: 0 0 28px;
    font-family: var(--exg-display);
    font-size: var(--exg-type-feature-size, 20px);
    font-weight: var(--exg-weight-action);
    color: #fff !important;
    text-decoration: none !important;
}
.fleet-hero__phone-icon {
    color: var(--pdp-accent, #febc16);
    margin-right: 10px;
}
.fleet-hero__title {
    max-width: 640px;
    margin: 0 0 var(--exg-stack-title-gap, 16px);
    font-family: var(--exg-display);
    font-size: var(--exg-type-hero-size, clamp(58px, 4.45vw, 64px));
    font-weight: var(--exg-weight-display);
    line-height: var(--exg-type-hero-line, 1);
    text-transform: uppercase;
    color: #fff;
    letter-spacing: -0.02em;
    text-wrap: balance;
}
.fleet-hero__subtitle {
    margin: 0 0 var(--exg-space-6, 24px);
    color: var(--pdp-accent);
    font-size: var(--exg-type-lede-size, 18px);
    font-weight: var(--exg-weight-semibold);
    line-height: var(--exg-type-lede-line, 27px);
}

/* Banner variant: left-aligned copy over the fleet banner (no slides). */
.fleet-hero__overlay--left {
    background: linear-gradient(90deg, rgba(10, 10, 10, .98) 0%, rgba(10, 10, 10, .9) 40%, rgba(10, 10, 10, .48) 62%, rgba(10, 10, 10, 0) 82%);
}
.fleet-hero__inner--left {
    text-align: left;
}
.exg-fleet-page .fleet-hero__media { z-index: 0; }
.exg-fleet-page .fleet-hero__overlay { z-index: 1; }
.exg-fleet-page .fleet-hero__inner { z-index: 2; }
.fleet-hero__inner--left .fleet-hero__title { max-width: 560px; }
.fleet-hero__usa {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 30px;
    font-family: var(--exg-display);
    font-size: var(--exg-type-small-size, 14px);
    font-weight: var(--exg-weight-action);
    letter-spacing: .02em;
    color: #fff;
}
.fleet-hero__usa img { height: 42px; width: auto; }
.fleet-hero__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--exg-space-4, 16px);
}
.fleet-hero__actions .fleet-hero__phone {
    display: inline-block;
    margin: 0;
    font-size: var(--exg-type-feature-size, 20px);
}

/* --- ROI Calculator banner ---------------------------------------------- */
.fleet-roi {
    border-top: 1px solid #303030;
    border-bottom: 1px solid #303030;
    background: #181818;
}
.fleet-roi__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px 32px;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: var(--exg-space-7, 32px) 0;
}
.fleet-roi__copy {
    max-width: 760px;
    flex: 1 1 620px;
    text-align: left;
}
.fleet-roi__eyebrow {
    margin: 0 0 var(--exg-stack-eyebrow-gap, 8px);
    color: var(--pdp-accent, #ffc800);
    font-family: var(--exg-display);
    font-size: var(--exg-type-eyebrow-size, 14px);
    font-weight: var(--exg-weight-action);
    letter-spacing: var(--exg-tracking-label, 0.08em);
    line-height: var(--exg-type-eyebrow-line, 18px);
    text-transform: uppercase;
}
.fleet-roi__title {
    margin: 0 0 4px;
    font-family: var(--exg-display);
    font-size: var(--exg-type-card-size, 34px);
    font-weight: var(--exg-weight-display);
    line-height: var(--exg-type-card-line, 36px);
    text-transform: uppercase;
    color: #fff;
}
.fleet-roi__text {
    margin: 0;
    font-size: var(--exg-type-body-size, 16px);
    line-height: var(--exg-type-body-line, 24px);
    color: #c8c8c8;
}
.fleet-roi .fleet-btn { white-space: nowrap; }
.fleet-roi .fleet-btn--dark {
    border-color: var(--pdp-accent, #ffc800);
    background: var(--pdp-accent, #ffc800);
    color: var(--pdp-ink, #0a0a0a) !important;
}
.fleet-roi .fleet-btn--dark:is(:hover, :focus-visible) {
    border-color: #fff;
    background: #fff;
    color: var(--pdp-ink, #0a0a0a) !important;
}

/* --- Video testimonials --------------------------------------------------- */
.fleet-videos { background: var(--exg-warm, #f6f5f1); }
.fleet-videos .fleet-section__inner {
    padding-block: clamp(72px, 7vw, 104px);
}
.fleet-videos .fleet-section__subtitle {
    margin-bottom: clamp(34px, 4vw, 48px);
}
.fleet-videos__carousel {
    position: relative;
    padding: 0 44px;
}
.fleet-videos__track {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0 0 8px;
    list-style: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.fleet-videos__item {
    flex: 0 0 calc((100% - 40px) / 3);
    scroll-snap-align: start;
}
.fleet-video {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #111;
}
.fleet-video { cursor: pointer; padding: 0; }
.fleet-video__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .2s ease;
}
.fleet-video:hover .fleet-video__thumb { transform: scale(1.04); }
.fleet-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58px;
    height: 58px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(255,255,255,.96);
    box-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.fleet-video__play::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 11px 0 11px 18px;
    border-color: transparent transparent transparent #111;
}
.fleet-video:hover .fleet-video__play { background: var(--pdp-accent, #febc16); }
.fleet-videos__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid var(--pdp-line, #e0e0e0);
    border-radius: 50%;
    background: #fff;
    color: #111;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 1px 6px rgba(0,0,0,.15);
}
.fleet-videos__arrow:hover { background: var(--pdp-accent, #febc16); }
.fleet-videos__arrow--prev { left: 0; }
.fleet-videos__arrow--next { right: 0; }

/* --- Video lightbox -------------------------------------------------------- */
body.fleet-lightbox-open { overflow: hidden; }
.fleet-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.fleet-lightbox[hidden] { display: none; }
.fleet-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.85);
}
.fleet-lightbox__dialog {
    position: relative;
    width: min(1100px, 100%);
}
.fleet-lightbox__player {
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,.6);
}
.fleet-lightbox__iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}
.fleet-lightbox__close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #111;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
}
.fleet-lightbox__close:hover { background: var(--pdp-accent, #febc16); }

/* --- One business case: fleet calculator plus collision example ---------- */
.fleet-business {
    padding: clamp(76px, 7vw, 104px) 0;
    background: #111;
    color: #fff;
}
.fleet-business__inner {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}
.fleet-business__heading {
    max-width: 860px;
    margin-inline: auto;
    text-align: center;
}
.fleet-business__heading h2 {
    margin: 0;
    color: #fff;
    font-family: var(--exg-display);
    font-size: var(--exg-type-section-size, clamp(44px, 4.7vw, 64px));
    font-weight: var(--exg-weight-display);
    letter-spacing: -0.02em;
    line-height: 0.98;
    text-transform: uppercase;
    text-wrap: balance;
}
.fleet-business__heading > p:last-child {
    max-width: 720px;
    margin: 18px auto 0;
    color: #c7c7c7;
    font-size: var(--exg-type-lede-size, 18px);
    line-height: var(--exg-type-lede-line, 27px);
}
.fleet-business__grid {
    display: grid;
    grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
    align-items: stretch;
    margin-top: clamp(42px, 5vw, 60px);
    border-radius: 10px;
    overflow: hidden;
}
.fleet-business__roi,
.fleet-business__example {
    padding: clamp(36px, 5vw, 60px);
}
.fleet-business__roi {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: var(--pdp-accent, #ffc800);
    color: #0a0a0a;
}
.fleet-business__example {
    background: #222;
}
.fleet-business__label {
    margin: 0 0 10px;
    font-family: var(--exg-display);
    font-size: var(--exg-type-eyebrow-size, 14px);
    font-weight: var(--exg-weight-action);
    letter-spacing: var(--exg-tracking-label, 0.08em);
    line-height: var(--exg-type-eyebrow-line, 18px);
    text-transform: uppercase;
}
.fleet-business__example .fleet-business__label {
    color: var(--pdp-accent, #ffc800);
}
.fleet-business__roi h3,
.fleet-business__example h3 {
    margin: 0;
    font-family: var(--exg-display);
    font-size: clamp(38px, 4vw, 52px);
    font-weight: var(--exg-weight-display);
    letter-spacing: -0.02em;
    line-height: .98;
    text-transform: uppercase;
}
.fleet-business__example h3 {
    color: #fff;
}
.fleet-business__example h3 span {
    color: var(--pdp-accent, #ffc800);
}
.fleet-business__roi > p:not(.fleet-business__label) {
    margin: 18px 0 28px;
    font-size: 17px;
    line-height: 1.55;
}
.fleet-business__roi .fleet-btn {
    border-color: #0a0a0a;
    background: #0a0a0a;
    color: #fff !important;
}
.fleet-business__roi .fleet-btn:is(:hover, :focus-visible) {
    border-color: #fff;
    background: #fff;
    color: #0a0a0a !important;
}
.fleet-business__intro {
    margin: 14px 0 24px;
    color: #c9c9c9;
    font-size: 15px;
    line-height: 1.5;
}
.fleet-business__list {
    margin: 0;
}
.fleet-business__row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 9px 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: 17px;
}
.fleet-business__row dt,
.fleet-business__row dd {
    margin: 0;
}
.fleet-business__row dd {
    font-weight: var(--exg-weight-action);
}
.fleet-business__row--total {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 2px solid #fff;
    font-size: 22px;
}
.fleet-business__row--total dd {
    color: var(--pdp-accent, #ffc800);
}
.fleet-business__footnote {
    margin: 16px 0 0;
    color: #bdbdbd;
    font-size: 13px;
    font-weight: var(--exg-weight-strong);
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* --- Cost of a collision --------------------------------------------------------- */
.fleet-costs {
    background: #111;
    color: #fff;
}
.fleet-costs__title {
    margin: 0 0 6px;
    font-family: var(--exg-display);
    font-size: var(--exg-type-section-size, clamp(44px, 3.34vw, 48px));
    font-weight: var(--exg-weight-display);
    line-height: var(--exg-type-section-line, 1.083);
    text-transform: uppercase;
    color: #fff;
}
.fleet-costs__highlight { color: var(--pdp-accent, #febc16); }
.fleet-costs__intro {
    margin: 0 0 28px;
    font-size: 16px;
    color: #c9c9c9;
}
.fleet-costs__list {
    max-width: 520px;
    margin: 0 auto 8px;
}
.fleet-costs__row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 9px 0;
    font-size: 19px;
}
.fleet-costs__row dt { margin: 0; }
.fleet-costs__row dd {
    margin: 0;
    font-weight: var(--exg-weight-action);
}
.fleet-costs__row--total {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 2px solid #fff;
    font-size: 24px;
}
.fleet-costs__row--total dd { color: var(--pdp-accent, #febc16); }
.fleet-costs__footnote {
    margin: 0 0 32px;
    font-size: 16px;
    font-weight: var(--exg-weight-strong);
    text-transform: uppercase;
    color: #c9c9c9;
}

/* --- Contact form ------------------------------------------------------------------- */
.fleet-contact {
    border-top: 5px solid var(--pdp-accent, #ffc800);
    background: var(--exg-warm, #f6f5f1);
}
.fleet-contact .fleet-section__inner {
    padding-block: clamp(76px, 7vw, 104px);
}
.fleet-contact__form {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}
.fleet-contact__fallback {
    text-align: center;
    font-size: 16px;
    color: var(--pdp-muted, #707072);
}

/* --- Responsive ------------------------------------------------------------------------ */
@media (max-width: 900px) {
    .fleet-hero__inner { padding-block: 72px; }
    .fleet-videos__item { flex-basis: calc((100% - 20px) / 2); }
    .fleet-roi__inner { justify-content: center; text-align: center; }
    .fleet-roi__copy { text-align: center; }
    .fleet-business__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .fleet-section__inner,
    .fleet-hero__inner,
    .fleet-roi__inner { width: min(100% - 32px, 1180px); }
    .fleet-hero,
    .fleet-hero__inner { min-height: 520px; }
    .fleet-hero__media img { object-position: 62% center; }
    .fleet-hero__overlay--left { background: linear-gradient(90deg, rgba(10, 10, 10, .98), rgba(10, 10, 10, .74)); }
    .fleet-hero__title { font-size: var(--exg-type-hero-size, 46px); line-height: var(--exg-type-hero-line, 46px); }
    .fleet-videos__carousel { padding: 0 36px; }
    .fleet-videos__item { flex-basis: 100%; }
    .fleet-costs__title { font-size: var(--exg-type-section-size, 39px); }
    .fleet-costs__row { font-size: 16px; }
    .fleet-roi__title { font-size: var(--exg-type-card-size, 30px); line-height: var(--exg-type-card-line, 32px); }
    .fleet-business__inner { width: min(100% - 32px, 1180px); }
    .fleet-business__heading h2 { font-size: 40px; }
    .fleet-business__roi,
    .fleet-business__example { padding: 32px 24px; }
    .fleet-business__row { font-size: 15px; }
}

/* Match the primary category-landing hero: a gold sweep beneath a compact,
 * slanted copy panel with the vehicle photography left fully visible. */
.exg-fleet-page .fleet-hero--banner {
    height: clamp(560px, 41vw, 610px);
    min-height: 0;
    border-top: 0;
    background: var(--exg-black, #0a0a0a);
}

.exg-fleet-page .fleet-hero--banner::before {
    position: absolute;
    z-index: 1;
    inset: 0 auto 0 0;
    width: min(65%, 940px);
    border-left: 6px solid var(--pdp-accent, #ffc800);
    background: linear-gradient(98deg, #ffc800 0%, #ffc800 43%, rgba(255, 200, 0, 0.86) 62%, rgba(255, 200, 0, 0.22) 84%, rgba(255, 200, 0, 0) 100%);
    content: "";
    pointer-events: none;
}

.exg-fleet-page .fleet-hero__media img {
    object-position: left center;
}

.exg-fleet-page .fleet-hero__overlay--left {
    z-index: 2;
    inset: 12% auto 12% 0;
    width: 50%;
    height: auto;
    background: rgba(10, 10, 10, 0.92);
    clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
}

.exg-fleet-page .fleet-hero__inner--left {
    position: absolute;
    z-index: 3;
    top: calc(12% + 32px);
    left: max(64px, calc((100vw - 1440px) / 2 + 64px));
    display: block;
    width: min(620px, calc(50vw - 96px));
    min-height: 0;
    margin: 0;
    padding: 0;
    text-align: left;
}

.exg-fleet-page .fleet-hero__eyebrow {
    margin: 0 0 var(--exg-stack-eyebrow-gap, 8px);
    color: var(--pdp-accent, #ffc800);
    font-family: var(--exg-display);
    font-size: var(--exg-type-eyebrow-size, 14px);
    font-weight: var(--exg-weight-action);
    letter-spacing: var(--exg-tracking-label, 0.08em);
    line-height: var(--exg-type-eyebrow-line, 18px);
    text-transform: uppercase;
}

.exg-fleet-page .fleet-hero__title {
    max-width: 620px;
    margin: 0 0 var(--exg-stack-title-gap, 16px);
    font-size: clamp(48px, 3.75vw, 56px);
    line-height: 0.98;
}

.exg-fleet-page .fleet-hero__subtitle {
    max-width: 570px;
    margin: 0 0 var(--exg-stack-actions-gap, 24px);
    color: #fff;
    font-size: var(--exg-type-lede-size, 18px);
    font-weight: var(--exg-weight-regular, 500);
    line-height: var(--exg-type-lede-line, 27px);
}

.exg-fleet-page .fleet-hero__actions {
    display: flex;
    width: 100%;
    flex-flow: row wrap;
    align-items: stretch;
    gap: var(--exg-space-4, 16px);
    margin: 0;
    padding: 0 0 var(--exg-stack-actions-gap, 24px);
}

.exg-fleet-page .fleet-hero__actions .fleet-btn,
.exg-fleet-page .fleet-hero__actions .fleet-hero__phone {
    display: inline-flex;
    width: auto;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0 22px;
    border-radius: 4px;
    font-family: var(--exg-display);
    font-size: var(--exg-type-action-size, 15px);
    font-weight: var(--exg-weight-action);
    line-height: var(--exg-type-action-line, 20px);
    text-align: center;
    text-decoration: none !important;
    text-transform: uppercase;
}

.exg-fleet-page .fleet-hero__actions .fleet-btn {
    flex: 0 1 276px;
}

.exg-fleet-page .fleet-hero__actions .fleet-hero__phone {
    flex: 0 1 224px;
    border: 2px solid #fff;
    color: #fff !important;
}

.exg-fleet-page .fleet-hero__actions .fleet-hero__phone:is(:hover, :focus-visible) {
    border-color: var(--pdp-accent, #ffc800);
    color: var(--pdp-accent, #ffc800) !important;
}

.exg-fleet-page .fleet-hero__usa {
    width: 100%;
    gap: 10px;
    margin: 0;
    padding-top: 14px;
    border-top: 1px solid var(--pdp-accent, #ffc800);
}

.exg-fleet-page .fleet-hero__usa img {
    width: auto;
    height: 30px;
}

@media (max-width: 1240px) {
    .exg-fleet-page .fleet-hero__inner--left {
        left: max(40px, calc((100vw - 1120px) / 2));
    }
}

@media (max-width: 1120px) {
    .exg-fleet-page .fleet-hero--banner {
        height: 620px;
    }

    .exg-fleet-page .fleet-hero--banner::before {
        width: 73%;
    }

    .exg-fleet-page .fleet-hero__media img {
        object-position: 58% center;
    }

    .exg-fleet-page .fleet-hero__overlay--left {
        inset: 32px auto 32px 0;
        width: min(88%, 760px);
    }

    .exg-fleet-page .fleet-hero__inner--left {
        top: 64px;
        left: 40px;
        width: min(620px, calc(100% - 112px));
    }

    .exg-fleet-page .fleet-hero__title {
        font-size: clamp(44px, 5.8vw, 52px);
    }
}

@media (max-width: 760px) {
    .exg-fleet-page .fleet-hero--banner::before {
        content: none;
    }
}
