.related-news {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0 0 50px;
    padding: 0 50px;
}
.related-news__slider .owl-stage {
    display: flex;
}
.related-news__slider .owl-item {
    display: flex;
    flex: 1 0 auto;
}
.related-news__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.related-news__title {
    color: #000;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 37px;
    text-transform: uppercase;
}
.related-news .related-news__nav {
    display: flex;
    gap: 20px;
}
.related-news__arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    opacity: 0.5;
    transition: opacity 0.3s;
}
.related-news__arrow:hover {
    opacity: 1;
}
.publication__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    color: #383840;
    width: 100%;
    padding: 30px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.05);
}
.publication__item:hover {
    background-color: lightgray;
    background-image:
            linear-gradient(0deg, rgba(0, 103, 45, 0.85) 0%, rgba(0, 103, 45, 0.85) 100%),
            var(--item-bg);
    background-position: center 50%;
    background-size: cover;
    background-repeat: no-repeat;
}
.publication__item-name {
    font-weight: 700;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden
}
.publication__item-date {
    font-size: 13px;
    color: #bbb;
}
.publication__item-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.publication__item:hover,
.publication__item:hover .publication__item-text .publication__item-date {
    color: #fff;
}
.related-news .related-news__nav .js-related-prev, .related-news .related-news__nav .js-related-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.related-news .related-news__nav .js-related-prev.disabled,
.related-news .related-news__nav .js-related-next.disabled {
    opacity: 0.2;
    pointer-events: none;
    cursor: default;
    filter: grayscale(1);
}

.related-news .related-news__nav .js-related-prev:not(.disabled):hover,
.related-news .related-news__nav .js-related-next:not(.disabled):hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .publication__item {
        padding: 30px;
    }
    .related-news {
        padding: 0 20px;
        gap: 20px;
    }
}