.post-authors {
    margin: 30px 0;
    padding: 20px;
    border-radius: 8px;
    background-color: #f7f8fb;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.post-authors__title {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 700;
}

.post-authors__meta {
    margin-bottom: 12px;
    font-size: 13px;
    color: #6b7280;
}

.post-authors__list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.post-authors__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 360px;
}

.post-authors__avatar-link {
    flex-shrink: 0;
    display: block;
}

.post-authors__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.post-authors__name {
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
    text-decoration: none;
    color: #111827;
}

.post-authors__name:hover {
    text-decoration: underline;
}

.post-authors__description {
    font-size: 14px;
    line-height: 1.4;
    color: #4b5563;
}

.post-authors__position {
    font-size: 13px;
    line-height: 1.4;
    color: #6b7280;
    margin-bottom: 4px;
}