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

.custom-post-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}



.post-image img {
    height: 300px !important;
    width: 100% !important;
    object-fit: cover;
    border-radius: 4px !important;
}

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

.post-title a {
    text-decoration: none;
    font-family: "Barlow Condensed", Sans-serif;
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
    color: #212121;
    text-align: left;
    line-height: 30px;
    margin-bottom: 0px;
}

.post-title {
    margin-bottom: 10px;
    text-align: left;
}

.post-excerpt {
    margin-bottom: 15px;
    color: #050327;
    font-family: "mundial", Sans-serif;
    font-size: 15px;
    font-weight: 200;
    line-height: 26px;
    letter-spacing: 0.2px;
    text-align: left;
}

a.read-more {
    color: #364440;
    background-color: #AFD9AD;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Barlow Condensed", Sans-serif;
    font-size: 18px;
    font-weight: 700;
    border-radius: 15px;
    text-transform: uppercase;
    font-style: italic;
    padding: 8px 40px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

.custom-post-item:hover a.read-more {
    background-color: #F2ACBF;
    color: #ffffff;
}

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



