/* Choe Magasin — social share row, appended after every article body.
   Matches the site's established organic article palette
   (choe-article.css), not the newer front-page greens. */

.choe-share {
    max-width: 780px;
    margin: 40px auto 0;
    padding: 24px 24px 0;
    border-top: 1px solid #E4DFD3;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-family: 'Work Sans', sans-serif;
}
.choe-share-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #657363;
}
.choe-share-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.choe-share-link {
    display: inline-flex;
    align-items: center;
    border: 1px solid #D8CBB9;
    border-radius: 999px;
    padding: 9px 18px;
    font-size: 13.5px;
    font-weight: 600;
    color: #27352E;
    background: transparent;
    text-decoration: none !important;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.choe-share-link:hover {
    background-color: #27352E;
    border-color: #27352E;
    color: #F4F2EC;
}
.choe-share-copy {
    color: #A77D65;
    border-color: #A77D65;
}
.choe-share-copy:hover {
    background-color: #A77D65;
    border-color: #A77D65;
    color: #F4F2EC;
}

@media (max-width: 600px) {
    .choe-share { padding-left: 24px; padding-right: 24px; }
    .choe-share-link { padding: 8px 14px; font-size: 13px; }
}
