.people {}

.people__group {
    margin-bottom: var(--spacing-lg);
}

.people__group-name {
    color: var(--sec-text-color);
    margin-bottom: 5px;
}

.people__grid {
    display: flex;
    margin: 0 -12.5px;
    flex-wrap: wrap;
}

.people__item {
    padding: 12.5px;
    width: 50%;
}

.people__snippet {
    background-color: var(--main-color);
    padding-bottom: 100%;
    margin-bottom: 7px;
    position: relative;
    transition: .3s opacity;
}

.people__snippet-wrap {
    cursor: pointer;
}

.people__snippet:hover {
    opacity: 0.85;
}

.people__name {
    margin: 0;
    font-weight: 600;
    color: var(--sec-text-color);
}

.people__short_desc {
    margin: 0;
	font-size: calc(var(--font-size-base) - 1px);
}

.people__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

@media (min-width: 768px) {
    .people__item {
        width: 33.33%;
    }
}

@media (min-width: 1024px) {
    .people__item {
        width: 25%;
    }
}