.latest-grid a::after {
    display: none;
}

.latest-grid .post-grid {
    display: grid;
    grid-auto-rows: 20px;
    grid-template-columns: repeat(3, 1fr);
    column-gap: var(--margin);
    grid-row-gap: var(--margin);
}

.latest-grid .title {
    border-top: 1px solid black;
    margin-top: 15px;
    margin-bottom: 40px;
    padding-top: 5px;
}

.latest-grid .category-tag {
    white-space: nowrap;
    margin-right: 10px;
}

.latest-grid .category-tag:hover {
    background-color: black !important;
}

.latest-grid .post-grid .post-content {
    margin-top: 15px;
}

.latest-grid .post-grid .grid-item p {
    text-transform: none;
    margin-top: 15px;
    margin-bottom: 15px;
}

.latest-grid .post-grid h1 {
    font-size: 22px;
    letter-spacing: -0.5px;
}

.latest-grid .grid-item .image-wrapper::after {
    content: '';
    transition: all 500ms ease;
    background-color: black;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.latest-grid .grid-item:hover .image-wrapper::after {
    opacity: 0.3;
}

.latest-grid .read-time {
    position: relative;
    margin-top: 30px;
}

.latest-grid .read-time svg {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 1px;
    position: absolute;
    top: -20px;
    left: 0;
}

.latest-grid .grid-item:hover .read-time rect {
    fill: black !important;
}

.latest-grid .grid-item:hover .read-time h5 {
    color: black !important;
}

.latest-grid .image-wrapper {
    width: 100%;
}

.latest-grid img {
    width: 100%;
}

.latest-grid .post-column {
    display: none;
    row-gap: var(--gap);
}

.latest-grid .post-column .post-content {
    padding-top: var(--gap);
    padding-bottom: 50px;
}

@media screen and (max-width: 989px) {
    .latest-grid .post-column {
        display: flex;
    }

    .latest-grid .post-grid {
        display: none;
    }

    .latest-grid .title {
        font-size: 18px;
    }

    .latest-grid .post-grid h1 {
        font-size: 16px;
    }
}

@media screen and (min-width: 1920px) {
    .latest-grid .post-grid {
        grid-template-columns: repeat(4, 1fr);
    }   
}