.full-width-image {
    padding-top: 0;
    padding-bottom: 0;
}

.full-width-image .field--name-field-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 1;
    overflow: hidden;
}

.full-width-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

@media (max-width: 768px) {
    .full-width-image.container {
        padding-left: 0;
        padding-right: 0;
    }

    .full-width-image .field--name-field-image {
        aspect-ratio: unset;
        height: 310px;
    }
}