/* Base Grid */
.mh-wrapper-7ef8e7f5 {
    width: 100%;
}
.mh-grid-7ef8e7f5 {
    display: grid;
    gap: 30px;
}

/* Card Styling */
.mh-card-7ef8e7f5 {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #fdfcf8;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid transparent;
    border-top: 3px solid transparent;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out, border-color 0.4s ease-in-out;
}

.mh-card-7ef8e7f5:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15); /* Soft gold shadow fallback */
}

/* Featured Ministry */
.mh-card-7ef8e7f5.is-featured {
    border-top: 3px solid #d4af37;
    transform: scale(1.02);
}
.mh-card-7ef8e7f5.is-featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.mh-badge-7ef8e7f5 {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #d4af37;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Image Section */
.mh-card-img-7ef8e7f5 {
    position: relative;
    width: 100%;
    padding-top: 60%; /* Consistent aspect ratio */
    overflow: hidden;
    background-color: #eaeaea;
}

.mh-card-img-7ef8e7f5 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease-in-out;
}

.mh-card-7ef8e7f5:hover .mh-card-img-7ef8e7f5 img {
    transform: scale(1.06);
}

.mh-card-img-overlay-7ef8e7f5 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(255,255,255,0.8), transparent);
    z-index: 1;
}

/* Content Section */
.mh-card-content-7ef8e7f5 {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    background-image: radial-gradient(circle at top right, rgba(212,175,55,0.03), transparent 70%); /* Faint glow texture */
}

.mh-card-title-7ef8e7f5 {
    margin: 0 0 15px;
    font-family: "Georgia", serif;
    font-size: 22px;
    font-weight: 600;
    color: #1a2b49;
    line-height: 1.3;
}

.mh-card-divider-7ef8e7f5 {
    width: 40px;
    height: 2px;
    background-color: #d4af37;
    margin-bottom: 20px;
    opacity: 0.7;
}

.mh-card-desc-7ef8e7f5 {
    margin: 0 0 20px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.6;
    flex-grow: 1;
}

.mh-card-link-7ef8e7f5 {
    font-size: 14px;
    font-weight: 600;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: color 0.3s ease;
}

/* Invisible Full Card Link Overlay */
.mh-card-link-overlay-7ef8e7f5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
}
