.sst-share {
    --sst-accent: #171717;
    width: 100%;
    margin: 28px 0 24px;
    font-family: inherit;
}

.sst-share__heading {
    display: block;
    margin: 0 0 10px;
    color: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.sst-share__buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
}

.sst-share__button {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 15px;
    border: 1px solid rgba(0, 0, 0, .18);
    background: transparent;
    color: inherit;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: none;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease;
}

.sst-share--pills .sst-share__button { border-radius: 999px; }
.sst-share--rounded .sst-share__button { border-radius: 10px; }
.sst-share--square .sst-share__button { border-radius: 2px; }

.sst-share__button svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: currentColor;
}

.sst-share__button:hover,
.sst-share__button:focus-visible {
    transform: translateY(-2px);
    border-color: var(--sst-accent);
    background: var(--sst-accent);
    color: #fff;
    box-shadow: 0 7px 20px rgba(0, 0, 0, .12);
}

.sst-share__button:focus-visible {
    outline: 3px solid rgba(0, 0, 0, .2);
    outline-offset: 3px;
}

.sst-share__button:active { transform: translateY(0); }

.sst-share__button--native {
    border-color: var(--sst-accent);
    background: var(--sst-accent);
    color: #fff;
}

.sst-share__button--whatsapp:hover,
.sst-share__button--whatsapp:focus-visible { border-color: #1fa855; background: #1fa855; }
.sst-share__button--facebook:hover,
.sst-share__button--facebook:focus-visible { border-color: #1877f2; background: #1877f2; }
.sst-share__button--x:hover,
.sst-share__button--x:focus-visible { border-color: #000; background: #000; }
.sst-share__button--linkedin:hover,
.sst-share__button--linkedin:focus-visible { border-color: #0a66c2; background: #0a66c2; }
.sst-share__button--telegram:hover,
.sst-share__button--telegram:focus-visible { border-color: #229ed9; background: #229ed9; }
.sst-share__button--email:hover,
.sst-share__button--email:focus-visible { border-color: #6b7280; background: #6b7280; }
.sst-share__button--copy.is-copied { border-color: #14804a; background: #14804a; color: #fff; }

.sst-share--icons-only .sst-share__button {
    width: 44px;
    min-width: 44px;
    padding: 10px;
}

.sst-share__message {
    min-height: 18px;
    margin-top: 7px;
    color: #14804a;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.sst-screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 640px) {
    .sst-share__buttons { gap: 8px; }
    .sst-share__button { flex: 1 1 auto; padding: 10px 12px; font-size: 13px; }
    .sst-share__button--native { flex-basis: 100%; }
    .sst-share--icons-only .sst-share__button { flex: 0 0 44px; }
}

@media (prefers-reduced-motion: reduce) {
    .sst-share__button { transition: none; }
    .sst-share__button:hover,
    .sst-share__button:focus-visible { transform: none; }
}

.sst-share__button[hidden] { display: none !important; }
.sst-share__button:visited { color: inherit; }
.sst-share__button--native:visited { color: #fff; }
