#services.section-title {
    margin-bottom: 0;
}
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
    margin: 0 2em;
    margin-bottom: 2em;
}

@media all and (width < 850px) {
    .services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media all and (width < 550px) {
    .services {
        grid-template-columns: 1fr;
    }
}

.services .item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services .item .title {
    font-weight: 700;
}

.services .item .illustration {
    width: calc(100% - 2em);
    aspect-ratio: 1;
    background-size: cover;
    border-radius: 0.75em;
    margin: 0 1em;
}

.services .item .multipart-illustration {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.7em;
    font-weight: 700;
    color: #848672;
}
.services .item .multipart-illustration .part  {
    width: auto;
    aspect-ratio: 1.3;
    background-size: cover;
    padding: 0 8px;
}

.services .item.floorplans .illustration {
    border-radius: 0;
    margin: 0;
}

.services .item.brochures .illustration {
    border-radius: 0;
}