.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: end;
    margin-top: 25px;
}
.hero-badge {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 12px 18px;
    background-color: rgba(255,255,255,.92);
    border-radius: 5px;
    text-decoration: none;
}
.hero-badge__title {
    font-weight: bold;
    color: #000;
    line-height: 1.3;
}
.hero-badge__stars {
    color: #fbbc04;
    font-size: 18px;
    letter-spacing: 3px;
    line-height: 1.2;
}
.hero-badge__brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    color: #000;
    line-height: 1.3;
}
.hero-badge__brand img {
    width: 28px;
    height: 28px;
}
.hero-badge__note {
    font-size: 13px;
    color: #4a4a4a;
    line-height: 1.4;
}
@media only screen and (max-width: 767px) {
    .hero-badges {
        gap: 10px;
        justify-content: center;
        margin-top: 15px;
    }
    .hero-badge {
        padding: 10px 14px;
    }
}
