.custom-post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.custom-post-item {
    padding: 14px;
    text-align: center;
    background-color: #ffffff;
    transition: box-shadow 0.3s ease;
}



.post-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
    margin-bottom: 10px;
}

.info-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

p.post-excerpt {
    color: #3B3B3B;
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: left;
}

.post-image img {
    width: 100%;
    border-radius: 5px;
    display: block;
    margin-bottom: 10px;
    height: 250px;
    object-fit: cover;
}

.post-meta {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.post-title {
    font-size: 1.2em;
    margin-bottom: 10px;
    text-align: left;
}

.post-excerpt {
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 14px;
    text-align: left;
    line-height: 23px;
}

.post-meta {
    font-family: 'Poppins', sans-serif;
    color: #e93a5a;
    font-size: 12px;
    font-weight: 500;
    display: flex;
}

.post-categories a {
    color: #e93a5a;

}

.post-title a {
    color: #333;
    text-decoration: none;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: 21px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1px;
    letter-spacing: -0.3px;
}

.post-title a:hover {
    text-decoration: underline;
}

.post-excerpt {
    margin-bottom: 15px;
}

a.read-more {
    display: inline-block;
    text-decoration: none;
    border-radius: 4px;
    color: #242424;
    font-family: "Poppins", Sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .custom-post-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    
    
}
