﻿/* ====================== MISSION SECTION ========================= */
.mission-section {
    position: relative;
    padding: 120px 0;
}
/* ====================== END MISSION SECTION ========================= */



/* ====================== MISSION TITLE ========================= */
.mission-title {
    font-size: var(--fs-6xl);
    font-family: var(--font-header);
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
}

    .mission-title .accent {
        color: var(--np-accent1);
    }
/* ====================== END MISSION TITLE ========================= */



/* ====================== MISSION GRID ========================= */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
/* ====================== END MISSION GRID ========================= */



/* ====================== MISSION IMAGE ========================= */
.mission-image-wrapper {
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

.mission-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* ====================== END MISSION IMAGE ========================= */



/* ====================== MISSION CARD ========================= */
.mission-card {
    background: var(--np-white);
    border-radius: 16px;
    padding: 35px 40px;
    box-shadow: 0 5px 8px rgba(0,0,0,0.12);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .mission-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    }

.mission-card-title {
    font-size: var(--fs-xxl);
    margin-bottom: 20px;
    color: var(--np-accent1);
    font-family: var(--font-body);
}

.mission-text {
    font-size: var(--fs-md);
    line-height: 1.8;
}
/* ====================== END MISSION CARD ========================= */



/* ====================== RESPONSIVE ========================= */
@media (max-width: 900px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .mission-title {
        font-size: var(--fs-3xl);
    }

    .mission-text {
        font-size: var(--fs-md);
    }
}
/* ====================== END RESPONSIVE ========================= */