/* Author Box */
.author-box {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.75rem;
    margin: 2.5rem 0;
}

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

.author-box__img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.author-box__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.author-box__name {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.author-box__name a {
    color: var(--theme-primary);
    transition: color 0.2s ease;
}

.author-box__name a:hover {
    color: var(--theme-secondary);
}

.author-box__bio {
    margin: 0 0 1rem;
    color: #4b5563;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.author-box__footer {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.author-box__posts-count {
    font-size: 0.8125rem;
    color: #6b7280;
    font-weight: 500;
}

.author-box__link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--theme-secondary);
    transition: gap 0.2s ease;
}

.author-box__link:hover {
    gap: 0.625rem;
}

.author-box__link svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .author-box {
        gap: 1rem;
        padding: 1.25rem;
        margin: 2rem 0;
    }

    .author-box__img {
        width: 60px;
        height: 60px;
        border: 2px solid #fff;
    }

    .author-box__label {
        font-size: 0.6875rem;
        margin-bottom: 0.125rem;
    }

    .author-box__name {
        font-size: 1.125rem;
        margin-bottom: 0.375rem;
    }

    .author-box__bio {
        font-size: 0.875rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }

    .author-box__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .author-box__posts-count {
        font-size: 0.75rem;
    }

    .author-box__link {
        font-size: 0.8125rem;
    }
}
