/* Блок «Поделиться» на странице события.
   Пришёл на смену calendar-button.css: кнопку «В календарь» убрали целиком
   (владелец 02.09.2026), а вместе с ней — стили её модалок и уведомлений. */

.sharing-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 10px 0;
    line-height: 1.6;
}

.sharing-section__group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sharing-section__label {
    line-height: 1;
}

.sharing-section a,
.sharing-section .share-copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    margin-right: 0;
    transition: transform 0.2s ease;
}

.sharing-section a:hover,
.sharing-section .share-copy:hover {
    transform: scale(1.1);
}

/* Копировать ссылку: иконка того же размера, что VK/TG, но своим цветом —
   это действие на странице, а не переход в чужую сеть. */
.share-copy {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--accent, #2D493D);
    font-size: 1.5em;
    width: 32px;
    min-width: 32px;
    line-height: 1;
}

.share-copy:active { transform: scale(0.95); }

.share-copy:focus-visible {
    outline: 2px solid var(--accent, #2D493D);
    outline-offset: 2px;
}

.share-copy__hint {
    font-size: 13px;
    color: var(--accent, #2D493D);
    white-space: nowrap;
}
