/* ---- Heading ---- */
.spring-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 40px;
}

.spring-heading-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 0;
}

.spring-eyebrow {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.28em;
    color: #7a7a75;
}

.spring-title {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #0f4d3f;
    margin: 0;
    text-transform: uppercase;
}

.spring-rule {
    width: 100%;
    height: 0;
}

/* ---- Slider ---- */
.spring-slider {
    position: relative;
    width: 100%;
    --slide-w: 336px;
    /* box width incl. side padding */
    --slide-h: 480px;
    --slide-pad: 8px;
    /* horizontal padding per slide -> gap between cards = 2 * pad */
    --wrap-pad: 0;
    --transition-duration: 900ms;
    --spring-easing: cubic-bezier(.76, .09, .215, 1);
}

.spring-viewport {
    width: 100%;
    overflow: hidden;
    padding: 0 var(--wrap-pad);
}

.spring-track {
    display: flex;
    transform: translate3d(0, 0, 0);
    transition: none;
    will-change: transform;
    backface-visibility: hidden;
}

.spring-track.is-settling {
    transition: transform var(--transition-duration) var(--spring-easing);
}

.spring-slide {
    flex-shrink: 0;
    width: var(--slide-w);
    height: 100%;
    padding: 0 var(--slide-pad);
    aspect-ratio: 3 / 4;
}

.spring-card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.spring-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.spring-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
    pointer-events: none;
}

.spring-label {
    position: absolute;
    top: 44px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

.spring-country {
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    font-family: Geist;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 22px;
    letter-spacing: 20%;
}

.spring-city {
    color: #ffffff;
    font-family: Geist;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 40px;
    leading-trim: NONE;
    line-height: 52px;
    letter-spacing: 4%;
    text-transform: uppercase;

}

/* ---- Nav buttons ---- */
.spring-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid #fff;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding:0;
    justify-content: center;
    z-index: 10;
    transition: background 200ms ease, box-shadow 200ms ease, opacity 200ms ease;
}
.spring-nav img {
    max-width: 24px;
    max-height: 24px;
}
.spring-nav:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.spring-nav[hidden] {
    display: none;
}

.spring-nav-prev {
    left: 32px;
}

.spring-nav-next {
    right: 32px;
}
.spring-nav.spring-nav-prev img{
    transform: rotate(180deg);
}
/* ---- Bullets ---- */
.spring-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 40px;
}

.spring-bullets {
    display: flex;
    gap: 6px;
    align-items: center;
}

.spring-bullet {
    width: 22px;
    height: 4px;
    border: none;
    padding: 0;
    margin: 0;
    border-radius: 2px;
    background: #e0e6eb;
    cursor: pointer;
    appearance: none;
    transition: background 220ms ease;
    min-height: unset;
    line-height: unset;
}

.spring-bullet.is-active {
    background: #e8b93a;
}

