.compliance-section {
    position: relative;
    isolation: isolate;
    width: 100%;
    aspect-ratio: 3 / 2;
    box-sizing: border-box;
    padding: var(--section-padding-top) 20px 110px;
    overflow: hidden;
    background-image: url("assets/section-images/compliance-background.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.compliance-section::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.18) 0%,
        rgba(255, 255, 255, 0) 48%
    );
    content: "";
    pointer-events: none;
}

.compliance-section > .h1-body,
.compliance-section > .h2-body {
    color: #000000;
}

.compliance-section > .h2-body {
    max-width: 720px;
    margin: var(--body-copy-spacing) auto 0;
    line-height: 1.45;
}

.compliance-cards-viewport {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    margin-top: 54px;
    overflow: visible;
}

.compliance-cards {
    align-self: flex-start;
    flex: 0 0 1160px;
    display: flex;
    gap: 25px;
    width: 1160px;
    height: 230px;
    transform: scale(var(--compliance-scale, 1));
    transform-origin: top center;
}

.compliance-card {
    position: relative;
    flex: 0 0 212px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 230px;
    box-sizing: border-box;
    overflow: hidden;
    padding: 28px 20px 24px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.34);
    box-shadow:
        inset 1px 1px 0 rgba(255, 255, 255, 0.82),
        inset -1px -1px 0 rgba(255, 255, 255, 0.16),
        var(--drop-shadow);
    -webkit-backdrop-filter: blur(14px) saturate(0.82);
    backdrop-filter: blur(14px) saturate(0.82);
    color: #171B22;
}

.compliance-card::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.56) 0%,
        rgba(255, 255, 255, 0.14) 30%,
        rgba(255, 255, 255, 0) 58%
    );
    content: "";
    pointer-events: none;
}

.compliance-card > * {
    position: relative;
    z-index: 1;
}

.compliance-card-mark {
    display: flex;
    min-height: 82px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-align: center;
}

.compliance-card-icon {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: #343A44;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.45;
}

.compliance-card-mark strong {
    font-size: 19px;
    font-weight: 600;
    line-height: 1;
}

.compliance-card-mark span {
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
}

.compliance-card-mark-name strong {
    font-size: 21px;
}

.compliance-card-divider {
    width: 34px;
    height: 1px;
    margin: 10px 0 14px;
    background-color: rgba(23, 27, 34, 0.2);
}

.compliance-card h3 {
    margin: 0;
    color: #303640;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: 0.16em;
    text-align: center;
    text-transform: uppercase;
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .compliance-card {
        background-color: rgba(245, 245, 245, 0.88);
    }
}
