.zep-share-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin: 24px 0;
}

.zep-share-buttons__label {
    font-weight: 600;
    color: #333;
}

.zep-share-buttons__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.zep-share-buttons__list > li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.zep-share-buttons__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid #d9d9d9;
    border-radius: 999px;
    background: #fff;
    color: #333;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.zep-share-buttons__btn:hover,
.zep-share-buttons__btn:focus {
    text-decoration: none;
    color: #fff;
    border-color: transparent;
}

.zep-share-buttons__icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
}

.zep-share-buttons__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.zep-share-buttons__btn--whatsapp:hover,
.zep-share-buttons__btn--whatsapp:focus {
    background: #25d366;
}

.zep-share-buttons__btn--bluesky:hover,
.zep-share-buttons__btn--bluesky:focus {
    background: #0085ff;
}

.zep-share-buttons__btn--facebook:hover,
.zep-share-buttons__btn--facebook:focus {
    background: #1877f2;
}

.zep-share-buttons__btn--email:hover,
.zep-share-buttons__btn--email:focus {
    background: #6b7280;
}

.zep-share-buttons__btn--copy:hover,
.zep-share-buttons__btn--copy:focus {
    background: #f39200;
}

.zep-share-buttons__btn--copy.is-copied,
.zep-share-buttons__btn--copy.is-copied:hover,
.zep-share-buttons__btn--copy.is-copied:focus {
    background: #2e7d32;
    color: #fff;
    border-color: transparent;
}

@media (max-width: 480px) {
    .zep-share-buttons__text {
        display: none;
    }

    .zep-share-buttons__btn {
        padding: 10px;
    }
}
