.sscc-section,
.sscc-section * {
    box-sizing: border-box;
}

.sscc-section {
    width: 100%;
    overflow: visible;
}

.sscc-section-inner {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.sscc-section-header {
    position: relative;
    z-index: 5;
}

.sscc-header-sticky-yes .sscc-section-header {
    position: sticky;
    top: 20px;
}

.sscc-eyebrow {
    font-size: 18px;
    line-height: 1.25;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.sscc-main-heading {
    font-size: clamp(36px, 4vw, 64px);
    line-height: 1.08;
    font-weight: 800;
    margin: 0 0 18px;
}

.sscc-subheading {
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.3;
    font-weight: 700;
    margin: 0 0 22px;
}

.sscc-info {
    font-size: clamp(17px, 1.5vw, 24px);
    line-height: 1.45;
    margin: 0;
    max-width: 980px;
}

.sscc-cards-stack {
    display: flex;
    flex-direction: column;
}

.sscc-card-wrap {
    position: relative;
}

.sscc-card {
    position: relative;
    display: flex;
    width: 100%;
    overflow: hidden;
    isolation: isolate;
    z-index: calc(1 + var(--sscc-card-index, 0));
    transform-origin: center top;
    transition: transform 280ms ease, opacity 280ms ease, box-shadow 280ms ease;
}

.sscc-sticky-cards-yes .sscc-card {
    position: sticky;
}

.sscc-card.is-sscc-passed {
    transform: scale(0.985);
    opacity: 0.92;
}

.sscc-card-reverse {
    flex-direction: row-reverse;
}

.sscc-image-col {
    position: relative;
    min-width: 0;
    overflow: hidden;
}

.sscc-image-col img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
}

.sscc-content-col {
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: var(--sscc-content-bg, #0784ad);
    color: var(--sscc-text-color, #ffffff);
}

.sscc-card-title {
    color: inherit;
    font-size: clamp(24px, 2.2vw, 36px);
    line-height: 1.28;
    font-weight: 800;
    margin: 0 0 28px;
}

.sscc-card-body,
.sscc-card-body p,
.sscc-card-body li {
    color: inherit;
    font-size: clamp(17px, 1.35vw, 23px);
    line-height: 1.55;
}

.sscc-card-body p {
    margin: 0 0 20px;
}

.sscc-card-body p:last-child {
    margin-bottom: 0;
}

.sscc-card-body strong {
    font-weight: 800;
    color: inherit;
}

.sscc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    text-decoration: none;
    margin-top: 30px;
    transition: all 220ms ease;
}

@media (max-width: 1024px) {
    .sscc-header-sticky-yes .sscc-section-header {
        position: relative;
        top: auto !important;
    }
}

@media (max-width: 767px) {
    .sscc-card,
    .sscc-card-reverse {
        flex-direction: column;
        position: relative !important;
        top: auto !important;
    }

    .sscc-image-col,
    .sscc-content-col {
        flex-basis: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .sscc-card-wrap {
        padding-bottom: 0 !important;
    }
}
