/* ─── Author Bio Box ─────────────────────────────────────────────── */
.arp-author-bio {
    margin: 40px 0 20px;
    padding: 24px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border: 1px solid #e0e7ff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    clear: both;
}
.arp-author-bio-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 16px;
}
.arp-author-avatar img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid #0073aa;
}
.arp-author-info { flex: 1; }
.arp-author-name {
    margin: 0 0 6px;
    font-size: 20px;
    color: #1a1a2e;
}
.arp-author-expertise {
    margin: 0 0 6px;
    color: #0073aa;
    font-size: 13px;
}
.arp-author-stats { font-size: 13px; color: #666; }
.arp-author-bio-divider {
    height: 1px;
    background: #e0e7ff;
    margin: 16px 0;
}
.arp-author-description {
    color: #444;
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 16px;
}
.arp-author-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px;
}
.arp-author-posts-link {
    background: #0073aa;
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}
.arp-author-posts-link:hover { background: #005d8e; color: #fff; }
.arp-social-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}
.arp-linkedin  { background: #0077b5; }
.arp-twitter   { background: #1da1f2; }
.arp-facebook  { background: #1877f2; }
.arp-youtube   { background: #ff0000; }
.arp-social-link:hover { opacity: .85; color: #fff; }

.arp-eeat-badge {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 12px;
    border-top: 1px solid #e0e7ff;
}
.arp-eeat-badge span {
    background: #f0f7ff;
    border: 1px solid #c3dafe;
    color: #1e40af;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

@media (max-width: 600px) {
    .arp-author-bio-header { flex-direction: column; align-items: center; text-align: center; }
    .arp-author-links { justify-content: center; }
    .arp-eeat-badge { justify-content: center; }
}