.feature-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.feature-wrapper:last-child {
    margin-bottom: 0;
}

.feature-image-wrapper {
    width: 30%;
    padding-right: 40px;
}

.feature-image-wrapper img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
}

.feature-content-wrapper {
    width: calc(100% - 30% - 40px);
    flex-grow: 1;
}

.feature-content > p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .feature-wrapper {
        margin-bottom: 30px;
    }

    .feature-image-wrapper {
        width: 35%;
        padding-right: 30px;
    }
    
    .feature-content-wrapper {
        width: calc(100% - 35% - 30px);
    }
}

@media (max-width: 550px) {
    .feature-image-wrapper {
        width: 100%;
        padding-right: 0;
        margin-bottom: 10px;
    }

    .feature-content-wrapper {
        width: 100%;
    }

    .feature-image-wrapper img {
        width: 100%;
    }
}