/* =========================================
   Plantnu Author Box
   ========================================= */

.pab-author-box {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: #f7f9f6;
    border: 1px solid #e1e8de;
    border-left: 4px solid #558B2F;
    border-radius: 6px;
    padding: 24px;
    margin: 40px 0 30px;
    box-sizing: border-box;
}

.pab-avatar-wrap {
    flex: 0 0 96px;
}

.pab-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 3px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.pab-info {
    flex: 1;
    min-width: 0;
}

.pab-name {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    color: #2E7D32;
    line-height: 1.3;
}

.pab-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #689F38;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.pab-name a {
    color: #2E7D32;
    text-decoration: none;
}

.pab-name a:hover {
    text-decoration: underline;
}

.pab-bio {
    margin: 0 0 10px;
    color: #444;
    font-size: 15px;
    line-height: 1.6;
}

.pab-social {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.pab-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #fff;
    color: #558B2F;
    border-radius: 50%;
    transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
    border: 1px solid #e1e8de;
}

.pab-social a:hover {
    background: #558B2F;
    color: #fff;
    transform: translateY(-1px);
}

/* Mobiel */
@media (max-width: 600px) {
    .pab-author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        padding: 20px;
    }
    .pab-avatar-wrap {
        flex: 0 0 auto;
    }
    .pab-social {
        justify-content: center;
    }
}
