/* ==========================================================================
   Iguazu Noticias — Author box

   The green "About Iguazu Noticias" panel that closes an article, rendered by
   inc/Components/AuthorBox.php. Used by the FAQ single and the Resources
   article; the eyebrow is the shared .ig-eyebrow primitive from base.css, so
   nothing here restyles it.

   The closing link wears .ig-link-arrow, which lives in the global tier
   (components/buttons.css), so it is styled here on every view that can print
   this box. Nothing below restyles it either.
   ========================================================================== */

.ig-authorbox {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: var(--surface-tint-green);
    border-radius: var(--radius-xl);
    padding: 20px 24px;
    margin-top: var(--space-8);
}

.ig-authorbox__name {
    font-family: var(--font-display);
    font-weight: var(--weight-bold);
    font-size: 16px;
}

.ig-authorbox__bio {
    font-size: 14px;
    color: var(--text-muted);
}

/* A little more air than the panel's 6px gap: this is a separate invitation,
   not the last line of the biography. The <p> wrapper is what keeps the click
   target on the text; the anchor is inline-flex, so as a direct flex child of
   .ig-authorbox it would stretch the full width of the panel. */
.ig-authorbox__more {
    margin-top: 4px;
}
