/* =========================================================
   ECF MINISTRIES PAGE
========================================================= */

.ecf-ministries-page {
    overflow: hidden;
    background: #f6f7f1;
    color: #202817;
}

.ministries-container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}


/* HERO */

.ministries-hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background:
        linear-gradient(
            rgba(16, 23, 4, .55),
            rgba(16, 23, 4, .75)
        ),
        url("../images/ministries/ministries-hero.jpg")
        center / cover no-repeat;

    color: white;
}

.ministries-hero-content {
    position: relative;
    z-index: 2;
    width: min(800px, calc(100% - 30px));
    animation: ministryHero .9s ease both;
}

.ministries-hero-content span,
.ministries-label {
    color: #b79a55;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.ministries-hero h1 {
    margin: 18px 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(60px, 9vw, 105px);
    line-height: .9;
}

.ministries-hero p {
    max-width: 600px;
    margin: auto;
    color: rgba(255,255,255,.85);
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   MINISTRIES PAGE
========================================================= */

.ecf-ministries-page {
    position: relative;
    width: 100%;
    padding: 120px 20px 110px;
    background: #f7f8f1;
    overflow: hidden;
}


/* Decorative background */

.ecf-ministries-page::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -250px;
    right: -180px;
    border-radius: 50%;
    background: rgba(112, 146, 0, 0.06);
    pointer-events: none;
}

.ecf-ministries-page::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -220px;
    left: -180px;
    border-radius: 50%;
    background: rgba(112, 146, 0, 0.05);
    pointer-events: none;
}


/* Container */

.ecf-ministries-page-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.ecf-ministries-page-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 65px;
}


.ecf-ministries-page-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}


.ecf-ministries-page-label span {
    width: 30px;
    height: 1px;
    background: #789500;
}


.ecf-ministries-page-label p {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #789500;
}


.ecf-ministries-page-heading h1 {
    margin: 0;
    color: #1d2915;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.1;
    font-weight: 500;
}


.ecf-ministries-page-line {
    display: flex;
    justify-content: center;
    margin: 25px 0;
}


.ecf-ministries-page-line span {
    position: relative;
    width: 65px;
    height: 3px;
    background: #789500;
}


.ecf-ministries-page-line span::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    top: -2px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    background: #789500;
}


.ecf-ministries-page-intro {
    max-width: 700px;
    margin: 0 auto;
    color: #73796f;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   GRID
========================================================= */

.ecf-ministries-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* =========================================================
   CARD
========================================================= */

.ecf-ministry-page-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(120, 149, 0, 0.12);
    box-shadow: 0 15px 45px rgba(20, 35, 10, 0.08);
    overflow: hidden;

    opacity: 0;
    transform: translateY(35px);

    animation: ecfMinistryReveal 0.8s ease forwards;
    animation-delay: var(--card-delay);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.ecf-ministry-page-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(20, 35, 10, 0.15);
}


/* =========================================================
   IMAGE
========================================================= */

.ecf-ministry-page-image {
    position: relative;
    width: 100%;
    height: 270px;
    overflow: hidden;
}


.ecf-ministry-page-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

    transition: transform 0.7s ease;
}


.ecf-ministry-page-card:hover
.ecf-ministry-page-image img {
    transform: scale(1.08);
}


.ecf-ministry-page-image-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(10, 20, 5, 0.65),
        transparent 55%
    );

    pointer-events: none;
}


/* Number */

.ecf-ministry-page-number {
    position: absolute;
    left: 20px;
    bottom: 20px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #789500;
    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


/* =========================================================
   CONTENT
========================================================= */

.ecf-ministry-page-content {
    padding: 30px 28px 32px;
}


.ecf-ministry-page-content h2 {
    margin: 0 0 15px;

    color: #1d2915;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 27px;
    line-height: 1.25;

    font-weight: 500;
}


.ecf-ministry-page-content p {
    margin: 0 0 25px;

    color: #777d75;

    font-size: 14px;
    line-height: 1.8;

    min-height: 100px;
}


/* =========================================================
   READ MORE
========================================================= */

.ecf-ministry-page-read-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #789500;
    text-decoration: none;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;

    transition: gap 0.3s ease;
}


.ecf-ministry-page-read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}


.ecf-ministry-page-read-more:hover {
    gap: 17px;
}


.ecf-ministry-page-read-more:hover i {
    transform: translateX(4px);
}


/* =========================================================
   BOTTOM MESSAGE
========================================================= */

.ecf-ministries-page-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    margin-top: 65px;

    color: #73796f;
    text-align: center;
}


.ecf-ministries-page-bottom span {
    width: 40px;
    height: 1px;
    background: #789500;
}


.ecf-ministries-page-bottom p {
    margin: 0;
    font-size: 14px;
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes ecfMinistryReveal {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .ecf-ministries-page {
        padding: 90px 20px;
    }

    .ecf-ministries-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .ecf-ministries-page {
        padding: 70px 15px 80px;
    }


    .ecf-ministries-page-heading {
        margin-bottom: 45px;
    }


    .ecf-ministries-page-heading h1 {
        font-size: 38px;
    }


    .ecf-ministries-page-intro {
        font-size: 14px;
        line-height: 1.7;
    }


    .ecf-ministries-page-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }


    .ecf-ministry-page-image {
        height: 230px;
    }


    .ecf-ministry-page-content {
        padding: 25px 22px 28px;
    }


    .ecf-ministry-page-content h2 {
        font-size: 24px;
    }


    .ecf-ministry-page-content p {
        min-height: auto;
        font-size: 14px;
    }


    .ecf-ministries-page-bottom {
        margin-top: 45px;
    }


    .ecf-ministries-page-bottom span {
        width: 20px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .ecf-ministries-page-heading h1 {
        font-size: 32px;
    }


    .ecf-ministry-page-image {
        height: 210px;
    }

}