/* ── Custom Post Author – Frontend Author Box ────────────────────────── */

.cpa-author-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px 22px;
    margin: 32px 0;
    font-family: inherit;
}

.cpa-author-avatar img,
.cpa-author-avatar .cpa-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

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

.cpa-author-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #999;
    margin: 0 0 4px;
}

.cpa-author-name {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px;
}
.cpa-author-name a {
    color: inherit;
    text-decoration: none;
}
.cpa-author-name a:hover { text-decoration: underline; }

.cpa-author-bio {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0 0 10px;
}

.cpa-author-social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cpa-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e5e5e5;
    color: #333;
    font-size: 13px;
    text-decoration: none;
    transition: background .2s, color .2s;
}
.cpa-social-link:hover {
    background: #333;
    color: #fff;
}

/* Responsive */
@media (max-width: 480px) {
    .cpa-author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .cpa-author-social { justify-content: center; }
}
