.faces-this-week {
    margin-bottom: 18px;
}

.faces-this-week__hint {
    margin: 8px 0 12px;
    color: #78909c;
    font-size: 12px;
    line-height: 1.45;
}

.faces-this-week__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.faces-this-week__item {
    display: block;
    width: calc(33.333% - 7px);
    text-align: center;
    text-decoration: none;
    color: inherit;
}

.faces-this-week__thumb {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    background: #eee;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .12);
    transition: transform .15s ease, box-shadow .15s ease;
}

.faces-this-week__item:hover .faces-this-week__thumb {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}

.faces-this-week__count {
    display: block;
    margin-top: 5px;
    font-size: 11px;
    color: #546e7a;
    line-height: 1.3;
}

.faces-this-week__item:hover .faces-this-week__count {
    color: #1565c0;
}

@media (max-width: 767px) {
    .faces-this-week__item {
        width: calc(25% - 8px);
    }
}
