.s-news__title {
    margin-bottom: 40px;
    text-align: center;
}

.s-news__last {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.s-news__last-items {
    width: 100%;
    margin-bottom: 16px;
}

.s-news__last-item {
    display: block;
    line-height: 1.4em;
}

.s-news__last-item:not(:last-child) {
    margin-bottom: 32px;
}

.s-news__last-item-date {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.s-news__last-item-title {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.s-news__last-item-description {
    -webkit-line-clamp: 5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.s-news__last-more {
    margin-top: auto;
}

.s-news__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.s-news__main-photo {
    max-width: 36.6%;
    overflow: hidden;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.s-news__main-photo img {
    max-width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    will-change: transform;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.s-news__main-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 80px;
    max-width: initial;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    background-color: var(--white);
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

.s-news__main-date {
    margin-bottom: 24px;
    line-height: 1.4em;
    color: var(--primary-color);
}

.s-news__main-title {
    margin-bottom: 8px;
}

.s-news__main-description {
    margin-bottom: 24px;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.s-news__main-more {
    margin-top: auto;
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

.s-news__mobile-more {
    margin-top: 30px;
    text-align: center;
}

@media (max-width: 1839.98px) {
    .s-news__title {
        margin-bottom: 50px;
    }

    .s-news__last-item:not(:last-child) {
        margin-bottom: 4px;
    }

    .s-news__last-item {
        padding-top: 12px;
        padding-bottom: 12px;
        border-top: 1px solid var(--primary-color);
    }

    .s-news__last-item:last-child {
        border-bottom: 1px solid var(--primary-color);
    }

    .s-news__last-item-date {
        display: none;
    }

    .s-news__last-item-title {
        display: block;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        margin-bottom: 0;
    }

    .s-news__last-item-description {
        display: none;
    }

    .s-news__main-photo {
        max-width: 39.18%;
    }

    .s-news__main-content {
        padding: 40px;
        background-color: #f4f4f4;
    }

    .s-news__main-date {
        margin-bottom: 0;
    }

    .s-news__main-title {
        margin-bottom: 20px;
    }

    .s-news__main-description {
        margin-bottom: 20px;
        -webkit-line-clamp: 3;
    }
}

@media (max-width: 1199.98px) {
    .s-news__title {
        margin-bottom: 30px;
    }

    .s-news__main-photo {
        max-width: 40.537%;
    }

    .s-news__main-content {
        padding-left: 36px;
        padding-bottom: 22px;
        padding-top: 28px;
        padding-right: 33px;
    }

    .s-news__main-date {
        margin-bottom: 14px;
    }

    .s-news__main-title {
        margin-bottom: 6px;
        font-size: 26px;
    }

    .s-news__main-description {
        margin-bottom: 12px;
        -webkit-line-clamp: 4;
    }
}

@media (max-width: 767.98px) {
    .s-news__title {
        margin-bottom: 20px;
    }

    .s-news__main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .s-news__main-photo {
        height: 47.5vw;
        max-width: 100%;
    }

    .s-news__main-photo img {
        width: 100%;
        -o-object-position: top;
        object-position: top;
    }

    .s-news__main-content {
        padding: 0;
        padding-top: 20px;
        background-color: var(--white);
    }

    .s-news__main-date {
        margin-bottom: 3px;
        font-size: 13px;
    }

    .s-news__main-title {
        margin-bottom: 10px;
    }

    .s-news__main-description {
        margin-bottom: 10px;
    }

    .s-news__mobile-more {
        margin-top: 20px;
    }
}

@media (any-hover: hover) {
    .s-news__last-item-title:hover {
        color: var(--secondary-color);
    }

    .s-news__last-item-description a:hover {
        color: var(--secondary-color);
    }

    .s-news__main:hover {
        color: var(--secondary-color);
    }

    .s-news__main:hover .s-news__main-photo img {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    .s-news__main:hover .s-news__main-more {
        color: var(--secondary-color);
    }
}