.company-news-section {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
}

.company-news-section__header,
.company-news-section__body .container {
    position: relative;
    z-index: 1;
}

.company-news-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 42px;
}

.company-news-section__title {
    margin: 0;
    color: #202020;
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.15;
    text-transform: uppercase;
}

.swiperCompanyNews .swiper-slide {
    padding: 0;
}

.company-news-section__nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.company-news-button {
    width: 36px;
    height: 36px;
    border: 1px solid #0572AB;
    background-color: #FFFFFF;
    color: #0572AB;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.company-news-button:hover {
    background-color: #0572AB;
    color: #FFFFFF;
}

.company-news-section__body {
    position: relative;
}

.company-news-section__body:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -40px;
    height: 90%;
    background-color: #202020;
}

.swiperCompanyNews .swiper-wrapper {
    align-items: stretch;
}

.swiperCompanyNews .swiper-slide {
    height: auto;
}

.company-news-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #FFFFFF;
    color: #202020;
    text-decoration: none;
}

.company-news-card:hover {
    color: #202020;
}

.company-news-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 1.63 / 1;
    background-color: #A3A0A6;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.company-news-card__image--empty {
    background-color: #A3A0A6;
}

.company-news-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px 18px 20px;
}

.company-news-card__name {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.company-news-card__date {
    margin-top: auto;
    font-size: 15px;
    line-height: 1.3;
}

@media (max-width: 1199px) {
    .company-news-section__title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .company-news-section {
        padding: 56px 0 72px;
    }

    .company-news-section__header {
        margin-bottom: 28px;
    }

    .company-news-section__title {
        font-size: 28px;
    }

    .company-news-button {
        width: 32px;
        height: 32px;
    }

    .company-news-section__body:before {
    }

    .company-news-card__content {
        padding: 16px;
    }

    .company-news-card__name {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .company-news-card__date {
        font-size: 14px;
    }
}
