.mh-8552034e-wrapper {
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.mh-8552034e-grid {
    display: grid;
    /* Default to 1 column on mobile, Elementor controls override this */
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 10px; /* space for hover shadow */
}

/* Tablet Default (Elementor responsive controls handle custom values) */
@media (min-width: 768px) {
    .mh-8552034e-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop Default */
@media (min-width: 1024px) {
    .mh-8552034e-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mh-8552034e-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mh-8552034e-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mh-8552034e-image-wrap {
    width: 100%;
    /* Default height now managed by Elementor control, fallback here */
    height: 220px; 
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.mh-8552034e-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Default object-position now managed by Elementor control */
    object-position: center center;
    transition: transform 0.5s ease;
}

.mh-8552034e-card:hover .mh-8552034e-image-wrap img {
    transform: scale(1.05);
}

.mh-8552034e-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: flex-start;
    text-align: left;
}

.mh-8552034e-cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #007bff;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.mh-8552034e-title {
    margin: 0 0 0.75rem 0;
    padding: 0;
}

.mh-8552034e-title a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.mh-8552034e-title a:hover {
    color: #007bff;
}

.mh-8552034e-excerpt {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.mh-8552034e-meta {
    margin-top: auto;
    font-size: 0.8rem;
    color: #888;
    border-top: 1px solid #eee;
    padding-top: 0.75rem;
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
