@media screen and (min-width: 900px) {
    .news-feed-col {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
        grid-column-gap: 3rem;
        grid-row-gap: 3rem;
    }

    .ln-card:not(:nth-child(3n))::after {
        content: "";
        height: 100%;
        width: 1px;
        background: #002302;
        opacity: 0.5;
        position: absolute;
        top: 0;
        right: -1.5rem;
    }
}

.news-feed-col {
    padding-left: 0;
}

.overflow-h-box {
    position: relative;
    height: 15rem;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
}

.overflow-h-box img {
    position: relative;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all 0.3s;
}

.ln-card:hover .overflow-h-box img {
    transform: scale(1.09) !important;
    transition: all 0.3s;
}

.ln-title {
    text-decoration: none;
}

.ln-card a {
    text-decoration: none !important;
}

.ln-card:before {
    content: "";
    display: none !important;
}

.ln-text-block {
    padding-top: 0.5rem;
}

.ln-card:hover .ln-title {
    color: #cbfc87;
}
