.cl-article-sharing {
    display: grid;
    width: min(1120px, calc(100vw - 48px));
    grid-template-columns: minmax(220px, .8fr) minmax(0, 2.2fr);
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    margin: 64px auto 0;
    padding: 26px;
    border: 1px solid #e2e8e4;
    border-radius: 16px;
    background: #f8faf8;
    color: #17324d;
}

.cl-article-sharing__identity {
    min-width: 220px;
}

.cl-article-sharing__label {
    margin: 0;
    color: #3f7618;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.cl-article-sharing__intro {
    margin: 7px 0 0;
    color: #607487;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
}

.cl-article-sharing__controls {
    min-width: 0;
}

.cl-article-sharing__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.cl-article-sharing__button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 0;
    padding: 8px 17px;
    border: 1px solid #dfe6e2;
    border-radius: 11px;
    background: #fff;
    box-shadow: none;
    color: #17324d;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 170ms ease, background-color 170ms ease, color 170ms ease, transform 170ms ease;
}

.cl-article-sharing__button--x {
    width: 46px;
    padding-inline: 0;
}

.cl-article-sharing__button:hover {
    border-color: rgba(57, 169, 22, .48);
    background: #f4f9f2;
    color: #3f7618;
    transform: translateY(-1px);
}

.cl-article-sharing__button:focus-visible {
    outline: 2px solid #39a916;
    outline-offset: 2px;
}

.cl-article-sharing__button svg {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cl-article-sharing__button[hidden] {
    display: none;
}

.cl-article-sharing__feedback {
    min-height: 17px;
    margin: 7px 0 0;
    color: #3f7618;
    font-size: 12px;
    line-height: 1.35;
    text-align: right;
}

@media (min-width: 1024px) {
    .cl-article-sharing__actions {
        flex-wrap: nowrap;
    }

    .cl-article-sharing__button {
        flex: 0 0 auto;
    }
}

@media (max-width: 1239px) {
    .cl-article-sharing {
        grid-template-columns: 1fr;
        align-items: flex-start;
        gap: 20px;
    }

    .cl-article-sharing__controls {
        width: 100%;
    }

    .cl-article-sharing__actions {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .cl-article-sharing__feedback {
        text-align: left;
    }
}

@container article-main (max-width: 920px) {
    .cl-article-sharing {
        grid-template-columns: 1fr;
        align-items: flex-start;
        gap: 20px;
    }

    .cl-article-sharing__controls {
        width: 100%;
    }

    .cl-article-sharing__actions {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .cl-article-sharing__feedback {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .cl-article-sharing {
        width: calc(100vw - 32px);
        margin-top: 52px;
        padding: 22px;
    }

    .cl-article-sharing__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .cl-article-sharing__button {
        width: 100%;
        min-height: 46px;
        padding-inline: 14px;
    }

    .cl-article-sharing__button--whatsapp {
        order: 1;
    }

    .cl-article-sharing__button--copy {
        order: 2;
    }

    .cl-article-sharing__button--native {
        order: 3;
    }

    .cl-article-sharing__button--x {
        order: 4;
    }

    .cl-article-sharing__button--facebook {
        order: 5;
    }
}

@media (max-width: 420px) {
    .cl-article-sharing {
        padding: 20px;
    }
}

@media (max-width: 359px) {
    .cl-article-sharing__actions {
        grid-template-columns: 1fr;
    }
}
