.cover-press {
    position: relative;
    padding-top: 60px;
    font-family: "freight-sans-pro", sans-serif !important;
}

.cover-press .cover-press--image {
    position: absolute;
    width: 100%;
    height: calc(100% - 30px);
    top: 0;
    left: 0;

}

.cover-press .cover-press--image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.cover-press .cover-press--image:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #0A4361;
    opacity: 0.8;
    position: absolute;
    top: 0;
    left: 0;
}

.cover-press .cover-press--articles {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.cover-press .cover-press--articles>.cover-press--articles_item {
    flex: 1;
    background: #fff;
    position: relative;
    box-shadow: 3px 3px 30px rgba(0, 0, 0, 0.16);
}

/* .cover-press .cover-press--articles>.cover-press--articles_item:after {
    display: block;
    padding-top: calc(288 / 440 * 100%);
    content: "";
} */

.cover-press .cover-press--articles>.cover-press--articles_item>img {
    /* position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    object-fit: contain; */
    width:100%;
    height:auto;
    display: block;
    margin-bottom: -3px;
}

.cover-press .col-full {
    width: 100%;
    /* margin-left: calc(((100vw - 1320px)/2) + 15px); */
    /* padding-right: 5%; */
    padding-left: calc(((100vw - 1320px) / 2) + 15px);
    padding-right: calc(((100vw - 1320px) / 2) + 15px);
}

.cover-press .col-full h2 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    z-index: 1;
    position: relative;
    margin-bottom: 30px;
}

@media screen and (max-width: 1320px) {

    .cover-press .col-full {
        padding-left: 20px;
        padding-right: 20px;
    }

}

@media screen and (max-width: 1140px) {

    .cover-press .cover-press--articles {
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .cover-press .cover-press--articles {
        flex-direction: column;
    }
}