/**
 * author-box.css
 * Volksbank Jade Weser Immobilien – Autoren-Box
 *
 * Speichern unter: /assets/css/author-box.css (im Child-Theme)
 * Einbinden über functions.php mit wp_enqueue_style()
 *
 * Farbpalette:
 *   Orange-Akzent : #e8601c
 *   Dunkelgrau    : #333333
 *   Mittelgrau    : #666666
 *   Hintergrund   : #f2f2f2
 *   Rand          : #e0e0e0
 */

/* ============================================================
   AUTOREN-BOX
   ============================================================ */
.author-box {
    display: flex;
    align-items: center;
    gap: 32px;

    background-color: #f2f2f2;
    border-top: 3px solid #e8601c;

    padding: 36px 40px;
    margin-top: 56px;

    border-radius: 2px;
}

/* ============================================================
   PROFILBILD
   ============================================================ */
.author-box__image-wrap {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.author-box__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================================
   TEXT-BEREICH
   ============================================================ */
.author-box__content {
    flex: 1;
}

.author-box__label {
    font-size: 0.75rem;       /* 12px */
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #e8601c;
    margin: 0 0 4px;
}

.author-box__name {
    font-size: 1.25rem;       /* 20px */
    font-weight: 700;
    color: #333333;
    margin: 0 0 4px;
    line-height: 1.3;
}

.author-box__function {
    font-size: 0.875rem;      /* 14px */
    color: #e8601c;
    font-weight: 500;
    margin: 0 0 12px;
}

.author-box__bio {
    font-size: 0.9375rem;     /* 15px */
    color: #555555;
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 600px) {
    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 24px;
        gap: 20px;
    }

    .author-box__image-wrap {
        width: 90px;
        height: 90px;
    }

    .author-box__label {
        display: none; /* Auf Mobile weglassen */
    }
}
