/* WP Auto Agent — Author System premium card (Phase 14) */

.waa-author-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    margin: 32px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    font-family: inherit;
}

.waa-author-box-photo {
    position: relative;
    flex: 0 0 auto;
}
.waa-author-box-photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 3px solid #f3f4f6;
}
.waa-author-badge-verified {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: #2563eb;
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.waa-author-box-body {
    flex: 1 1 auto;
    min-width: 0;
}

.waa-author-box-name-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 2px;
}
.waa-author-box-name {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
}
.waa-author-box-name:hover { text-decoration: underline; }

.waa-author-pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 9px;
    border-radius: 999px;
    background: #eef2ff;
    color: #4338ca;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.waa-author-box-title {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 8px;
}

.waa-author-box-bio {
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
    margin: 0 0 12px;
}

.waa-author-box-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}
.waa-author-tag {
    font-size: 12px;
    background: #f3f4f6;
    color: #374151;
    padding: 3px 10px;
    border-radius: 999px;
}

.waa-author-box-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: #4b5563;
    margin-bottom: 14px;
}
.waa-author-box-stats strong { color: #111827; }

.waa-author-box-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.waa-author-box-website-btn {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 8px;
    background: #111827;
    color: #ffffff !important;
    text-decoration: none;
    transition: background 0.15s ease;
}
.waa-author-box-website-btn:hover { background: #2563eb; color: #fff; }

.waa-author-box-social {
    display: flex;
    gap: 8px;
}
.waa-author-box-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}
.waa-author-box-social a:hover { background: #111827; color: #fff; }

.waa-author-box-updated {
    font-size: 11.5px;
    color: #9ca3af;
    margin-top: 12px;
}

@media (max-width: 560px) {
    .waa-author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    .waa-author-box-name-row { justify-content: center; }
    .waa-author-box-actions { justify-content: center; }
    .waa-author-box-tags { justify-content: center; }
    .waa-author-box-stats { justify-content: center; }
}
