/* =========================================================
   KUPFERMAN FOUNDATION AFRICA
   ABOUT PAGE STYLESHEET
========================================================= */


/* =========================================================
   1. ABOUT PAGE VARIABLES
========================================================= */

:root {
    --about-green: #176b4d;
    --about-green-dark: #0f5138;
    --about-green-light: #eaf6f0;

    --about-pink: #ef5c8a;
    --about-pink-dark: #d94774;
    --about-pink-light: #ff91b3;

    --about-cream: #fffaf4;
    --about-dark: #10251d;
    --about-text: #5d6d66;
    --about-white: #ffffff;
    --about-border: #dce9e3;

    --about-shadow:
        0 24px 65px rgba(20, 67, 49, 0.12);

    --about-shadow-small:
        0 15px 38px rgba(20, 67, 49, 0.08);

    --about-transition:
        all 0.3s ease;
}


/* =========================================================
   2. SHARED ABOUT PAGE ELEMENTS
========================================================= */

.about-section-label,
.about-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-section-label {
    margin-bottom: 15px;
    color: var(--about-pink-dark);
}

.about-section-label i {
    color: var(--about-pink);
}

.about-section-heading h2,
.story-intro h2,
.mission-vision-heading h2,
.core-values-title-row h2 {
    margin: 0;

    color: var(--about-dark);

    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.13;
    letter-spacing: -0.035em;
}

.about-section-heading h2 span,
.story-intro h2 span,
.mission-vision-heading h2 span,
.core-values-title-row h2 span {
    color: var(--about-green);
}

.about-section-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    margin-top: 22px;
    padding: 13px 21px;

    color: var(--about-white);
    background: var(--about-green);
    border: 1px solid var(--about-green);
    border-radius: 999px;

    font-weight: 800;
    text-decoration: none;

    transition: var(--about-transition);
}

.about-section-button:hover {
    color: var(--about-white);
    background: var(--about-green-dark);
    border-color: var(--about-green-dark);

    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(23, 107, 77, 0.22);
}


/* =========================================================
   3. ABOUT PAGE HERO
========================================================= */

.about-page-hero {
    position: relative;
    min-height: 610px;

    display: flex;
    align-items: center;

    overflow: hidden;
    isolation: isolate;
}

.about-hero-background,
.about-hero-background img,
.about-hero-overlay {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
}

.about-hero-background {
    z-index: -3;
}

.about-hero-background img {
    object-fit: cover;
    object-position: center 38%;
}

.about-hero-overlay {
    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(6, 35, 25, 0.92) 0%,
            rgba(7, 49, 35, 0.76) 52%,
            rgba(7, 49, 35, 0.25) 100%
        );
}

.about-page-hero::before {
    content: "";

    position: absolute;
    right: -120px;
    bottom: -180px;
    z-index: -1;

    width: 380px;
    height: 380px;

    border-radius: 50%;
    background: rgba(239, 92, 138, 0.18);
}

.about-page-hero::after {
    content: "";

    position: absolute;
    top: -160px;
    left: -160px;
    z-index: -1;

    width: 320px;
    height: 320px;

    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.about-hero-content {
    max-width: 720px;
    padding: 105px 0;

    color: var(--about-white);
}

.about-hero-label {
    margin-bottom: 22px;
    padding: 10px 16px;

    color: var(--about-white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-hero-label i {
    color: var(--about-pink-light);
}

.about-hero-content h1 {
    margin: 0;

    color: var(--about-white);

    font-family: "Manrope", sans-serif;
    font-size: clamp(44px, 5.3vw, 72px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.about-hero-content h1 span {
    color: var(--about-pink-light);
}

.about-hero-content > p {
    max-width: 650px;
    margin: 24px 0 0;

    color: rgba(255, 255, 255, 0.84);

    font-size: 17px;
    line-height: 1.8;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 30px;
}

.about-hero-primary,
.about-hero-secondary {
    min-height: 53px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 13px 22px;

    border-radius: 999px;

    font-weight: 800;
    text-decoration: none;

    transition: var(--about-transition);
}

.about-hero-primary {
    color: var(--about-white);
    background: var(--about-pink);
    border: 1px solid var(--about-pink);
}

.about-hero-primary:hover {
    color: var(--about-white);
    background: var(--about-pink-dark);
    border-color: var(--about-pink-dark);

    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(239, 92, 138, 0.28);
}

.about-hero-secondary {
    color: var(--about-white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.about-hero-secondary:hover {
    color: var(--about-green-dark);
    background: var(--about-white);
    border-color: var(--about-white);

    transform: translateY(-2px);
}


/* =========================================================
   4. WHO WE ARE SECTION
========================================================= */

.about-introduction {
    position: relative;
    overflow: hidden;

    background: var(--about-white);
}

.about-page-image-layout {
    position: relative;

    min-height: 590px;
    padding: 0 60px 55px 0;
}

.about-page-main-image {
    width: 88%;
    height: 510px;

    overflow: hidden;

    border-radius: 30px;
    box-shadow: var(--about-shadow);
}

.about-page-main-image img,
.about-page-small-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.about-page-main-image img {
    object-position: center;
}

.about-page-small-image {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;

    width: 230px;
    height: 250px;

    overflow: hidden;

    background: var(--about-white);
    border: 8px solid var(--about-white);
    border-radius: 26px;
    box-shadow: var(--about-shadow);
}

.about-page-year-card {
    position: absolute;
    left: 28px;
    bottom: 28px;
    z-index: 3;

    width: 178px;
    padding: 20px;

    color: var(--about-white);
    background: var(--about-green);
    border-radius: 20px;

    box-shadow: var(--about-shadow);
}

.about-page-year-card strong {
    display: block;

    font-family: "Manrope", sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.about-page-year-card span {
    display: block;
    margin-top: 7px;

    font-size: 13px;
    line-height: 1.45;
}

.about-page-shape {
    position: absolute;
    top: -25px;
    right: 25px;
    z-index: -1;

    width: 120px;
    height: 120px;

    border-radius: 50%;
    background: rgba(239, 92, 138, 0.12);
}

.about-rich-text {
    margin-top: 24px;
}

.about-rich-text p {
    margin-bottom: 16px;

    color: var(--about-text);

    font-size: 16px;
    line-height: 1.82;
}

.about-rich-text p:last-child {
    margin-bottom: 0;
}

.about-care-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;

    margin-top: 25px;
}

.about-care-item {
    display: flex;
    align-items: center;
    gap: 11px;

    min-height: 58px;
    padding: 14px 16px;

    color: var(--about-dark);
    background: var(--about-green-light);
    border: 1px solid var(--about-border);
    border-radius: 16px;

    font-weight: 800;

    transition: var(--about-transition);
}

.about-care-item:hover {
    background: var(--about-white);
    border-color: rgba(239, 92, 138, 0.35);

    transform: translateY(-3px);
    box-shadow: var(--about-shadow-small);
}

.about-care-item i {
    flex-shrink: 0;

    color: var(--about-pink);

    font-size: 20px;
}


/* =========================================================
   5. OUR STORY SECTION
========================================================= */

.our-story-section {
    position: relative;

    background:
        radial-gradient(
            circle at top right,
            rgba(239, 92, 138, 0.10),
            transparent 30%
        ),
        var(--about-cream);
}

.story-intro {
    position: sticky;
    top: 120px;
}

.story-intro > p {
    margin: 22px 0 0;

    color: var(--about-text);

    font-size: 16px;
    line-height: 1.8;
}

.story-timeline {
    position: relative;
}

.story-timeline::before {
    content: "";

    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 31px;

    width: 2px;

    background:
        linear-gradient(
            to bottom,
            var(--about-pink),
            var(--about-green)
        );
}

.story-timeline-item {
    position: relative;

    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 22px;

    padding-bottom: 32px;
}

.story-timeline-item:last-child {
    padding-bottom: 0;
}

.story-timeline-icon {
    position: relative;
    z-index: 2;

    width: 64px;
    height: 64px;

    display: grid;
    place-items: center;

    color: var(--about-white);
    background: var(--about-green);
    border: 7px solid var(--about-cream);
    border-radius: 50%;

    font-size: 20px;

    box-shadow: 0 12px 30px rgba(23, 107, 77, 0.20);
}

.story-timeline-item:nth-child(even) .story-timeline-icon {
    background: var(--about-pink);
}

.story-timeline-content {
    padding: 24px 26px;

    background: var(--about-white);
    border: 1px solid rgba(23, 107, 77, 0.08);
    border-radius: 22px;

    box-shadow: 0 18px 45px rgba(20, 67, 49, 0.08);

    transition: var(--about-transition);
}

.story-timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--about-shadow);
}

.story-timeline-content > span {
    color: var(--about-pink-dark);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.story-timeline-content h3 {
    margin: 7px 0 10px;

    color: var(--about-dark);

    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.35;
}

.story-timeline-content p {
    margin: 0;

    color: var(--about-text);

    line-height: 1.75;
}


/* =========================================================
   6. MISSION AND VISION
========================================================= */

.mission-vision-section {
    background: var(--about-white);
}

.mission-vision-heading {
    max-width: 760px;
    margin: 0 auto 45px;
}

.mission-vision-card {
    position: relative;

    height: 100%;
    padding: 42px;

    overflow: hidden;

    border-radius: 28px;
    box-shadow: var(--about-shadow);

    transition: var(--about-transition);
}

.mission-vision-card:hover {
    transform: translateY(-6px);
}

.mission-card {
    color: var(--about-white);

    background:
        linear-gradient(
            145deg,
            var(--about-green),
            var(--about-green-dark)
        );
}

.vision-card {
    color: var(--about-dark);

    background:
        radial-gradient(
            circle at top right,
            rgba(239, 92, 138, 0.18),
            transparent 32%
        ),
        var(--about-cream);

    border: 1px solid rgba(239, 92, 138, 0.18);
}

.mission-vision-number {
    position: absolute;
    top: -30px;
    right: 15px;

    color: currentColor;

    font-family: "Manrope", sans-serif;
    font-size: 120px;
    font-weight: 800;
    line-height: 1;

    opacity: 0.07;
}

.mission-vision-icon {
    position: relative;
    z-index: 2;

    width: 62px;
    height: 62px;

    display: grid;
    place-items: center;

    margin-bottom: 25px;

    color: var(--about-white);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 19px;

    font-size: 27px;
}

.vision-card .mission-vision-icon {
    color: var(--about-pink-dark);
    background: rgba(239, 92, 138, 0.13);
}

.mission-vision-label {
    position: relative;
    z-index: 2;

    display: block;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.mission-card .mission-vision-label {
    color: #ffb2c9;
}

.vision-card .mission-vision-label {
    color: var(--about-pink-dark);
}

.mission-vision-card h3 {
    position: relative;
    z-index: 2;

    margin: 10px 0 18px;

    font-family: "Manrope", sans-serif;
    font-size: 29px;
    font-weight: 800;
    line-height: 1.25;
}

.mission-vision-card p {
    position: relative;
    z-index: 2;

    margin-bottom: 14px;

    font-size: 16px;
    line-height: 1.78;
}

.mission-vision-card p:last-child {
    margin-bottom: 0;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.80);
}

.vision-card p {
    color: var(--about-text);
}


/* =========================================================
   7. CORE VALUES
========================================================= */

.core-values-section {
    background: var(--about-green-light);
}

.core-values-title-row {
    margin-bottom: 38px;
}

.core-values-description {
    margin: 0;

    color: var(--about-text);

    font-size: 16px;
    line-height: 1.75;
}

.value-card {
    position: relative;

    height: 100%;
    min-height: 290px;
    padding: 31px 27px;

    overflow: hidden;

    background: var(--about-white);
    border: 1px solid rgba(23, 107, 77, 0.08);
    border-radius: 24px;

    box-shadow: var(--about-shadow-small);

    transition: var(--about-transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--about-shadow);
}

.value-number {
    position: absolute;
    top: 15px;
    right: 20px;

    color: rgba(23, 107, 77, 0.10);

    font-family: "Manrope", sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
}

.value-icon {
    width: 62px;
    height: 62px;

    display: grid;
    place-items: center;

    margin-bottom: 48px;

    color: var(--about-white);
    background: var(--about-green);
    border-radius: 20px;

    font-size: 25px;

    transition: var(--about-transition);
}

.core-values-section .col-md-6:nth-child(even) .value-icon {
    background: var(--about-pink);
}

.value-card:hover .value-icon {
    transform: rotate(-5deg) scale(1.06);
}

.value-card h3 {
    margin: 0 0 10px;

    color: var(--about-dark);

    font-family: "Manrope", sans-serif;
    font-size: 23px;
    font-weight: 800;
}

.value-card p {
    margin: 0;

    color: var(--about-text);

    line-height: 1.72;
}


/* =========================================================
   8. STEPHANIE INSPIRATION SECTION
========================================================= */

.inspiration-section {
    background: var(--about-white);
}

.inspiration-card {
    overflow: hidden;

    background: var(--about-dark);
    border-radius: 30px;

    box-shadow: var(--about-shadow);
}

.inspiration-image {
    min-height: 560px;
    height: 100%;
}

.inspiration-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}

.inspiration-content {
    min-height: 560px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 60px;

    color: var(--about-white);

    background:
        radial-gradient(
            circle at top right,
            rgba(239, 92, 138, 0.25),
            transparent 34%
        ),
        var(--about-dark);
}

.inspiration-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    align-self: flex-start;

    color: #ff9dbc;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.inspiration-content h2 {
    margin: 18px 0 22px;

    color: var(--about-white);

    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 4vw, 51px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.inspiration-content p {
    margin-bottom: 15px;

    color: rgba(255, 255, 255, 0.76);

    line-height: 1.8;
}

.inspiration-content p:last-of-type {
    margin-bottom: 0;
}

.inspiration-content blockquote {
    margin: 18px 0 0;
    padding: 18px 20px;

    color: var(--about-white);
    background: rgba(255, 255, 255, 0.07);
    border-left: 4px solid var(--about-pink);

    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
}


/* =========================================================
   9. IMPACT SECTION
========================================================= */

.about-impact-section {
    background: var(--about-cream);
}

.about-impact-card {
    padding: 50px;

    color: var(--about-white);

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(239, 92, 138, 0.30),
            transparent 25%
        ),
        var(--about-green);

    border-radius: 30px;
    box-shadow: var(--about-shadow);
}

.about-impact-intro > span {
    color: #ffb3ca;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-impact-intro h2 {
    margin: 10px 0 14px;

    color: var(--about-white);

    font-family: "Manrope", sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
}

.about-impact-intro p {
    margin: 0;

    color: rgba(255, 255, 255, 0.76);

    line-height: 1.75;
}

.about-impact-item {
    min-height: 155px;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 22px;

    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition: var(--about-transition);
}

.about-impact-item:hover {
    background: rgba(255, 255, 255, 0.16);

    transform: translateY(-4px);
}

.about-impact-item strong {
    color: var(--about-white);

    font-family: "Manrope", sans-serif;
    font-size: 39px;
    font-weight: 800;
    line-height: 1;
}

.about-impact-item span {
    display: block;
    margin-top: 9px;

    color: rgba(255, 255, 255, 0.75);

    line-height: 1.5;
}


/* =========================================================
   10. FINAL CALL TO ACTION
========================================================= */

.about-cta-section {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;

    overflow: hidden;
    isolation: isolate;
}

.about-cta-background,
.about-cta-background img,
.about-cta-overlay {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
}

.about-cta-background {
    z-index: -3;
}

.about-cta-background img {
    object-fit: cover;
    object-position: center;
}

.about-cta-overlay {
    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(7, 42, 30, 0.94),
            rgba(7, 42, 30, 0.72)
        );
}

.about-cta-content {
    max-width: 800px;
    padding: 80px 0;

    color: var(--about-white);
}

.about-cta-content > span {
    color: #ff9fbd;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-cta-content h2 {
    margin: 15px 0 0;

    color: var(--about-white);

    font-family: "Manrope", sans-serif;
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.about-cta-content p {
    max-width: 680px;
    margin: 20px 0 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 17px;
    line-height: 1.8;
}

.about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 30px;
}

.about-cta-primary,
.about-cta-secondary {
    min-height: 53px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 13px 22px;

    border-radius: 999px;

    font-weight: 800;
    text-decoration: none;

    transition: var(--about-transition);
}

.about-cta-primary {
    color: var(--about-white);
    background: var(--about-pink);
    border: 1px solid var(--about-pink);
}

.about-cta-primary:hover {
    color: var(--about-white);
    background: var(--about-pink-dark);
    border-color: var(--about-pink-dark);

    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(239, 92, 138, 0.28);
}

.about-cta-secondary {
    color: var(--about-white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.about-cta-secondary:hover {
    color: var(--about-green-dark);
    background: var(--about-white);
    border-color: var(--about-white);

    transform: translateY(-2px);
}


/* =========================================================
   11. LARGE LAPTOPS
========================================================= */

@media (min-width: 1200px) and (max-width: 1399.98px) {

    .about-page-hero {
        min-height: 575px;
    }

    .about-hero-content {
        padding: 90px 0;
    }

    .about-page-image-layout {
        min-height: 550px;
    }

    .about-page-main-image {
        height: 470px;
    }

    .about-page-small-image {
        width: 210px;
        height: 225px;
    }

    .inspiration-image,
    .inspiration-content {
        min-height: 520px;
    }
}


/* =========================================================
   12. STANDARD LAPTOPS
========================================================= */

@media (min-width: 992px) and (max-width: 1199.98px) {

    .about-page-hero {
        min-height: 535px;
    }

    .about-hero-content {
        max-width: 650px;
        padding: 75px 0;
    }

    .about-hero-content h1 {
        font-size: 52px;
    }

    .about-hero-content > p {
        font-size: 16px;
    }

    .about-page-image-layout {
        min-height: 500px;
        padding-right: 45px;
    }

    .about-page-main-image {
        height: 430px;
    }

    .about-page-small-image {
        width: 190px;
        height: 205px;
    }

    .about-page-year-card {
        width: 160px;
        padding: 17px;
    }

    .mission-vision-card {
        padding: 34px;
    }

    .mission-vision-card h3 {
        font-size: 26px;
    }

    .inspiration-image,
    .inspiration-content {
        min-height: 490px;
    }

    .inspiration-content {
        padding: 42px;
    }

    .about-impact-card {
        padding: 42px;
    }
}


/* =========================================================
   13. TABLETS
========================================================= */

@media (max-width: 991.98px) {

    .about-page-hero {
        min-height: 560px;
    }

    .about-hero-overlay {
        background: rgba(6, 35, 25, 0.82);
    }

    .about-hero-content {
        max-width: 680px;
        padding: 85px 0;
    }

    .about-page-image-layout {
        max-width: 650px;
        margin: 0 auto;
    }

    .story-intro {
        position: static;
        margin-bottom: 20px;
    }

    .mission-vision-card {
        padding: 35px;
    }

    .inspiration-image {
        min-height: 460px;
    }

    .inspiration-content {
        min-height: auto;
        padding: 44px;
    }

    .about-impact-card {
        padding: 38px;
    }

    .about-impact-intro {
        margin-bottom: 20px;
    }
}


/* =========================================================
   14. MOBILE PHONES
========================================================= */

@media (max-width: 767.98px) {

    .about-page-hero {
        min-height: 520px;
    }

    .about-hero-background img {
        object-position: 62% center;
    }

    .about-hero-content {
        padding: 75px 0;
    }

    .about-hero-content h1 {
        font-size: 42px;
    }

    .about-hero-content > p {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-page-image-layout {
        min-height: 490px;
        padding-right: 35px;
    }

    .about-page-main-image {
        width: 93%;
        height: 420px;
    }

    .about-page-small-image {
        width: 175px;
        height: 185px;

        border-width: 6px;
    }

    .about-page-year-card {
        left: 16px;
        bottom: 15px;

        width: 155px;
        padding: 16px;
    }

    .about-care-grid {
        grid-template-columns: 1fr;
    }

    .story-timeline-item {
        grid-template-columns: 53px minmax(0, 1fr);
        gap: 14px;
    }

    .story-timeline::before {
        left: 25px;
    }

    .story-timeline-icon {
        width: 53px;
        height: 53px;

        border-width: 6px;
    }

    .story-timeline-content {
        padding: 20px;
    }

    .mission-vision-card {
        padding: 29px 24px;
    }

    .mission-vision-card h3 {
        font-size: 25px;
    }

    .value-card {
        min-height: 270px;
    }

    .inspiration-content {
        padding: 34px 25px;
    }

    .about-impact-card {
        padding: 29px 22px;
    }

    .about-impact-item {
        min-height: 135px;
        padding: 17px;
    }

    .about-impact-item strong {
        font-size: 31px;
    }

    .about-cta-section {
        min-height: 470px;
    }

    .about-cta-content {
        padding: 65px 0;
    }
}


/* =========================================================
   15. SMALL MOBILE PHONES
========================================================= */

@media (max-width: 575.98px) {

    .about-page-hero {
        min-height: 500px;
    }

    .about-hero-content h1 {
        font-size: 36px;
    }

    .about-hero-actions,
    .about-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .about-hero-primary,
    .about-hero-secondary,
    .about-cta-primary,
    .about-cta-secondary {
        width: 100%;
    }

    .about-page-image-layout {
        min-height: 405px;
        padding-right: 22px;
        padding-bottom: 38px;
    }

    .about-page-main-image {
        height: 350px;
        border-radius: 22px;
    }

    .about-page-small-image {
        width: 135px;
        height: 145px;

        border-radius: 18px;
    }

    .about-page-year-card {
        width: 135px;
        padding: 13px;

        border-radius: 16px;
    }

    .about-page-year-card strong {
        font-size: 27px;
    }

    .about-page-year-card span {
        font-size: 11px;
    }

    .about-section-heading h2,
    .story-intro h2,
    .mission-vision-heading h2,
    .core-values-title-row h2 {
        font-size: 32px;
    }

    .story-timeline-content h3 {
        font-size: 19px;
    }

    .story-timeline-content p,
    .about-rich-text p,
    .mission-vision-card p {
        font-size: 15px;
    }

    .mission-vision-number {
        font-size: 88px;
    }

    .inspiration-image {
        min-height: 330px;
    }

    .inspiration-content h2 {
        font-size: 31px;
    }

    .about-impact-item span {
        font-size: 13px;
    }

    .about-cta-content h2 {
        font-size: 35px;
    }

    .about-cta-content p {
        font-size: 15px;
    }
}


/* =========================================================
   16. VERY SMALL MOBILE PHONES
========================================================= */

@media (max-width: 390px) {

    .about-hero-content h1 {
        font-size: 32px;
    }

    .about-hero-label {
        padding: 9px 13px;

        font-size: 11px;
    }

    .about-page-image-layout {
        min-height: 365px;
    }

    .about-page-main-image {
        height: 315px;
    }

    .about-page-small-image {
        width: 115px;
        height: 125px;
    }

    .about-page-year-card {
        width: 122px;
    }

    .story-timeline-item {
        grid-template-columns: 47px minmax(0, 1fr);
        gap: 11px;
    }

    .story-timeline::before {
        left: 22px;
    }

    .story-timeline-icon {
        width: 47px;
        height: 47px;

        font-size: 17px;
    }

    .story-timeline-content {
        padding: 17px;
    }

    .about-impact-card {
        padding: 24px 17px;
    }

    .about-impact-item {
        padding: 14px;
    }
}