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

.custom-post-item {
    transition: box-shadow 0.3s ease;
    background: #f5f5f5;
    padding: 15px;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
}


.custom-post-item p {
    margin-bottom: 0px;
}



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


.info-container {
    display: flex
;
    flex-direction: column;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}

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 {
    font-family: 'Poppins', sans-serif;
    display: flex;
    color: #636363;
    font-size: 13px;
    font-weight: 500;
margin-bottom: 10px;    
}

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

.post-excerpt {
    text-align: left;
    font-family: "Inter", Sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    color: #232323;
}

.post-image:not(:first-child) {
    margin-top: 0px;
}


.post-categories a {
   color: #636363;

}

.post-title a {
    font-family: "Urbanist", Sans-serif;
    font-size: 23px;
    font-weight: 600;
    line-height: 30px;
    color: #131313;
}

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

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

a.read-more {
    background-color: #233f2d;
    color: #fff;
    font-family: "Urbanist", Sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
    font-size: 15px;
    width: 100%;
    height: 45px;
    display: flex
;
    align-items: center;
    text-align: center;
    justify-content: center;
}

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