.container-people {
    padding: 100px 260px 0;
}

.people-block__icon-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 60px;
}

.people-circle {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.people-block__icon-title h5 {
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    color: black;
    text-transform: uppercase;
}

.people-block__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.people-block__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 100px;
}

.people-block__card-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.people-block__card img {
    width: 100%;
}

.people-block__card h6 {
    font-size: 24px;
    font-weight: 700;
    line-height: 20px;
    color: #121212;
}

.people-block__card p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #333;
    font-style: normal;
}

@media (min-width: 1200px) and (max-width: 1670px) {
    .container-people {
        padding: 100px 99px;
    }

    .people-block__icon-title h5 {
        font-size: 18px;
        line-height: 24px;
    }

    .people-circle {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 768px) {
    .container-people {
        padding: 40px 60px;
    }

    .people-block__icon-title {
        margin-bottom: 20px;
    }

    .people-circle {
        width: 12px;
        height: 12px;
        margin-top: 5px;
    }

    .people-block__icon-title h5 {
        font-size: 18px;
    }

    .people-block__cards {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .people-block__card {
        margin-bottom: 0;
        gap: 16px;
    }

    .people-block__card img {
        width: 200px;
    }

    .people-block__card h6 {
        font-size: 18px;
    }

    .people-block__card p {
        font-size: 16px;
    }
}
    