.author__item {
	background: transparent;
    border: 1px solid #d1d4da;
    border-radius: 8px;
    display: flex;
    padding: 16px;
    -webkit-box-align: start;
    color: var(--primary-text-color);
    gap: 16px;
    margin: 32px 0;
    position: relative;
	align-items: center;
}

.author-avatar {
    flex-shrink: 0;
}
.author-avatar img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    background: #fff;
}

.author-details {
	display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 14px;
    line-height: 1.4;
	width: 100%;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

.author-role {
    font-size: 13px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #bbb;
}

.author-description {
    font-size: 14px;
    opacity: 0.9;
    color: #ddd;
}

.author-description p {
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

.author-socials {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.author-updated {
    font-size: 12px;
    opacity: 0.6;
    color: #aaa;
    margin-top: 4px;
}

.updated-label {
    margin-right: 4px;
}

.author-link:hover .author__item {
    background-color: rgba(0,0,0,0.2);
}

/* Адаптивность */
@media (max-width: 768px) {
    .footer__author {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .author-info {
        align-items: center;
    }
}