.promo-badges__section-title {
    margin-bottom: 24px;
}

.promo-badges__list {
    display: flex;
    gap: 120px;
    align-items: stretch;
}

.promo-badges__item {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    display: block;
    text-decoration: none;
}

.promo-badges__media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.promo-badges__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-badges__placeholder {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    border-radius: 50%;
}

.promo-badges__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    pointer-events: none;
    font-family: Inter, Inter !important;
}

.promo-badges__title {
    font-size: 50px;
    font-family: Inter, Inter !important;
    font-weight: bold;
    line-height: 1;
    margin: 0 0 10px;
    white-space: pre-line;
}

.promo-badges__subtitle {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 12px;
}

.promo-badges__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 20px;
    line-height: 1.2;
    pointer-events: auto;
    white-space: nowrap;
    width: 200px;
}

@media (max-width: 959px) {
    .promo-badges__list {
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 20px;
    }

    .promo-badges__list::-webkit-scrollbar {
        display: none;
    }

    .promo-badges__item {
        flex: 0 0 calc(33.333% - 20px);
        min-width: 200px;
        scroll-snap-align: start;
    }

    .promo-badges__title,
    .promo-badges__subtitle {
        font-size: 20px;
    }

    .promo-badges__btn {
        font-size: 16px;
        padding: 5px 12px;
        width: auto;
    }
}

@media (max-width: 480px) {
 

    .promo-badges__title,
    .promo-badges__subtitle {
        font-size: 20px;
    }
}
