body.ice-home .ice-v2-hero__grid--rotator {
    grid-template-columns: minmax(0, 1.08fr) minmax(470px, .92fr);
    gap: 56px;
}

.ice-hero-rotator {
    position: relative;
    z-index: 2;
    width: min(510px, 100%);
    margin: 36px 0 36px auto;
    overflow: hidden;
    border: 1px solid rgba(178, 204, 229, .72);
    border-radius: 24px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 28px 70px rgba(21, 36, 50, .13);
    backdrop-filter: blur(12px);
}

.ice-hero-rotator::before {
    position: absolute;
    z-index: 0;
    top: -90px;
    right: -78px;
    width: 360px;
    height: 360px;
    border-radius: 48% 52% 50% 50%;
    background: var(--brand-neutral, #b2cce5);
    content: "";
    opacity: .34;
}

.ice-hero-rotator__stage {
    position: relative;
    height: 455px;
}

.ice-hero-slide {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    opacity: 0;
    pointer-events: none;
    transform: translateX(18px);
    visibility: hidden;
    transition: opacity .45s ease, transform .45s ease, visibility .45s;
}

.ice-hero-slide.is-active {
    z-index: 2;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
}

.ice-hero-slide__image {
    position: relative;
    display: grid;
    min-height: 0;
    padding: 34px 42px 16px;
    place-items: center;
}

.ice-hero-slide__image::before {
    position: absolute;
    inset: 38px 70px 24px;
    border: 1px solid rgba(10, 175, 194, .13);
    border-radius: 50%;
    content: "";
}

.ice-hero-slide__image img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    max-height: 320px;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 20px 18px rgba(21, 36, 50, .16));
}

.ice-hero-slide__copy {
    position: relative;
    z-index: 3;
    display: grid;
    min-height: 104px;
    padding: 18px 22px;
    border-top: 1px solid rgba(178, 204, 229, .62);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    background: rgba(255, 255, 255, .96);
}

.ice-hero-slide__copy small {
    display: block;
    margin-bottom: 5px;
    color: var(--v2-teal-dark, #078c9c);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ice-hero-slide__copy strong {
    display: block;
    max-width: 360px;
    color: var(--brand-navy, #152432);
    font-family: "Unbounded", "Manrope", sans-serif;
    font-size: 13px;
    line-height: 1.35;
    text-transform: uppercase;
}

.ice-hero-slide__more {
    display: grid;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    place-items: center;
    color: #fff;
    background: var(--brand-teal, #0aafc2);
    font-size: 19px;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease;
}

.ice-hero-slide__more:hover {
    color: #fff;
    background: var(--v2-teal-dark, #078c9c);
    transform: translateX(2px);
}

.ice-hero-rotator__controls {
    position: relative;
    z-index: 4;
    display: flex;
    min-height: 58px;
    padding: 0 20px;
    border-top: 1px solid rgba(178, 204, 229, .62);
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: #fff;
}

.ice-hero-rotator__count {
    min-width: 56px;
    color: #617783;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
}

.ice-hero-rotator__count strong {
    color: var(--brand-navy, #152432);
    font-size: 15px;
}

.ice-hero-rotator__dots {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 7px;
}

.ice-hero-rotator__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #c8d8e1;
    cursor: pointer;
    transition: width .25s ease, background .25s ease;
}

.ice-hero-rotator__dot[aria-selected="true"] {
    width: 25px;
    background: var(--brand-teal, #0aafc2);
}

.ice-hero-rotator__arrows {
    display: flex;
    gap: 7px;
}

.ice-hero-rotator__arrow {
    display: grid;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid #cbdbe4;
    border-radius: 9px;
    place-items: center;
    color: var(--brand-navy, #152432);
    background: #fff;
    cursor: pointer;
    font-size: 17px;
}

.ice-hero-rotator__arrow:hover {
    border-color: var(--brand-teal, #0aafc2);
    color: var(--v2-teal-dark, #078c9c);
}

@media (max-width: 1199px) {
    body.ice-home .ice-v2-hero__grid--rotator { grid-template-columns: minmax(0, 1fr) 430px; gap: 30px; }
    .ice-hero-rotator__stage { height: 430px; }
    .ice-hero-slide__image { padding-inline: 32px; }
}

@media (max-width: 991px) {
    body.ice-home .ice-v2-hero__grid--rotator { grid-template-columns: 1fr; }
    .ice-hero-rotator { width: min(620px, 100%); margin: 12px auto 48px; }
    .ice-hero-rotator__stage { height: 455px; }
}

@media (max-width: 575px) {
    .ice-hero-rotator { margin-bottom: 34px; border-radius: 18px; }
    .ice-hero-rotator__stage { height: 385px; }
    .ice-hero-slide__image { padding: 26px 28px 10px; }
    .ice-hero-slide__image img { max-height: 255px; }
    .ice-hero-slide__copy { min-height: 118px; padding: 15px 16px; gap: 12px; }
    .ice-hero-slide__copy strong { font-size: 11px; }
    .ice-hero-rotator__controls { padding-inline: 14px; }
    .ice-hero-rotator__dots { gap: 5px; }
    .ice-hero-rotator__dot { width: 7px; height: 7px; }
    .ice-hero-rotator__dot[aria-selected="true"] { width: 18px; }
}

@media (prefers-reduced-motion: reduce) {
    .ice-hero-slide,
    .ice-hero-rotator__dot,
    .ice-hero-slide__more { transition: none; }
}


/* ICE-HOME-FAB-HIDDEN: the homepage already has two visible CTAs. */
body.ice-home .ice-request-fab {
    display: none !important;
}
