.ministry-hero {
    padding: 160px 20px 60px;
    background-color: #fcf9f2;
    text-align: center;
}

.back-link {
    text-decoration: none;
    color: #4a7c44;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #b39347; 
}

.back-link:hover .arrow-slide {
    transform: translateX(-8px); /* The arrow 'points' forward on hover */
}

.detail-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}
img.detail-icon {
    width: 15vw;
    height: auto;
    margin-bottom: 20px;
}

.lead {
    font-size: 1.5rem;
    color: #2e4f2d;
    font-weight: 600;
    margin-bottom: 30px;
}

.ministry-hero h1 {
    color: #1b3022;
    font-size: 3rem;
}

.ministry-body {
    padding: 80px 20px;
}

.ministry-info-box {
    margin-top: 50px;
    padding: 40px;
    background: #1b3022;
    color: white;
    border-radius: 20px;
    text-align: center;
}

.ministry-info-box h4 {
    color: #b39347;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.list_highlight{
    color: #b39347;
    font-size: 1.3rem;
}
.list_Min{
    list-style: none;
}

.ministry-info-box p {
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Past Highlights Grid */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.highlight-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
}

.highlight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

/* Updated Highlight Card Hover */
.view-gallery {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
}

.highlight-card:hover .view-gallery {
    opacity: 1;
    transform: translateY(0);
}