/**
 * Соцсети под строкой поиска (шапка / .art_search).
 * ОФЗ / ФТЗ / ФСЗ — не трогать МКТ25 и витринные слайдеры.
 * Ряд привязан к правому краю поля поиска (justify-content: flex-end).
 */
.sk-header-social {
    --sk-hs-brand: var(--c25-brand, var(--sk-brand, #497952));
    --sk-hs-brand-dark: var(--c25-brand-dark, var(--sk-brand-dark, #127023));
    --sk-hs-brand-soft: var(--c25-brand-soft, var(--sk-brand-soft, #e8efe6));

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    width: 100%;
    max-width: 100%;
    margin: 6px 0 0;
    padding: 0;
    box-sizing: border-box;
}

.sk-header-social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: var(--sk-hs-brand);
    text-decoration: none !important;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.sk-header-social__link:hover,
.sk-header-social__link:focus-visible {
    background: var(--sk-hs-brand-soft);
    color: var(--sk-hs-brand-dark);
    text-decoration: none !important;
    outline: none;
}

.sk-header-social__icon {
    display: block;
    width: 26px;
    height: 26px;
    fill: currentColor;
    transition: transform 0.18s ease;
    transform-origin: center center;
}

.sk-header-social__link:hover .sk-header-social__icon,
.sk-header-social__link:focus-visible .sk-header-social__icon {
    transform: scale(1.12);
}

.sk-header-social__link--max .sk-header-social__icon {
    stroke: currentColor;
}

/* Мобильный: чуть компактнее, без переполнения */
@media (max-width: 768px) {
    .sk-header-social {
        margin-top: 4px;
        gap: 2px;
        justify-content: flex-end;
    }

    .sk-header-social__link {
        flex: 0 0 36px;
        width: 36px;
        height: 36px;
    }

    .sk-header-social__icon {
        width: 24px;
        height: 24px;
    }
}
