.content-tabs-note__tab {
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    cursor: pointer;
    outline-offset: 0.2rem;
}

.content-tabs-note__tab.is-active {
    transform: translateY(-0.125rem);
}

/* Block: advantages-stat-dots-pattern */
.advantages-stat-dots-pattern__bg-dots {
    background-image: radial-gradient(
        circle,
        color-mix(in srgb, var(--bs-body-color) 12%, transparent) 1px,
        transparent 1px
    );
    background-size: 28px 28px;
}

.advantages-stat-dots-pattern__card--hover {
    transition: transform 0.2s ease;
}

.advantages-stat-dots-pattern__card--hover:hover {
    transform: scale(1.05);
}

@keyframes advantages-stat-dots-pattern-star-pulse-kf {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.45;
    }
}

.advantages-stat-dots-pattern__star--pulse {
    animation: advantages-stat-dots-pattern-star-pulse-kf 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes advantages-stat-dots-pattern-star-bounce-kf {
    0%,
    100% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.advantages-stat-dots-pattern__star--bounce {
    animation: advantages-stat-dots-pattern-star-bounce-kf 1s infinite;
}

