.social-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin: 24px 0;
}

.social-share__label {
    font-size: 16px;
    font-weight: 600;
    color: #2a2f35;
}

.social-share__list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.social-share__item {
    margin: 0;
    padding: 0;
}

.social-share__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    text-decoration: none;
    transition: transform .15s ease, background .15s ease, opacity .15s ease;
    position: relative;
}

.social-share__link:hover,
.social-share__link:focus {
    transform: translateY(-1px);
    background: #c12033;
    color: #fff;
    outline: none;
}

.social-share__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.social-share__icon svg {
    width: 16px;
    height: 16px;
    display: block;
}

.social-share__item--copy .social-share__link.is-copied {
    background: #2e7d32;
}

.social-share__feedback {
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: #2a2f35;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    padding: 6px 8px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

.social-share__feedback.is-visible {
    opacity: 1;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

html[dir="rtl"] .social-share {
    justify-content: flex-start;
}
