.pigskin-social-share {
    --pss-orange: #ed8b2a;
    --pss-dark: #18130e;
    --pss-paper: #fff8ec;
    --pss-border: rgba(24, 19, 14, 0.18);
    clear: both;
    margin: 1.25rem auto;
    width: 100%;
}

.pigskin-social-share__inner {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(237,139,42,0.12), rgba(255,255,255,0.4)),
        var(--pss-paper);
    border: 1px solid var(--pss-border);
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(24, 19, 14, 0.08);
    display: flex;
    gap: 14px;
    justify-content: space-between;
    padding: 12px 14px;
}

.pigskin-social-share__label {
    color: var(--pss-dark);
    flex: 0 0 auto;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1.2;
    text-transform: uppercase;
}

.pigskin-social-share__buttons {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.pigskin-social-share__button,
.pigskin-social-share__button:visited {
    align-items: center;
    appearance: none;
    background: #ffffff;
    border: 1px solid rgba(24, 19, 14, 0.16);
    border-radius: 999px;
    color: var(--pss-dark);
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: 0.84rem;
    font-weight: 750;
    gap: 7px;
    line-height: 1;
    min-height: 38px;
    padding: 9px 12px;
    text-decoration: none !important;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
    white-space: nowrap;
}

.pigskin-social-share__button:hover,
.pigskin-social-share__button:focus {
    background: #fffaf0;
    border-color: rgba(237, 139, 42, 0.55);
    box-shadow: 0 8px 18px rgba(24, 19, 14, 0.12);
    color: var(--pss-dark);
    outline: none;
    transform: translateY(-1px);
}

.pigskin-social-share__button:focus-visible {
    outline: 3px solid rgba(237, 139, 42, 0.32);
    outline-offset: 2px;
}

.pigskin-social-share__icon {
    align-items: center;
    background: var(--pss-dark);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 900;
    height: 22px;
    justify-content: center;
    min-width: 22px;
    padding: 0 5px;
}

.pigskin-social-share__button--copy .pigskin-social-share__icon,
.pigskin-social-share__button--native .pigskin-social-share__icon {
    background: var(--pss-orange);
}

.pigskin-social-share__button.is-copied {
    background: var(--pss-dark);
    color: #ffffff;
}

.pigskin-social-share__button.is-copied .pigskin-social-share__icon {
    background: #ffffff;
    color: var(--pss-dark);
}

.pigskin-social-share__button--native.is-hidden {
    display: none;
}

@media (max-width: 700px) {
    .pigskin-social-share__inner {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
    }

    .pigskin-social-share__label {
        text-align: center;
    }

    .pigskin-social-share__buttons {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .pigskin-social-share__button {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 430px) {
    .pigskin-social-share__buttons {
        grid-template-columns: 1fr;
    }
}
