/* AUK article share bar — sits opposite author/date inside .adw */

/* Make the author-date container a flex row to push share to opposite side */
.adw {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.auk-share {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-inline-start: auto; /* push to opposite side (LTR+RTL safe) */
}

.auk-share__label {
    font-size: 13px;
    font-weight: 400;
    color: #64748b;
    margin-inline-end: 4px;
}

.auk-share__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    line-height: 1;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.15s ease, filter 0.15s ease;
}
.auk-share__btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    color: #fff;
}
.auk-share__btn:focus-visible {
    outline: 2px solid #2d4d89;
    outline-offset: 2px;
}

.auk-share__btn--wa { background: #25d366; }
.auk-share__btn--tw { background: #000000; }
.auk-share__btn--fb { background: #1877f2; }
.auk-share__btn--tg { background: #26a5e4; }

/* X (Twitter) inline SVG */
.auk-share__x {
    width: 13px;
    height: 13px;
    display: block;
}

@media (max-width: 560px) {
    .adw {
        gap: 8px;
    }
    .auk-share {
        margin-inline-start: auto;
    }
    .auk-share__label {
        display: none;
    }
    .auk-share__btn {
        width: 30px;
        height: 30px;
        font-size: 12.5px;
    }
    .auk-share__x {
        width: 12px;
        height: 12px;
    }
}
