/* Модалка «Награды пользователя» */
.modal--large .modal__title--badges {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.badges-modal {
    padding: 0 4px 8px;
}

.badges-modal__section {
    margin-bottom: 28px;
}

.badges-modal__section:last-child {
    margin-bottom: 0;
}

.badges-modal__section-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 14px;
    color: var(--text-primary, #1a1a2e);
}

.badges-modal__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 14px;
}

@media (max-width: 900px) {
    .badges-modal__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .badges-modal__grid {
        grid-template-columns: 1fr;
    }
}

.badges-modal__item {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    padding: 16px 12px;
    background: var(--bg-light, rgba(0, 0, 0, 0.03));
}

.badges-modal__item--locked {
    opacity: 0.28;
    filter: grayscale(0.35);
}

.badges-modal__item--locked .badges-modal__name,
.badges-modal__item--locked .badges-modal__desc {
    color: var(--text-secondary, #6b7280);
}

.badges-modal__icon-wrap {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badges-modal__icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 10px;
}

.badges-modal__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.badges-modal__name {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary, #1a1a2e);
}

.badges-modal__desc {
    font-size: 12px;
    line-height: 1.35;
    color: var(--text-secondary, #6b7280);
}
