.wab-author-box {
    --wab-bg: #ffffff;
    --wab-accent: #2563eb;
    --wab-text: #1f2937;
    --wab-border: #e5e7eb;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    margin: 34px 0 10px;
    padding: 24px;
    background: var(--wab-bg);
    color: var(--wab-text);
    border: 1px solid var(--wab-border);
    border-left: 5px solid var(--wab-accent);
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    box-sizing: border-box;
}
.wab-author-box * { box-sizing: border-box; }
.wab-author-image {
    width: 92px;
    min-width: 92px;
    height: 92px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--wab-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}
.wab-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.wab-author-content { flex: 1; min-width: 0; }
.wab-box-title {
    margin: 0 0 5px !important;
    color: var(--wab-accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.wab-author-name {
    margin: 0 !important;
    color: var(--wab-text);
    font-size: 24px;
    line-height: 1.25;
    font-weight: 800;
}
.wab-author-role {
    margin: 4px 0 12px !important;
    color: var(--wab-text);
    opacity: .72;
    font-size: 14px;
    font-weight: 600;
}
.wab-author-bio,
.wab-author-bio p {
    color: var(--wab-text);
    font-size: 15.5px;
    line-height: 1.7;
    margin: 0 0 12px !important;
}
.wab-author-socials {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.wab-author-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--wab-accent) 10%, transparent);
    color: var(--wab-accent) !important;
    border: 1px solid color-mix(in srgb, var(--wab-accent) 25%, transparent);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform .18s ease, background .18s ease;
}
.wab-author-socials a:hover {
    transform: translateY(-1px);
    background: color-mix(in srgb, var(--wab-accent) 16%, transparent);
}
.wab-layout-center {
    flex-direction: column;
    text-align: center;
    align-items: center;
    border-left: 1px solid var(--wab-border);
    border-top: 5px solid var(--wab-accent);
}
.wab-layout-center .wab-author-socials { justify-content: center; }
@media (max-width: 640px) {
    .wab-author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 20px;
        border-left: 1px solid var(--wab-border);
        border-top: 5px solid var(--wab-accent);
    }
    .wab-author-socials { justify-content: center; }
}
