.author-hero {
    display: flex;
    align-items: center;
    padding: 25px 20px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(77, 92, 129, 0.25);
    border-radius: 15px;
    gap: 30px;
    flex-wrap: wrap;
}

.author-hero__image-wrap {
    position: relative;
    width: 180px;
    flex-shrink: 0;
}

.author-hero__image {
    width: 100%;
    padding-top: 100%;
    border-radius: 24px;
    border: 4px solid #4d5c81;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: #e1e7f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: #4d5c81;
    position: relative;
}

.author-hero__image-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.author-hero__image i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.author-hero__badge {
    position: absolute;
    right: -10px;
    bottom: 10px;
    background: #4d5c81;
    color: #ffffff;
    font-weight: 800;
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
}

.author-hero__info {
    flex: 1;
    min-width: 220px;
}

.author-hero__name {
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.author-hero__position {
    color: #4d5c81;
    font-weight: 700;
    margin: 0 0 15px;
}

.author-hero__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.author-hero__social {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(77, 92, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.author-hero__social:hover {
    background: #4d5c81;
    border-color: #4d5c81;
    color: #ffffff;
}

.author-hero__social-icon {
    width: 30px;
    height: 30px;
    display: block;
}

.author-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.author-hero__stat {
    flex: 1 1 120px;
    border: 1px solid #dde3ee;
    border-radius: 10px;
    padding: 10px 12px;
}

.author-hero__stat-value {
    color: #4d5c81;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 4px;
}

.author-hero__stat-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #7a869f;
}

@media (max-width: 767px) {
    .author-hero {
        text-align: center;
        justify-content: center;
    }

    .author-hero__info {
        text-align: center;
    }

    .author-hero__socials {
        justify-content: center;
    }

    .author-hero__stats {
        justify-content: center;
    }
}