section.two-col-spotlight {
    padding: 80px 0;
    background: var(--light-grey);
}

/*row*/

.two-col-spotlight__row {
    display: flex;
    gap: 100px;
    justify-content: space-between;
    align-items: center;
}

/*images side*/

.two-col-spotlight__images {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.two-col-spotlight__image img {
    width: 160px;
    height: auto;
}
.two-col-spotlight__image.two-col-spotlight__image--inverted img {
    filter: invert(100%);
}

/*text side*/

.two-col-spotlight__content p {
    font-size: 20px;
    line-height: 1.8;
}

@media (max-width: 992px) {
    section.two-col-spotlight {
        padding: 60px 20px;
    }

    .two-col-spotlight__row {
        flex-direction: column-reverse;
        gap: 35px;
    }

    .two-col-spotlight__image img {
        width: 120px;
    }
}
