/* ===========================================
   MINISTRIES HERO SECTION
   =========================================== */
.ministries-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('/images/hero-bg-1614x500.jpg') center/cover no-repeat;
    color: #fff;
    padding: 120px 20px;
    text-align: center;
}

.ministries-hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.ministries-hero-content p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

/* ===========================================
   Region Selection Button
   =========================================== */
/* #region : Region-Selector */
.region-buttons {
    text-align: center;
    margin: 20px 0;
}

.region-btn {
    background-color: #333;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.region-btn:hover {
    background-color: #5e2b97;
    transform: translateY(-2px);
}

.region-btn.active {
    background-color: #5e2b97;
}
/* #endregion : Region-Selector */

/* ===========================================
   Grid
   =========================================== */
/* #region : Ministries Grid */
.ministries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.ministry-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ministry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.ministry-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 15px;
    text-align: left;
}

.card-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 14px;
    color: #555;
}

@media (max-width: 768px) {
    .ministry-card {
        width: 90%;
    }
}
/* #endregion : Ministries Grid */
