/* Специфика страницы просмотра профиля студента. Общие стили — в public-base.css */

.public-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    padding: 24px;
    border: 1px solid #D2D2D2;
    border-radius: 6px;
    background: #FFF;
}

.public-profile__avatar {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #2D3648;
    color: #FFF;
    font-size: 32px;
    font-weight: 700;
    overflow: hidden;
}

.public-profile__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.public-profile__info {
    min-width: 0;
}

.public-profile__name {
    margin: 0;
    color: #101820;
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.public-profile__group {
    display: block;
    margin-top: 4px;
    color: #575C89;
    font-size: 14px;
}

.public-profile__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.public-profile__stat {
    color: #575C89;
    font-size: 14px;
    white-space: nowrap;
}

.public-profile__stat strong {
    color: #101820;
}

.public-profile__works-title {
    margin: 0 0 16px;
    color: #101820;
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.public-profile__works {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
