.public-works {
    font-family: Raleway, sans-serif;
}

.public-works__empty {
    padding: 40px 0;
    color: #2D3648;
    text-align: center;
    font-size: 18px;
}

.public-work-card {
    display: flex;
    flex-direction: column;
    height: 500px;
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #D2D2D2;
    border-radius: 6px;
    background: #FFF;
    transition: box-shadow .2s ease-in-out;
}

.public-work-card:hover {
    box-shadow: 0 4px 16px rgba(16, 24, 32, .08);
}

.public-work-card__date {
    margin-bottom: 8px;
    color: #575C89;
    font-size: 13px;
}

.public-work-card__title {
    margin: 0 0 10px;
    color: #101820;
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.public-work-card__annotation {
    flex-grow: 1;
    margin-bottom: 16px;
    color: #2D3648;
    font-size: 14px;
    line-height: 1.5;
}

.public-work-card__contest {
    display: inline-block;
    margin-bottom: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    background: #101820;
    color: #FFF;
    font-size: 12px;
}

.public-work-card__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid #D2D2D2;
    list-style: none;
}

.public-work-card__stat {
    color: #575C89;
    font-size: 13px;
    white-space: nowrap;
}

.public-work-card__stat strong {
    color: #101820;
}

.public-work-card__student {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #D2D2D2;
}

.public-work-card__avatar {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    background: #2D3648;
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.public-work-card__student-info {
    min-width: 0;
}

.public-work-card__student-name {
    display: block;
    color: #101820;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.public-work-card__student-name:hover {
    color: #575C89;
}

.public-work-card__student-group {
    display: block;
    color: #575C89;
    font-size: 12px;
}