.top-rated {
    background-color: #EEF4FF;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    max-width: max-content;
}

.top-rated__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.top-rated__badge-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    object-position: center;
}

.top-rated__badge-label {
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    color: #1663E8;
    text-transform: uppercase;
}

.top-rated__title {
    margin: 12px 0 0 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
    text-align: center;
    color: rgba(0, 0, 0, 0.90);
}

.top-rated__title-accent {
    color: #1663E8;
}

.top-rated__list {
    margin: 24px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    padding: 0;
}

.top-rated__item {
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 8px;
    padding: 24px;
    min-width: calc(234px - 48px);
    max-width: calc(234px - 48px);
    width: 100%;
}

.top-rated__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    width: max-content;
    height: 65px;
}

.top-rated__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.top-rated__rating {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.top-rated__rating .rating-star {
    margin: 0;
}

.top-rated__value {
    font-size: 24px;
    font-weight: 500;
    line-height: 150%;
    color: rgba(0, 0, 0, 0.80);
    margin: 0;
}

.top-rated__button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 100%;
    width: 100%;
    height: 44px;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
    background-color: #1663E8;

    text-decoration: none;
    transition: opacity .3s ease;
}

@media (any-hover: hover) {
    .top-rated__button:hover {
        opacity: 0.88;
    }
}

@media (max-width: 767px) {
    .top-rated__item {
        max-width: 100%;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .top-rated__button {
        grid-column: span 2;
    }

    .top-rated__logo {
        width: auto;
        height: 54px;
    }

    .top-rated__logo img {
        object-position: left;
    }

    .top-rated__rating {
        align-items: flex-end;
    }

    .top-rated__title {
        font-size: 24px;
    }

    .top-rated__value {
        font-size: 20px;
    }
}
