.services-page {
    --services-logo-purple: #6834a5;
    --services-logo-blue: #4b73c6;
    --services-logo-cyan: #25b5e0;
    --services-logo-gradient: linear-gradient(90deg, var(--services-logo-purple) 0%, var(--services-logo-blue) 48%, var(--services-logo-cyan) 100%);
    background: #fff;
    color: #0f1f3f;
    font-family: var(--font-body);
}

.services-page .site-header .header__nav a[href="/service/"],
.services-page .site-header .header__nav a[href="/service/index.html"] {
    color: #29a7e1 !important;
}

.services-hero {
    position: relative;
    width: 100%;
    height: calc((350/1918) * 100vw);
    min-height: 280px;
    overflow: hidden;
    background: #dfeaf3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.services-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 39, 88, 0.5), rgba(41, 167, 225, 0.18));
}

.services-hero h1 {
    position: absolute;
    z-index: 1;
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 5.6vw, 86px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.services-main {
    width: 100%;
    padding: 28px var(--page-tab-gutter, calc((94 / 1918) * 100vw)) 72px;
    box-sizing: border-box;
}

.services-tabs {
    width: 100%;
    display: flex;
    align-items: flex-end;
    gap: clamp(44px, 6vw, 112px);
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: clamp(34px, 4vw, 62px);
}

.services-tab {
    position: relative;
    border: 0;
    background: none;
    padding: clamp(22px, 2.2vw, 34px) 0 clamp(28px, 2.6vw, 44px);
    color: #55585d;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: clamp(20px, calc((24/1918) * 100vw), 24px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    transition: color 0.2s ease;
}

.services-tab.active,
.services-tab:hover,
.services-tab:focus-visible {
    color: #29a7e1;
    outline: none;
}

.services-tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 3px;
    background: #29a7e1;
}

.services-section {
    width: 100%;
    margin: 0 auto clamp(64px, 7vw, 96px);
}

.cargo-showcase {
    width: 100%;
}

.cargo-showcase[hidden] {
    display: none !important;
}

.cargo-block {
    width: 100%;
    margin: 0 auto clamp(76px, 8vw, 126px);
    text-align: center;
}

.cargo-title {
    margin: 0;
    color: #29a7e1;
    font-family: var(--font-heading);
    font-size: clamp(34px, calc((64/1918) * 100vw), 64px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
    text-transform: uppercase;
    background: linear-gradient(90deg, #6834a5 0%, #4b73c6 48%, #25b5e0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cargo-title-image {
    display: block;
    width: auto;
    max-width: min(100%, 760px);
    height: clamp(34px, calc((48/1918) * 100vw), 48px);
    margin: 0 auto;
    object-fit: contain;
}

.cargo-description {
    max-width: 1180px;
    margin: clamp(14px, 1.5vw, 22px) auto clamp(32px, 4vw, 60px);
    color: #57595b !important;
    font-family: var(--font-body);
    font-size: clamp(16px, 1vw, 18px);
    line-height: 1.28;
}

.cargo-description * {
    color: inherit !important;
}

.cargo-carousel {
    --cargo-gap: clamp(18px, 2vw, 30px);
    --cargo-visible: 3;
    display: grid;
    grid-template-columns: clamp(34px, 4vw, 58px) minmax(0, 1fr) clamp(34px, 4vw, 58px);
    align-items: center;
    width: 100%;
    padding: 0;
}

.cargo-carousel__viewport {
    grid-column: 2;
    width: 100%;
    overflow: hidden;
}

.cargo-carousel__track {
    display: flex;
    gap: var(--cargo-gap);
    transform: translateX(0);
    transition: transform 0.42s ease;
    will-change: transform;
}

.cargo-carousel__item {
    flex: 0 0 calc((100% - (var(--cargo-gap) * (var(--cargo-visible) - 1))) / var(--cargo-visible));
    margin: 0;
    background: #f6f8fa;
    overflow: hidden;
}

.cargo-carousel__item img {
    width: 100%;
    aspect-ratio: 831 / 524;
    display: block;
    object-fit: cover;
    object-position: center;
}

.cargo-carousel__button {
    position: relative;
    top: auto;
    justify-self: center;
    z-index: 2;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #f1f2f4;
    color: #9aa0a6;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 0;
    line-height: 0;
    transform: none;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.cargo-carousel__button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    border: solid currentColor;
    border-width: 0 3px 3px 0;
    box-sizing: border-box;
}

.cargo-carousel__button--prev::before {
    transform: translate(-50%, -50%) rotate(135deg);
}

.cargo-carousel__button--next::before {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.cargo-carousel__button:hover,
.cargo-carousel__button:focus-visible {
    color: #fff;
    background: #29a7e1;
    transform: scale(1.04);
    outline: none;
}

.cargo-carousel__button:disabled {
    cursor: default;
    opacity: 0.42;
    transform: none;
}

.cargo-carousel__button--prev {
    grid-column: 1;
}

.cargo-carousel__button--next {
    grid-column: 3;
}

.cargo-carousel__dots {
    display: none;
    grid-column: 2;
    grid-row: 2;
}

.services-heading {
    margin: 0 0 clamp(24px, 3vw, 40px);
    color: var(--services-logo-blue);
    font-family: var(--font-heading);
    font-size: clamp(30px, 3vw, 48px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0;
    background: var(--services-logo-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-heading--image {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
}

.services-heading--image img {
    display: block;
    width: auto;
    max-width: min(100%, 760px);
    height: clamp(34px, calc((48/1918) * 100vw), 48px);
    object-fit: contain;
    object-position: left center;
}

.services-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 30px);
}

.services-card,
.services-card:link,
.services-card:visited {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    color: inherit;
    background: #f6f8fa;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services-card:hover,
.services-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(15, 33, 74, 0.13);
    outline: none;
}

.services-card[hidden],
.services-table-row[hidden],
.services-section[hidden] {
    display: none !important;
}

.services-card img {
    width: 100%;
    aspect-ratio: 1.28 / 1;
    display: block;
    object-fit: cover;
}

.services-card-body {
    min-height: 86px;
    padding: 18px 20px 20px;
}

.services-card h2 {
    margin: 0 0 8px;
    color: #57595b;
    font-family: var(--font-heading);
    font-size: clamp(16px, 1.1vw, 20px);
    font-weight: 700;
    line-height: 1.35;
}

.services-card p {
    margin: 0;
    color: #737475;
    font-size: clamp(13px, 0.95vw, 15px);
    line-height: 1.6;
}

.exhibition-featured-section {
    max-width: none;
}

.exhibition-card-grid {
    max-width: none;
    margin: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 2.6vw, 42px);
    align-items: start;
}

.exhibition-swipe-dots {
    display: none;
}

.exhibition-card-grid .services-card {
    min-height: 0;
    background: #f7f9fc;
}

.exhibition-card-grid .services-card img {
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: auto;
    object-fit: contain;
    background: #fff;
}

.exhibition-card-grid .services-card-body {
    min-height: 0;
    display: grid;
    align-content: start;
    gap: 8px;
    padding: clamp(16px, 1.15vw, 20px) clamp(20px, 1.65vw, 28px) clamp(18px, 1.25vw, 22px);
}

.exhibition-card-grid .services-card h2 {
    margin: 0;
}

.exhibition-card-meta-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(18px, 2vw, 34px);
    min-width: 0;
}

.exhibition-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 24px;
    min-width: 0;
}

.exhibition-card-meta + .exhibition-card-meta {
    margin-top: 0;
}

.exhibition-card-meta svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: #29a7e1;
}

.exhibition-card-meta__label {
    color: #57595b;
    font-weight: 700;
}

.exhibition-card-meta span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.exhibition-card-meta--location {
    flex: 0 1 auto;
}

.exhibition-card-meta--time {
    flex: 0 1 auto;
    justify-content: flex-start;
}

.fleet-section {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.fleet-layout {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(440px, 0.44fr) minmax(760px, 0.56fr);
    gap: clamp(42px, 4.5vw, 76px);
    align-items: start;
}

.fleet-copy {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: clamp(26px, 2.4vw, 42px) 0;
}

.fleet-accordion {
    border-bottom: 1px solid #dfe4ea;
}

.fleet-accordion:first-child {
    border-top: 0;
}

.fleet-accordion summary {
    min-height: clamp(70px, 5vw, 86px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 36px;
    align-items: center;
    gap: 20px;
    color: #15181d;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: clamp(17px, 1.15vw, 21px);
    font-weight: 600;
    line-height: 1.3;
    list-style: none;
}

.fleet-accordion summary::-webkit-details-marker {
    display: none;
}

.fleet-accordion[open] summary {
    color: #29a7e1;
}

.fleet-accordion__mark {
    position: relative;
    justify-self: end;
    width: 20px;
    height: 20px;
}

.fleet-accordion__mark::before,
.fleet-accordion__mark::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 2px;
    background: #29a7e1;
    transform: translate(-50%, -50%);
}

.fleet-accordion__mark::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.fleet-accordion[open] .fleet-accordion__mark::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
}

.fleet-accordion__content {
    max-width: 650px;
    padding: 0 50px clamp(52px, 6vw, 88px) 0;
    color: #4d4f53;
    font-size: clamp(15px, 1.02vw, 18px);
    line-height: 1.78;
}

.fleet-table-card {
    height: 520px;
    max-height: 520px;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid rgba(75, 115, 198, 0.18);
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(15, 33, 74, 0.1);
    scrollbar-color: #29a7e1 #dce6ee;
    scrollbar-width: thin;
}

.fleet-table-card::-webkit-scrollbar {
    width: 8px;
}

.fleet-table-card::-webkit-scrollbar-track {
    background: #dce6ee;
}

.fleet-table-card::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: #29a7e1;
}

.fleet-group {
    margin: 0;
    background: #fff;
}

.fleet-group + .fleet-group {
    border-top: 18px solid #f3f7fb;
}

.fleet-group h2 {
    margin: 0;
    padding: clamp(12px, 1vw, 16px) clamp(22px, 2.6vw, 40px) clamp(10px, 0.8vw, 13px);
    color: #fff;
    background: var(--services-logo-gradient);
    font-family: var(--font-heading);
    font-size: clamp(21px, 1.7vw, 31px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
    text-transform: uppercase;
}

.fleet-group h2 span {
    font-size: clamp(12px, 0.86vw, 16px);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.fleet-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    color: #17345f;
    background: #fff;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.fleet-table tr:nth-child(odd) {
    background: #f7fbff;
}

.fleet-table tr:nth-child(even) {
    background: #edf5ff;
}

.fleet-table tr:hover {
    background: #e7f4ff;
}

.fleet-table td {
    height: clamp(36px, 2.25vw, 44px);
    padding: 4px clamp(12px, 1.2vw, 22px);
    border-top: 1px solid #d7e4f5;
    font-size: clamp(12px, 0.9vw, 16px);
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.fleet-table td:first-child {
    width: 42%;
    padding-left: clamp(28px, 4vw, 72px);
}

.fleet-table td:nth-child(2) {
    width: 28%;
}

.fleet-table td:nth-child(3) {
    width: 30%;
}

.fleet-table td + td::before {
    content: "|";
    margin-right: clamp(18px, 2vw, 34px);
    color: rgba(41, 167, 225, 0.62);
    font-weight: 800;
}

.fleet-table small {
    margin-right: clamp(10px, 1vw, 18px);
    font-size: clamp(8px, 0.58vw, 11px);
    font-weight: 800;
    color: #5b728d;
}

.services-list-section {
    margin-bottom: clamp(56px, 6vw, 84px);
}

.services-table {
    width: 100%;
    color: #737475;
    font-family: var(--font-body);
}

.services-table-row {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(130px, 0.38fr) minmax(360px, 0.5fr);
    align-items: center;
    gap: 24px;
    min-height: 72px;
    padding: 0 18px;
    border-bottom: 1px solid #edf0f3;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.45;
}

.services-list-section[data-service-panel="exhibition"] .services-table-row {
    grid-template-columns: minmax(0, 1fr) minmax(140px, 0.34fr) minmax(170px, 0.42fr) minmax(360px, 0.5fr);
}

.services-table-head {
    min-height: 42px;
    color: #fff;
    background: var(--services-logo-gradient);
    border-bottom: 0;
    font-weight: 700;
}

.services-table-head span:last-child,
.services-table-row .services-action-group {
    justify-self: center;
}

.services-action-group {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.services-action,
.services-action:link,
.services-action:visited {
    min-width: 166px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border: 2px solid var(--services-logo-blue);
    border-radius: 999px;
    color: var(--services-logo-blue);
    background: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.services-action-group .services-action {
    min-width: 142px;
    padding-left: 16px;
    padding-right: 16px;
}

.services-action:hover,
.services-action:focus-visible {
    color: #fff;
    border-color: transparent;
    background: var(--services-logo-gradient);
    transform: translateY(-1px);
    outline: none;
}

.services-action--details,
.services-action--details:link,
.services-action--details:visited {
    border-color: #29a7e1;
    color: #29a7e1;
}

.exhibition-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: clamp(28px, 3vw, 48px);
}

.exhibition-detail-actions .services-action:hover,
.exhibition-detail-actions .services-action:focus-visible {
    color: #0f1f3f !important;
    border-color: var(--services-logo-blue);
    background: #f3f8ff;
    transform: translateY(-1px);
}

.exhibition-detail-actions .services-action--details:hover,
.exhibition-detail-actions .services-action--details:focus-visible {
    color: #168fd0 !important;
    border-color: #29a7e1;
    background: #eef9ff;
}

.exhibition-detail-meta {
    display: flex;
    align-items: center;
    gap: clamp(28px, 3vw, 54px);
    flex-wrap: wrap;
    margin: clamp(18px, 1.5vw, 26px) 0 clamp(26px, 2.4vw, 42px);
    color: #57595b;
    font-family: var(--font-body);
}

.exhibition-detail-meta__item {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.exhibition-detail-meta__item svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: #29a7e1;
}

.exhibition-detail-meta__item span {
    min-width: 0;
    word-break: break-word;
}

.exhibition-detail-page .sidebar-card-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    background: #fff;
}

@media (max-width: 1024px) {
    .cargo-carousel {
        --cargo-visible: 3;
    }

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

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

    .exhibition-card-meta-row {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 8px 16px;
    }

    .exhibition-card-meta--location,
    .exhibition-card-meta--time {
        flex: 1 1 180px;
        justify-content: flex-start;
    }

    .services-table-row {
        grid-template-columns: minmax(0, 1fr) minmax(110px, 0.35fr) minmax(300px, 0.65fr);
        gap: 16px;
    }

    .services-list-section[data-service-panel="exhibition"] .services-table-row {
        grid-template-columns: minmax(0, 1fr) minmax(120px, 0.35fr) minmax(150px, 0.45fr) minmax(300px, 0.65fr);
    }

    .services-action-group {
        gap: 8px;
    }

    .services-action-group .services-action {
        min-width: 132px;
        padding: 8px 12px;
        font-size: 13px;
    }

    .fleet-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .fleet-copy {
        padding: 0;
    }
}

@media (min-width: 1200px) {
    .fleet-layout {
        grid-template-columns: minmax(480px, 0.43fr) minmax(760px, 0.57fr);
        gap: clamp(38px, 3.8vw, 68px);
    }
}

@media (max-width: 768px) {
    .services-hero {
        height: 220px;
    }

    .services-main {
        padding: 22px 20px 52px;
    }

    .services-tabs {
        gap: 28px;
        overflow-x: auto;
        margin-bottom: 42px;
    }

    .services-tab {
        flex: 0 0 auto;
        font-size: 18px;
        padding: 12px 0;
    }

    .services-heading {
        font-size: 30px;
    }

    .cargo-block {
        margin-bottom: 58px;
    }

    .cargo-title {
        font-size: clamp(30px, 8vw, 36px);
    }

    .cargo-title-image {
        height: clamp(28px, 8vw, 36px);
        max-width: 100%;
    }

    .cargo-description {
        margin-bottom: 24px;
        font-size: 16px;
    }

    .cargo-carousel {
        --cargo-visible: 1;
        --cargo-gap: 16px;
        padding: 0 38px;
    }

    .cargo-carousel__button {
        width: 32px;
        height: 32px;
        font-size: 28px;
    }

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

    .exhibition-card-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
    }

    .fleet-accordion summary {
        min-height: 66px;
        font-size: 17px;
    }

    .fleet-accordion__content {
        padding: 0 0 30px;
        font-size: 15px;
    }

    .fleet-table-card {
        height: auto;
        max-height: 70vh;
        overflow-x: auto;
        overflow-y: auto;
        border-width: 2px;
    }

    .fleet-group {
        min-width: 720px;
    }

    .fleet-group h2 {
        padding-left: 28px;
        font-size: 24px;
    }

    .fleet-table td {
        height: 34px;
        font-size: 13px;
    }

    .fleet-table td:first-child {
        padding-left: 32px;
    }

    .services-table {
        display: grid;
        gap: 12px;
    }

    .services-table-row {
        grid-template-columns: 1fr;
        gap: 8px;
        min-height: 0;
        padding: 16px;
        border: 1px solid #edf0f3;
        background: #fff;
    }

    .services-table-head {
        display: none;
    }

    .services-table-row span:nth-child(2)::before {
        content: "Category: ";
        color: #0f1f3f;
        font-weight: 700;
    }

    .services-list-section[data-service-panel="exhibition"] .services-table-row span:nth-child(2)::before {
        content: "Location: ";
    }

    .services-list-section[data-service-panel="exhibition"] .services-table-row span:nth-child(3)::before {
        content: "Duration: ";
        color: #0f1f3f;
        font-weight: 700;
    }

    .services-table-row .services-action {
        justify-self: start;
        margin-top: 4px;
    }

    .services-table-row .services-action-group {
        justify-self: start;
    }

    .services-action-group {
        justify-content: flex-start;
        flex-wrap: wrap;
        white-space: normal;
    }

    .services-action-group .services-action {
        min-width: 142px;
    }

}

@media (max-width: 1200px) {
    .cargo-carousel {
        grid-template-columns: minmax(0, 1fr);
    }

    .cargo-carousel__viewport,
    .cargo-carousel__dots {
        grid-column: 1;
    }

    .services-list-section[data-service-panel="exhibition"] .services-table {
        display: grid;
        gap: 12px;
    }

    .services-list-section[data-service-panel="exhibition"] .services-table-head {
        display: none !important;
        padding: 0;
        border: 0;
    }

    .services-list-section[data-service-panel="exhibition"] .services-table-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        min-height: 0;
        padding: 16px 18px;
    }

    .services-list-section[data-service-panel="exhibition"] .services-table-row > span:first-child {
        color: #57595b;
        font-size: 17px;
        line-height: 1.25;
    }

    .services-list-section[data-service-panel="exhibition"] .services-table-row > span:nth-child(2)::before,
    .services-list-section[data-service-panel="exhibition"] .services-table-row > span:nth-child(3)::before {
        color: #0f1f3f;
        font-weight: 700;
    }

    .services-list-section[data-service-panel="exhibition"] .services-action-group {
        justify-self: start;
        justify-content: flex-start;
        margin-top: 2px;
    }

    .exhibition-card-grid {
        display: flex;
        grid-template-columns: none;
        gap: 0;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .exhibition-card-grid::-webkit-scrollbar {
        display: none;
    }

    .exhibition-card-grid .services-card {
        flex: 0 0 100%;
        scroll-snap-align: start;
    }

    .exhibition-swipe-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin: 14px 0 28px;
    }

    .exhibition-swipe-dot {
        width: 7px;
        height: 7px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: #cbd5e1;
    }

    .exhibition-swipe-dot.is-active {
        background: #29a7e1;
        transform: scale(1.2);
    }

    .cargo-block {
        text-align: left;
    }

    .cargo-title-image {
        height: 20px;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .services-heading--image img {
        width: auto;
        max-width: 100%;
        height: 20px;
        object-fit: contain;
    }

    .cargo-description {
        max-width: none;
        margin-top: 12px;
        margin-bottom: 22px;
        font-size: 15px;
        line-height: 1.42;
        text-align: left;
    }

    .cargo-carousel {
        --cargo-visible: 1;
        --cargo-gap: 0px;
        padding: 0;
    }

    .cargo-carousel__button {
        display: none;
    }

    .cargo-carousel__dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 12px;
    }

    .cargo-carousel__dot {
        width: 7px;
        height: 7px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: #cbd5e1;
        cursor: pointer;
        transition: transform 0.2s ease, background-color 0.2s ease;
    }

    .cargo-carousel__dot.is-active {
        background: #29a7e1;
        transform: scale(1.2);
    }
}

@media (min-width: 1901px) {
    .services-main {
        --page-tab-gutter: calc((94 / 1918) * 100vw);
    }
}

@media (min-width: 1581px) and (max-width: 1900px) {
    .services-main {
        --page-tab-gutter: calc((94 / 1918) * 100vw);
    }
}

@media (min-width: 1521px) and (max-width: 1580px) {
    .services-main {
        --page-tab-gutter: calc((94 / 1918) * 100vw);
    }
}

@media (min-width: 1201px) and (max-width: 1520px) {
    .services-main {
        --page-tab-gutter: calc((94 / 1918) * 100vw);
    }
}

@media (max-width: 1200px) {
    .services-main {
        --page-tab-gutter: 5vw;
    }
}

@media (min-width: 1480px) {
    .cargo-carousel {
        --cargo-visible: 4;
    }
}

@media (min-width: 1800px) {
    .fleet-layout {
        grid-template-columns: minmax(600px, 0.42fr) minmax(980px, 0.58fr);
        gap: 58px;
    }

    .fleet-copy {
        padding-left: clamp(10px, 1vw, 22px);
    }

    .fleet-table td:first-child {
        padding-left: clamp(46px, 3.2vw, 70px);
    }
}
