/* ── Author Box Pro ── */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600&family=DM+Sans:wght@300;400;500&display=swap');

.abp-box {
    margin: 48px 0 24px;
    padding: 0;
    font-family: 'DM Sans', sans-serif;
}

.abp-inner {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    background: #fafaf8;
    border: 1px solid #e8e4de;
    border-left: 4px solid #2c2c2c;
    border-radius: 4px;
    padding: 28px 32px;
    position: relative;
}

/* Avatar */
.abp-avatar-wrap {
    flex-shrink: 0;
}

.abp-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 3px solid #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

.abp-avatar:hover {
    transform: scale(1.04);
}

/* Content */
.abp-content {
    flex: 1;
    min-width: 0;
}

.abp-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin: 0 0 4px;
}

.abp-name {
    font-family: 'Lora', Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px;
    line-height: 1.2;
}

.abp-name a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s;
}

.abp-name a:hover {
    color: #555;
}

.abp-bio {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: #555;
    margin: 0 0 16px;
    max-width: 560px;
}

/* Social Icons */
.abp-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.abp-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f0ede8;
    border: 1px solid #e0dbd3;
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
    text-decoration: none;
}

.abp-social-link svg {
    width: 15px;
    height: 15px;
    fill: #666;
    transition: fill 0.2s;
}

.abp-social-link:hover {
    background: var(--abp-icon-color, #333);
    border-color: var(--abp-icon-color, #333);
    transform: translateY(-2px);
}

.abp-social-link:hover svg {
    fill: #fff;
}

/* Responsive */
@media (max-width: 600px) {
    .abp-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 20px;
        gap: 16px;
    }

    .abp-socials {
        justify-content: center;
    }

    .abp-bio {
        font-size: 13.5px;
    }

    .abp-avatar {
        width: 80px;
        height: 80px;
    }
}
