/* Author Box – v1.0.0 */

.ab-author-box {
    margin: 16px auto 32px;
    padding: 0 14px;
    max-width: 828px;
    font-family: Georgia, serif;
}

.ab-author-box *,
.ab-author-box *::before,
.ab-author-box *::after {
    box-sizing: border-box;
}

.ab-author-box__inner {
    background: #FDF8F6;
    border-radius: 10px;
    padding: 28px 32px;
    border: 1px solid #F0E4E8;
}

/* ── Header row ── */

.ab-author-box__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.ab-author-box__left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

/* ── Photo ── */

.ab-author-box__photo {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    aspect-ratio: 1 / 1;
    border-radius: 9999px !important;
    object-fit: cover;
    flex-shrink: 0;
    overflow: hidden;
    background: #EDD9E0;
}

.ab-author-box__photo--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C4768A;
}

.ab-author-box__photo--placeholder svg {
    width: 24px;
    height: 24px;
}

/* ── Info ── */

.ab-author-box__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.ab-author-box__name {
    font-size: 15px;
    font-weight: 600;
    color: #8A6141;
    line-height: 1.3;
}

.ab-author-box__role {
    font-size: 13px;
    color: #C4768A;
    line-height: 1.3;
}

/* ── Socials ── */

.ab-author-box__socials {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    padding-top: 2px;
}

.ab-author-box__social-link {
    color: #C4768A;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.ab-author-box__social-link:hover {
    opacity: 1;
    transform: translateY(-2px);
    text-decoration: none;
}

.ab-author-box__social-link svg {
    width: 18px;
    height: 18px;
}

/* ── Bio ── */

.ab-author-box__bio {
    font-size: 14px;
    line-height: 1.65;
    color: #8A6141;
    margin: 0 0 20px;
    padding: 0;
}

/* ── Dates ── */

.ab-author-box__dates {
    font-size: 12.5px;
    color: #C4768A;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid #EDD9E0;
}

.ab-author-box__date-sep {
    font-size: 10px;
    opacity: 0.5;
}

/* ── Responsive ── */

@media (max-width: 600px) {
    .ab-author-box__inner {
        padding: 20px;
    }

    .ab-author-box__header {
        flex-direction: column;
        gap: 16px;
    }

    .ab-author-box__socials {
        padding-left: 62px;
    }

    .ab-author-box__dates {
        flex-wrap: wrap;
    }
}
