.execution-works h3 {
    margin-bottom: 24px;
}

.execution-works__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [ 3 ];
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
    gap: 24px;
    margin-top: 32px;
}

.execution-works__wrapper-img {
    width: 100%;
    height: 344px;
    border-radius: 10px;
    border-radius: var(--main-radius, 10px);
    overflow: hidden;
}

.execution-works__wrapper-img img {
    width: 100%;
    height: 100%;
}

@media (max-width: 1100px) {
    .execution-works__wrapper-img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .execution-works__list {
        gap: 15px;
    }

    .execution-works__wrapper-img {
        height: 150px;
    }
}

@media (max-width: 540px) {
    .execution-works__wrapper-img {
        height: 100px;
    }
}