.grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-wrapper a.item {
    display: block;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    color: #676767;
    transition: box-shadow ease-in-out 0.3s;
}

.grid-wrapper a.item:hover {
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.item .content {
    padding: 0 20px 20px 20px;
}

.item .image img {
    height: 170px;
    object-fit: cover;
    width: 100%;
}

.item .title {
    font-size: 18px;
    line-height: 18px;
    color: #171717;
}

.item .date {
    color: #F161B4;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.item .tags {
    margin-top: 10px;
}

.load-more {
    text-align: center;
}

@media only screen and (max-width: 900px) {
    .grid-wrapper {
        grid-template-columns:  1fr;
    }
}
