/* ============================================================
   GOD PAUL FOUNDATION
   OUR PRIORITIES PAGE
   ============================================================ */


/* ============================================================
   PAGE WRAPPER
   ============================================================ */

.priorities-page {
    width: 100%;

    overflow: hidden;

    background:
        #edf6f0;
}


/* ============================================================
   HERO
   ============================================================ */

.priorities-hero {
    position: relative;

    min-height: 520px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        #174329;
}


.priorities-hero-image {
    position: absolute;

    inset: 0;

    z-index: 1;
}


.priorities-hero-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.02);
}


.priorities-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(10, 47, 29, 0.94) 0%,
            rgba(18, 74, 46, 0.80) 40%,
            rgba(27, 88, 61, 0.48) 70%,
            rgba(0, 0, 0, 0.22) 100%
        );
}


.priorities-hero-pattern {
    position: absolute;

    inset: 0;

    z-index: 3;

    pointer-events: none;

    opacity: 0.16;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.07) 1px,
            transparent 1px
        );

    background-size:
        65px 65px;
}


.priorities-hero-content {
    position: relative;

    z-index: 5;
}


.priorities-hero-copy {
    max-width: 770px;

    padding:
        90px 0;
}


.priorities-eyebrow {
    display: inline-block;

    margin-bottom: 15px;

    color:
        #bcebd0;

    font-family:
        'Poppins',
        sans-serif;

    font-size: 0.77rem;

    font-weight: 700;

    letter-spacing: 2.2px;

    text-transform: uppercase;
}


.priorities-hero h1 {
    position: relative;

    margin:
        0 0 24px;

    padding-bottom: 18px;

    color:
        #ffffff;

    font-size:
        clamp(
            2.8rem,
            6vw,
            4.7rem
        );

    font-weight: 700;

    line-height: 1.06;

    letter-spacing: -1.5px;
}


.priorities-hero h1::after {
    content: '';

    position: absolute;

    left: 0;
    bottom: 0;

    width: 85px;
    height: 5px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            var(--primary-green),
            var(--primary-blue)
        );
}


.priorities-hero p {
    max-width: 720px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.92);

    font-size: 1.05rem;

    line-height: 1.82;
}


/* ============================================================
   INTRO SECTION
   ============================================================ */

.priorities-intro {
    padding:
        65px 0;

    background:
        linear-gradient(
            135deg,
            #d9eee2 0%,
            #e8f5ec 52%,
            #e4f2f7 100%
        );
}


.priorities-intro-card {
    display: grid;

    grid-template-columns:
        auto 1fr;

    align-items: center;

    gap: 22px;

    max-width: 950px;

    margin: 0 auto;

    padding:
        30px 34px;

    border:
        1px solid
        rgba(60, 179, 113, 0.15);

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.55);

    box-shadow:
        0 15px 40px
        rgba(30, 78, 48, 0.07);
}


.priorities-intro-icon {
    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    color:
        #ffffff;

    background:
        var(--primary-green);

    font-size: 1.25rem;

    box-shadow:
        0 10px 22px
        rgba(60, 179, 113, 0.20);
}


.priorities-intro-card p {
    margin: 0;

    color:
        #345943;

    font-size: 0.97rem;

    line-height: 1.8;

    font-weight: 500;
}


/* ============================================================
   PRIORITY PILLARS
   ============================================================ */

.priority-pillar {
    position: relative;

    padding:
        95px 0 105px;
}


.health-pillar {
    background:
        linear-gradient(
            180deg,
            #e7f4ec 0%,
            #dff0e6 55%,
            #e5f3f7 100%
        );
}


.education-pillar {
    background:
        linear-gradient(
            135deg,
            #e1f1f7 0%,
            #e7f4ee 48%,
            #dcefe4 100%
        );
}


/* ============================================================
   PILLAR HEADING
   ============================================================ */

.pillar-heading {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 28px;
}


.pillar-icon {
    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 18px;

    color:
        #ffffff;

    font-size: 1.55rem;

    box-shadow:
        0 12px 28px
        rgba(30, 80, 50, 0.14);
}


.health-icon {
    background:
        var(--dark-blue);
}


.education-icon {
    background:
        var(--primary-green);
}


.pillar-heading span {
    display: block;

    margin-bottom: 3px;

    color:
        var(--primary-green);

    font-family:
        'Poppins',
        sans-serif;

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 1.8px;
}


.pillar-heading h2 {
    margin: 0;

    color:
        #20563a;

    font-size:
        clamp(
            2.1rem,
            4vw,
            3.1rem
        );

    line-height: 1.15;
}


/* ============================================================
   PILLAR INTRODUCTION
   ============================================================ */

.pillar-introduction {
    max-width: 930px;

    margin-bottom: 42px;

    padding:
        28px 30px;

    border-left:
        5px solid
        var(--dark-blue);

    border-radius:
        0 15px 15px 0;

    background:
        rgba(255, 255, 255, 0.56);

    box-shadow:
        0 10px 30px
        rgba(31, 76, 49, 0.05);
}


.education-introduction {
    border-left-color:
        var(--primary-green);
}


.pillar-introduction p {
    margin:
        0 0 13px;

    color:
        #3d604c;

    font-size: 0.96rem;

    line-height: 1.82;
}


.pillar-introduction p:last-child {
    margin-bottom: 0;

    color:
        #285d3f;
}


/* ============================================================
   PRIORITY GRID
   ============================================================ */

.priority-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 25px;
}


/* ============================================================
   PRIORITY CARD
   ============================================================ */

.priority-card {
    position: relative;

    min-height: 300px;

    padding:
        34px 31px;

    overflow: hidden;

    border-radius: 18px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.health-card {
    border:
        1px solid
        rgba(93, 173, 226, 0.18);

    background:
        linear-gradient(
            145deg,
            #f4fbfe 0%,
            #e5f3f8 100%
        );

    box-shadow:
        0 14px 36px
        rgba(44, 98, 123, 0.07);
}


.education-card {
    border:
        1px solid
        rgba(60, 179, 113, 0.16);

    background:
        linear-gradient(
            145deg,
            #f5fbf7 0%,
            #e3f2e8 100%
        );

    box-shadow:
        0 14px 36px
        rgba(28, 78, 48, 0.07);
}


.priority-card:hover {
    transform:
        translateY(-7px);

    box-shadow:
        0 22px 48px
        rgba(28, 79, 49, 0.13);
}


/* ============================================================
   PRIORITY NUMBER
   ============================================================ */

.priority-number {
    position: absolute;

    top: 22px;
    right: 24px;

    color:
        rgba(46, 139, 87, 0.08);

    font-family:
        'Poppins',
        sans-serif;

    font-size: 3.8rem;

    font-weight: 700;

    line-height: 1;
}


.health-card
.priority-number {

    color:
        rgba(93, 173, 226, 0.12);
}


/* ============================================================
   PRIORITY ICON
   ============================================================ */

.priority-icon {
    width: 56px;
    height: 56px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 14px;

    color:
        #ffffff;

    background:
        var(--primary-green);

    font-size: 1.2rem;

    box-shadow:
        0 9px 22px
        rgba(60, 179, 113, 0.18);
}


.health-card
.priority-icon {

    background:
        var(--dark-blue);

    box-shadow:
        0 9px 22px
        rgba(93, 173, 226, 0.20);
}


/* ============================================================
   PRIORITY TYPOGRAPHY
   ============================================================ */

.priority-card h3 {
    position: relative;

    max-width: 82%;

    margin:
        0 0 15px;

    color:
        #2b704f;

    font-size: 1.18rem;

    font-weight: 600;

    line-height: 1.45;
}


.health-card h3 {
    color:
        #397a9c;
}


.priority-card p {
    position: relative;

    margin: 0;

    color:
        #50665a;

    font-size: 0.9rem;

    line-height: 1.75;
}


/* ============================================================
   WIDE CARD
   ============================================================ */

.priority-card-wide {
    grid-column:
        1 / -1;

    min-height: 230px;
}


/* ============================================================
   SUMMARY STRIP
   ============================================================ */

.priorities-summary {
    padding:
        58px 0;

    background:
        linear-gradient(
            90deg,
            #cce7d7 0%,
            #d8edf3 100%
        );
}


.priorities-summary-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}


.summary-item {
    display: flex;

    align-items: center;

    gap: 14px;

    min-height: 92px;

    padding:
        19px 21px;

    border:
        1px solid
        rgba(255, 255, 255, 0.55);

    border-radius: 14px;

    background:
        rgba(255, 255, 255, 0.52);

    color:
        #285f40;
}


.summary-item i {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 11px;

    color:
        #ffffff;

    background:
        var(--primary-green);
}


.summary-item:nth-child(even) i {
    background:
        var(--dark-blue);
}


.summary-item span {
    display: block;

    margin-bottom: 2px;

    color:
        #5d7767;

    font-size: 0.7rem;

    text-transform: uppercase;

    letter-spacing: 0.7px;
}


.summary-item strong {
    display: block;

    color:
        #295c3f;

    font-family:
        'Poppins',
        sans-serif;

    font-size: 0.88rem;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 992px) {

    .priorities-hero {
        min-height: 460px;
    }


    .priority-grid {
        grid-template-columns: 1fr;
    }


    .priority-card-wide {
        grid-column: auto;
    }


    .priorities-summary-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 768px) {

    .priorities-hero {
        min-height: 420px;
    }


    .priorities-hero-copy {
        padding:
            65px 0;
    }


    .priorities-hero h1 {
        font-size: 2.65rem;
    }


    .priorities-hero p {
        font-size: 0.94rem;
    }


    .priorities-intro {
        padding:
            50px 0;
    }


    .priorities-intro-card {
        grid-template-columns: 1fr;

        padding:
            26px 23px;
    }


    .priority-pillar {
        padding:
            70px 0 80px;
    }


    .pillar-icon {
        width: 60px;
        height: 60px;

        font-size: 1.3rem;
    }


    .pillar-introduction {
        padding:
            24px 22px;
    }


    .priority-card {
        min-height: auto;

        padding:
            29px 24px;
    }


    .priority-card h3 {
        max-width: 85%;
    }

}


/* ============================================================
   SMALL PHONES
   ============================================================ */

@media (max-width: 480px) {

    .priorities-hero {
        min-height: 380px;
    }


    .priorities-hero-copy {
        padding:
            55px 0;
    }


    .priorities-hero h1 {
        font-size: 2.2rem;
    }


    .pillar-heading {
        align-items: flex-start;
    }


    .pillar-heading h2 {
        font-size: 1.9rem;
    }


    .priority-number {
        font-size: 3rem;
    }


    .priority-card h3 {
        font-size: 1.05rem;
    }


    .priority-card p,
    .pillar-introduction p {

        font-size: 0.88rem;
    }


    .priorities-summary-grid {
        grid-template-columns: 1fr;
    }

}