.anime-author-box {
    margin: 3em 0 2em;
    padding: 24px;
    background: #1e1e1e;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
}

.anime-author-box__heading {
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f59e0b;
    color: #f59e0b;
    font-size: 1.25em;
    font-weight: bold;
}

.anime-author-box__inner {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.anime-author-box__avatar {
    flex-shrink: 0;
}

.anime-author-box__avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #2a2a2a;
    display: block;
}

.anime-author-box__body {
    flex: 1;
    min-width: 0;
}

.anime-author-box__name {
    margin: 0 0 12px;
    color: #f3f4f6;
    font-size: 1.1em;
    font-weight: bold;
}

.anime-author-box__description {
    margin: 0 0 16px;
    color: #d1d5db;
    font-size: 0.95em;
    line-height: 1.7;
}

.anime-author-box__stats {
    display: flex;
    gap: 12px;
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.anime-author-box__stat {
    padding: 6px 12px;
    background: #141414;
    border-radius: 4px;
    font-size: 0.9em;
}

.anime-author-box__stat-label {
    color: #9ca3af;
    margin-right: 6px;
}

.anime-author-box__stat-value {
    color: #f59e0b;
    font-weight: bold;
}

.anime-author-box__sns {
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.anime-author-box__sns-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 50%;
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.2s ease;
}

.anime-author-box__sns-link:hover {
    background: #2a2a2a;
    border-color: #f59e0b;
    color: #f59e0b;
    transform: translateY(-2px);
}

.anime-author-box__sns-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    display: block;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 768px) {
    .anime-author-box {
        padding: 20px 16px;
    }

    .anime-author-box__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .anime-author-box__avatar img {
        width: 96px;
        height: 96px;
    }

    .anime-author-box__stats,
    .anime-author-box__sns {
        justify-content: center;
    }
}
