
.others-news {
    margin-block: 80px 100px;
}
@media (min-width: 1024px) {
    .others-news {
        margin-block: 160px 200px;
    }
}
.others-news__title {
    text-align: center;
    font-weight: 700;
    color: #4d4d4d;
}
@media (min-width: 1520px) {
    .others-news__title {
        font-size: 2.625rem !important;
    }
}
.others-news__wrapper {
    margin-top: 40px;
    display: grid;
    gap: 20px;
}
@media (min-width: 600px) {
    .others-news__wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .others-news__wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}
.others-news__item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
@media (hover: hover) {
    .others-news__item:hover {
        cursor: pointer;
    }
    .others-news__item:hover .others-news__caption {
        color: #ff6e00;
    }
    .others-news__item:hover .others-news__img img {
        transform: scale(1.2);
    }
}
.others-news__caption {
    grid-column: 2 span;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 700;
    line-height: 24px;
    color: #4d4d4d;
    transition: 0.3s;
    height: 70px;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.others-news__img {
    grid-column: 2 span;
    border-radius: 10px;
    overflow: hidden;
}
.others-news__img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 1s;
}
.others-news__link {
    grid-column: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ff6e00;
}
.others-news__link::after {
    content: url("data:image/svg+xml,%3Csvg width='14' height='16' viewBox='0 0 14 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_7069_234)'%3E%3Cg clip-path='url(%23clip1_7069_234)'%3E%3Cpath d='M5.74922 0.618103L13.0696 7.99999L5.74922 15.3819M12.6219 7.99999H0' stroke='%23FF6E00' stroke-width='1.41066'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_7069_234'%3E%3Crect width='14' height='16' fill='white'/%3E%3C/clipPath%3E%3CclipPath id='clip1_7069_234'%3E%3Crect width='14' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    width: 14px;
    height: 20px;
}
.others-news__date {
    grid-column: 2;
    font-size: 18px;
    line-height: 24px;
    color: #9a9a9a;
    text-align: end;
}
