/* ===================================================
   eWorkOrders Author Bio Box
   author-bio.css
   =================================================== */

.ewo-author-bio {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 40px 0 20px;
    padding: 24px 28px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    font-family: inherit;
}

/* Avatar */
.ewo-author-bio__avatar {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

/* Right column */
.ewo-author-bio__body {
    flex: 1;
    min-width: 0;
}

/* Name + social row */
.ewo-author-bio__header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 6px;
}

/* Name + title stacked vertically */
.ewo-author-bio__name-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ewo-author-bio__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
    line-height: 1.2;
}

.ewo-author-bio__name:hover {
    text-decoration: underline;
    color: #1d4ed8;
}

/* Job title beneath the name */
.ewo-author-bio__title {
    font-size: 0.8rem;
    font-weight: 500;
    color: #6b7280;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

/* Social icons row */
.ewo-author-bio__social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ewo-bio-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: #f3f4f6;
    color: #374151;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.ewo-bio-social-link:hover {
    background: #1d4ed8;
    color: #ffffff;
}

/* Bio text — double class specificity to override theme p-tag padding */
.ewo-author-bio .ewo-author-bio__text {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0.925rem;
    line-height: 1.65;
    color: #4b5563;
}

/* ===================================================
   Responsive — stack on narrow screens
   =================================================== */
@media (max-width: 520px) {
    .ewo-author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .ewo-author-bio__header {
        justify-content: center;
    }

    .ewo-author-bio__social {
        justify-content: center;
    }
}