.mb-post-grid-wrapper {
    width: 100%;
}

.mb-post-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card-like item with soft shadow */
.mb-post-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.mb-post-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* Featured Image */
.mb-post-thumbnail {
    position: relative;
    padding-top: 62%;               /* ≈ 16:10 feel - adjust if needed */
    overflow: hidden;
}

.mb-post-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mb-post-item:hover .mb-post-thumbnail img {
    transform: scale(1.05);
}

/* Content Area */
.mb-post-content {
    padding: 28px 28px 32px;
    text-align: center;             /* Matches your example */
}

.mb-post-title {
    font-size: 18px;
    line-height: 1.4;
    margin: 0 0 22px 0;
    font-weight: 700;
    color: #222;
}

.mb-post-title a {
    color: inherit;
    text-decoration: none;
}

.mb-post-title a:hover {
    color: #007cba;
}

/* Green "Learn More" Button */
.mb-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #016F6E;           /* Nice green - close to your example */
    color: #ffffff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 11px;
    transition: all 0.3s ease;
    gap: 8px;
}

.mb-read-more:hover {
    background: #F56600;
    transform: translateY(-2px);
	color:white;
}

/* Responsive */
@media (max-width: 1024px) {
    .mb-post-grid {
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .mb-post-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mb-post-content {
        padding: 24px 24px 28px;
    }
    
    .mb-post-title {
        font-size: 1.25rem;
    }
}