.eaa-author-card {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    margin: 48px 0 24px;
    padding: 34px;
    background: #fff;
    border: 1px solid #e9edf3;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(28, 39, 60, 0.08);
}

.eaa-author-media a,
.eaa-author-name a {
    text-decoration: none;
}

.eaa-author-photo {
    display: block;
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #f2f5f9;
}

.eaa-author-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 14px;
    margin-bottom: 12px;
    border-radius: 8px;
    background: #0b6bcb;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.09em;
}

.eaa-author-title {
    margin: 0 0 5px;
    color: #536273;
    font-size: 14px;
    font-weight: 700;
}

.eaa-author-name {
    margin: 0 0 8px;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.1;
}

.eaa-author-name a {
    color: #172033;
}

.eaa-author-name a:hover,
.eaa-author-name a:focus {
    color: #0b6bcb;
}

.eaa-author-credentials {
    margin: 0 0 10px;
    color: #0b6bcb;
    font-size: 15px;
    font-weight: 700;
}

.eaa-author-bio {
    max-width: 760px;
    margin: 0;
    color: #566273;
    font-size: 16px;
    line-height: 1.75;
}

.eaa-author-socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    min-width: 118px;
}

.eaa-author-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid #dfe5ed;
    border-radius: 50%;
    background: #f8fafc;
    color: #263244;
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.eaa-author-social:hover,
.eaa-author-social:focus {
    transform: translateY(-2px);
    border-color: #0b6bcb;
    background: #0b6bcb;
    color: #fff;
}

@media (max-width: 820px) {
    .eaa-author-card {
        grid-template-columns: 120px minmax(0, 1fr);
        gap: 22px;
        padding: 26px;
    }

    .eaa-author-photo {
        width: 120px;
        height: 120px;
    }

    .eaa-author-socials {
        grid-column: 1 / -1;
        justify-content: flex-start;
        padding-left: 142px;
    }
}

@media (max-width: 560px) {
    .eaa-author-card {
        display: block;
        padding: 24px;
        text-align: center;
    }

    .eaa-author-media {
        margin-bottom: 18px;
    }

    .eaa-author-photo {
        margin: 0 auto;
    }

    .eaa-author-socials {
        justify-content: center;
        padding-left: 0;
        margin-top: 20px;
    }
}
