/* Карточка автора-эксперта */
.author-content {
    box-sizing: border-box;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px 24px 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    max-width: 612px;
    width: 100%;
    overflow: hidden;
}

.top-author-content {
    font-size: 14px;
    font-weight: 500;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.group-author-content {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.author-content-left {
    flex-shrink: 0;
}

.author-content-left-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
}

.author-content-left-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.author-content-right {
    flex: 1;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.author-content-right-name {
    font-size: 19px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 5px;
    line-height: 1.3;
}

.author-content-right-job {
    font-size: 15px;
    font-weight: 500;
    color: #666666;
    margin-bottom: 10px;
    line-height: 1.4;
}

.author-content-right-job-experience {
    color: inherit;
}

.author-content-right-description {
    font-size: 13px;
    font-weight: 400;
    color: #666666;
    line-height: 1.55;
}

/* Мобильная версия: аватар слева, текст справа */
@media (max-width: 576px) {
    .author-content {
        padding: 16px;
        border-radius: 8px;
    }

    .top-author-content {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .group-author-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
    }

    .author-content-left {
        flex-shrink: 0;
    }

    .author-content-left-avatar {
        width: 64px;
        height: 64px;
    }

    .author-content-right-name {
        font-size: 17px;
        margin-bottom: 4px;
    }

    .author-content-right-job {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .author-content-right-description {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .author-content {
        padding: 12px;
    }

    .author-content-left-avatar {
        width: 56px;
        height: 56px;
    }

    .author-content-right-name {
        font-size: 16px;
    }

    .author-content-right-job {
        font-size: 13px;
    }
}
