/**
 * soyproductcourseauthor – Front-end styles
 * Author card shown inside product miniatures (listing pages).
 */

.soy-course-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 44px;
    padding-top: 24px;
}

.soy-course-author__avatar {
    flex-shrink: 0;
}

.soy-course-author__avatar img {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #e0e0e0;
}

.soy-course-author__info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.soy-course-author__label {
    font-size: 11px;
    color: #999;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.soy-course-author__name {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
