.author-w.author-block {
    position: relative;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin: 32px 0;
    padding: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: linear-gradient(145deg, var(--navy-900) 0%, var(--navy-950) 100%);
    box-shadow: 0 16px 38px rgba(4, 26, 16, 0.24);
    color: #ffffff;
}

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

.author-w.author-block .author-avatar {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    overflow: hidden;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-500), var(--amber-500));
    color: #ffffff;
    font-family: var(--font-ui);
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
}

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

.author-w.author-block .author-info {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.author-w.author-block .author-name {
    margin-bottom: 2px;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.author-w.author-block .author-bio {
    margin: 8px 0 10px;
    padding-left: 10px;
    border-left: 2px solid var(--navy-500);
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.7;
}

.author-w.author-block .author-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px;
    margin-top: 10px;
}

.author-w.author-block .author-stats {
    display: flex;
    flex: 1 1 auto;
    gap: 16px;
    flex-wrap: wrap;
}

.author-w.author-block .author-stat {
    min-width: 0;
}

.author-w.author-block .author-stat strong {
    display: block;
    color: var(--b400);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
}

.author-w.author-block .author-stat span {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.48);
    font-family: var(--font-ui);
    font-size: 10px;
    line-height: 1.35;
}

.author-w.author-block .author-actions {
    display: flex;
    justify-content: flex-end;
    flex: 0 0 auto;
    margin-left: auto;
}

.author-w.author-block .author-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 18px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--navy-500), var(--amber-500));
    color: #ffffff;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.author-w.author-block .author-btn:hover,
.author-w.author-block .author-btn:focus {
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(4, 26, 16, 0.22);
}

@media (max-width: 768px) {
    .author-w.author-block {
        padding: 20px 18px;
    }
}

@media (max-width: 640px) {
    .author-w.author-block {
        flex-direction: column;
        gap: 14px;
        padding: 18px 16px;
    }

    .author-w.author-block .author-avatar {
        width: 56px;
        height: 56px;
        font-size: 18px;
    }

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

    .author-w.author-block .author-stats {
        gap: 14px;
    }
}

@media (max-width: 560px) {
    .author-w.author-block .author-footer {
        flex-direction: column;
    }

    .author-w.author-block .author-actions {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .author-w.author-block {
        margin: 24px 0;
        padding: 16px 14px;
    }

    .author-w.author-block .author-bio {
        font-size: 12.5px;
    }

    .author-w.author-block .author-stat strong {
        font-size: 16px;
    }
}
