.author-w {
    position: relative;
    margin: 48px 0;
    padding: 36px;
    overflow: hidden;
    border: none;
    border-radius: var(--rad-lg);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    color: var(--text);
}

.author-w::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--amber-500), var(--navy-500));
}

.author-w::after {
    display: none;
}

.author-w .aw-inner {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    width: 100%;
    text-align: left;
}

.author-w .aw-left,
.author-w .aw-photo-wrap {
    position: relative;
    flex: 0 0 auto;
}

.author-w .aw-photo-wrap {
    width: 80px;
    height: 80px;
}

.author-w .aw-ring {
    display: none;
}

.author-w .aw-av {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border: 3px solid var(--amber-500);
    border-radius: 50%;
    background: var(--g-navy);
    color: var(--amber-300);
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
}

.author-w .aw-av img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-w .aw-body {
    flex: 1 1 auto;
    min-width: 0;
}

.author-w .aw-name {
    margin: 0 0 4px;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
}

.author-w .aw-role {
    margin: 0 0 12px;
    color: var(--navy-500);
    font-family: var(--font-ui);
    font-size: 12px;
    line-height: 1.45;
    letter-spacing: 0.04em;
}

.author-w .aw-site {
    margin: 0 0 12px;
    color: var(--navy-600);
    font-family: var(--font-ui);
    font-size: 12px;
    line-height: 1.45;
}

.author-w .aw-site span {
    color: var(--text-light);
}

.author-w .aw-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 0 0 12px;
    padding: 3px 10px;
    border: 1px solid var(--amber-500);
    border-radius: var(--rad-pill);
    background: transparent;
    color: var(--navy-600);
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.author-w .aw-badge::before {
    content: "\2713";
    display: inline;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.author-w .aw-bio {
    margin: 0 0 14px;
    padding: 0 0 0 14px;
    border-left: 3px solid var(--amber-500);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 1.65;
    text-align: left;
}

.author-w .aw-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
}

.author-w .aw-stat {
    min-width: 0;
    text-align: center;
}

.author-w .aw-stat-num {
    display: block;
    margin: 0;
    color: var(--navy-600);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.15;
}

.author-w .aw-stat-label {
    display: block;
    color: var(--text-light);
    font-family: var(--font-ui);
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: 0.04em;
    white-space: normal;
}

.author-w .aw-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 14px;
    padding: 8px 18px;
    border: 1px solid rgba(35, 122, 90, 0.18);
    border-radius: var(--rad-pill);
    background: rgba(168, 232, 44, 0.12);
    color: var(--navy-600);
    font-family: var(--font-ui);
    font-size: 12.5px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.author-w .aw-cta:hover,
.author-w .aw-cta:focus {
    color: var(--navy-600);
    opacity: 0.85;
    text-decoration: none;
    transform: translateX(3px);
}

.author-w .aw-cta svg {
    width: 13px;
    height: 13px;
}
.author-w {
    position: relative;
}

.author-w .aw-home-btn {
    position: absolute;
    right: 36px;
    bottom: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border: 1px solid var(--amber-500);
    border-radius: var(--rad-pill);
    background: var(--amber-500);
    color: var(--g-navy);
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(168, 232, 44, 0.24);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.author-w .aw-home-btn:hover,
.author-w .aw-home-btn:focus {
    color: var(--g-navy);
    opacity: 0.9;
    text-decoration: none;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .author-w .aw-home-btn {
        position: static;
        margin-top: 18px;
    }
}
@media (max-width: 639px) {
    .author-w {
        margin: 32px 0;
        padding: 20px 18px;
    }

    .author-w .aw-inner {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .author-w .aw-photo-wrap,
    .author-w .aw-av {
        width: 70px;
        height: 70px;
    }

    .author-w .aw-av {
        font-size: 22px;
    }

    .author-w .aw-name {
        font-size: 17px;
    }

    .author-w .aw-role,
    .author-w .aw-site {
        margin-bottom: 10px;
        font-size: 12px;
    }

    .author-w .aw-badge {
        padding: 3px 9px;
        font-size: 10px;
    }

    .author-w .aw-bio {
        margin-bottom: 14px;
        padding-left: 12px;
        font-size: 14px;
    }

    .author-w .aw-stats {
        gap: 16px;
    }

    .author-w .aw-stat-num {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .author-w {
        padding: 18px 16px;
    }

    .author-w .aw-photo-wrap,
    .author-w .aw-av {
        width: 60px;
        height: 60px;
    }

    .author-w .aw-av {
        font-size: 18px;
    }

    .author-w .aw-name {
        font-size: 16px;
    }

    .author-w .aw-role,
    .author-w .aw-site {
        font-size: 11.5px;
    }

    .author-w .aw-badge {
        font-size: 9.5px;
    }

    .author-w .aw-bio {
        padding-left: 10px;
        font-size: 13.5px;
    }

    .author-w .aw-stats {
        gap: 12px;
    }

    .author-w .aw-stat-num {
        font-size: 18px;
    }

    .author-w .aw-stat-label {
        font-size: 9.5px;
    }
}
