.list-post-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 24px;
    margin-bottom: 2em;
}

@media (min-width: 768px) {
    .list-post-container {
        grid-auto-rows: 1fr;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 32px;
        grid-row-gap: 32px;
    }
}

@media (min-width: 992px) {
    .list-post-container {
        grid-template-columns: repeat(3, 1fr);
        grid-column-gap: 48px;
        grid-row-gap: 48px;
        /* display:none; */
    }
}

.list-post-card {
    padding: 8px;
    background: white;
    border: transparent 1px solid;
    border-radius: 4px;
    cursor:pointer; 
}

.list-post-card h3 {
    font-size: 18px; 
    font-weight: 600; 
    margin-top: 8px; 
    line-height: 1.5em;
}

.list-post-card:hover {
    padding: 8px;
    background: white;
    box-shadow: #dfdfdf 0px 4px 20px 0px;
    transition: 0.2s ease-in-out;
}

.list-post-card-dd {
    padding: 16px 8px; 
    display: flex; 
    flex-direction: column; 
    height: 230px; 
    justify-content: space-between;
}

@media (min-width: 572px) {
    .list-post-card-dd {
        height: 180px;
    }
}

@media (min-width: 768px) {
    .list-post-card-dd {
        height: 230px;
    }
}

@media (min-width: 992px) {
    .list-post-card-dd {
        height: 285px;
    }
}

@media (min-width: 1200px) {
    .list-post-card-dd {
        height: 230px;
    }
}

.list-post-card-thumbnail {
    background-size: cover; 
    width: 100%; 
    height: 175px; 
    background-position: center; 
    border: 1px solid #eff2f5;
}

.list-post-card-info {
    line-height: 1.3em; 
    font-size: 14px;
}

.category-excerpt p {
    font-size: 14px;
}

.list-post-card-date {
    position: relative; 
    font-size: 12px;
    text-align: right;
}

