/* ── Base Swiper reset ───────────────────────────── */
.sbchk__swiper { overflow: hidden; }
.sbchk__swiper .swiper-wrapper { display: flex; align-items: stretch; }
.sbchk__swiper .swiper-slide { height: auto; flex-shrink: 0; }

/* ── Section ─────────────────────────────────────── */
.sbchk {
    content-visibility: auto;
    contain-intrinsic-size: 500px;
    background: #f4f4f4;
    padding: 5rem 0;
    font-family: 'Lato', sans-serif;
}

/* ── Header ──────────────────────────────────────── */
.sbchk__label {
    font-family: 'League Spartan', sans-serif;
    font-size: .7rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #030303;
    display: block;
    margin-bottom: 1rem;
    font-weight: 400;
}

.sbchk__title {
    font-family: 'League Spartan', sans-serif;
    font-size: clamp(1.9rem, 3.2vw, 2.75rem);
    font-weight: 300;
    line-height: 1.15;
    color: #030303;
    letter-spacing: -.01em;
    margin: 0 0 3.5rem;
}

.sbchk__title em {
    font-family: 'Lato', sans-serif;
    font-style: italic;
    font-weight: 300;
    font-size: .93em;
    letter-spacing: 0;
}

/* ── Card ────────────────────────────────────────── */
.sbchk__card {
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 4px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* ── Icon ────────────────────────────────────────── */
.sbchk__icon {
    display: block;
    width: auto;
    height: 44px;
    margin-bottom: 1.5rem;
    object-fit: contain;
    object-position: left;
}

/* ── Badge ───────────────────────────────────────── */
.sbchk__badge {
    font-family: 'League Spartan', sans-serif;
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #119199;
    display: block;
    margin-bottom: .4rem;
    font-weight: 400;
}

/* ── Name ────────────────────────────────────────── */
.sbchk__name {
    font-family: 'League Spartan', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 0.75rem 0;
    padding: 0;
    display: block;
}

/* ── Description ─────────────────────────────────── */
.sbchk__desc {
    font-size: 1rem;
    line-height: 1.65;
    color: #979797;
    font-weight: 300;
    margin: 0;
}

/* ── Navigation ──────────────────────────────────── */
.sbchk__nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.sbchk__arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #e2e2e2;
    border-radius: 4px;
    background: transparent;
    color: #030303;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background .2s, color .2s, border-color .2s;
}

.sbchk__arrow:hover {
    background: #030303;
    border-color: #030303;
    color: #fff;
}

.sbchk__arrow.swiper-button-disabled {
    opacity: .35;
    pointer-events: none;
}

/* ── Mobile ──────────────────────────────────────── */
@media (max-width: 767.98px) {
    .sbchk { padding: 3rem 0; }
}
