.custom-post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18%, 1fr));
    gap: 24px;
    margin: 0 auto;
    padding: 20px 0;
}

.custom-post-grid .item {
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease;
}
*{
    transition: all  0.3s ease;
}
a:hover{
    transition: all  0.3s ease;
    opacity: 0.9;
}

.custom-post-grid .item-thumb img {
width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.custom-post-grid .item-title {
    margin: 15px 10px 0;
}
.custom-post-grid .item-desc {
    font-size: 14px;
    color: #041958;
    flex-grow: 1;
    margin: 5px 10px;
}
.item-title h3 {
    font-size: 20px;
    font-weight: bold;
    color: #0050CC;
    margin: 0;
}