/*
Theme Name: Lifeshare Foundation
Theme URI: https://lifesharefoundation.org.ng/
Author: Lifeshare Foundation
Description: Fast custom WordPress theme for Lifeshare Foundation.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
Text Domain: lifeshare
*/

:root {
    --ink: #151313;
    --muted: #655f5d;
    --paper: #fff8f3;
    --soft: #f7eee8;
    --red: #ee3e44;
    --red-dark: #ba2128;
    --green: #05462c;
    --green-soft: #dff0dc;
    --gold: #f6c14b;
    --line: rgba(21, 19, 19, 0.12);
    --shadow: 0 24px 70px rgba(21, 19, 19, 0.16);
    --radius: 8px;
    --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --display: Impact, Haettenschweiler, "Arial Black", var(--font);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font);
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}

body::before {
    background:
        radial-gradient(circle at 18% 12%, rgba(246, 193, 75, 0.16), transparent 30%),
        radial-gradient(circle at 82% 18%, rgba(238, 62, 68, 0.12), transparent 28%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: fixed;
    z-index: -1;
}

img {
    display: block;
    height: auto;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 248, 243, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.site-header__inner {
    align-items: center;
    display: flex;
    gap: 22px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1220px;
    padding: 10px 22px;
}

.site-brand {
    align-items: center;
    display: flex;
    min-width: 145px;
}

.site-logo-img {
    height: 58px;
    object-fit: contain;
    width: auto;
}

.footer-logo-img {
    height: 86px;
    object-fit: contain;
    width: auto;
}

.primary-nav {
    align-items: center;
    display: flex;
    flex: 1;
    gap: 24px;
    justify-content: center;
}

.primary-nav a,
.primary-nav li a {
    color: rgba(21, 19, 19, 0.74);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.primary-nav ul {
    align-items: center;
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-nav li {
    list-style: none;
}

.primary-nav a:hover {
    color: var(--red);
}

.header-donate,
.button {
    align-items: center;
    background: var(--red);
    border: 0;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 14px;
    font-weight: 850;
    gap: 10px;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    transition: transform 180ms ease, background 180ms ease;
}

.header-donate:hover,
.button:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
}

.button--dark {
    background: var(--ink);
}

.button--light {
    background: #fff;
    color: var(--ink);
}

.menu-toggle {
    align-items: center;
    background: var(--ink);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    display: none;
    height: 46px;
    justify-content: center;
    padding: 0;
    width: 46px;
}

.menu-toggle span {
    background: #fff;
    border-radius: 999px;
    display: block;
    height: 2px;
    position: absolute;
    transition: transform 180ms ease, opacity 180ms ease;
    width: 19px;
}

.menu-toggle span:nth-child(1) {
    transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
    transform: translateY(6px);
}

.menu-open .menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
}

.hero {
    background: #120f10;
    color: #fff;
    min-height: calc(100vh - 79px);
    overflow: hidden;
    position: relative;
}

.hero__image {
    inset: 0;
    position: absolute;
}

.hero__image img {
    height: 100%;
    object-fit: cover;
    object-position: center 34%;
    transform: scale(1.03);
    transition: transform 900ms ease;
    width: 100%;
}

.hero::after {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.55) 42%, rgba(0, 0, 0, 0.24) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.64));
    content: "";
    inset: 0;
    position: absolute;
}

.hero__content {
    margin: 0 auto;
    max-width: 1220px;
    min-height: calc(100vh - 79px);
    padding: 88px 22px 70px;
    position: relative;
    z-index: 1;
}

.hero .eyebrow,
.hero h1,
.hero p,
.hero__actions {
    animation: hero-rise 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero h1 {
    animation-delay: 90ms;
}

.hero p {
    animation-delay: 180ms;
}

.hero__actions {
    animation-delay: 260ms;
}

.eyebrow {
    align-items: center;
    color: var(--gold);
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    gap: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow::before {
    background: currentColor;
    content: "";
    height: 2px;
    width: 34px;
}

.hero h1 {
    font-family: var(--display);
    font-size: clamp(56px, 10vw, 142px);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.86;
    margin: 28px 0 26px;
    max-width: 1050px;
    text-transform: uppercase;
}

.hero p {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 750;
    line-height: 1.35;
    margin: 0;
    max-width: 680px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.section {
    padding: 92px 22px;
}

.section--dark {
    background: var(--ink);
    color: #fff;
}

.section--green {
    background: var(--green);
    color: #fff;
}

.section__inner {
    margin: 0 auto;
    max-width: 1220px;
}

.section-heading {
    align-items: end;
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr minmax(260px, 420px);
    margin-bottom: 42px;
}

.section-heading h2,
.page-title {
    font-family: var(--display);
    font-size: clamp(42px, 7vw, 92px);
    letter-spacing: 0;
    line-height: 0.92;
    margin: 0;
    text-transform: uppercase;
}

.section-heading p {
    color: var(--muted);
    font-size: 18px;
    font-weight: 650;
    margin: 0;
}

.section--dark .section-heading p,
.section--green .section-heading p {
    color: rgba(255, 255, 255, 0.72);
}

.about-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: 1.1fr 0.9fr;
}

.about-card,
.impact-card,
.story-card,
.contact-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 14px 40px rgba(21, 19, 19, 0.08);
    overflow: hidden;
}

.about-copy {
    padding: 34px;
}

.about-copy h3,
.program-copy h3,
.story-card h3,
.contact-panel h3 {
    font-size: 26px;
    line-height: 1.05;
    margin: 0 0 14px;
}

.about-copy p,
.program-copy p,
.story-card p,
.contact-panel p {
    color: var(--muted);
    margin: 0;
}

.stats {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 26px;
}

.stat {
    background: var(--soft);
    border-radius: var(--radius);
    padding: 18px;
}

.stat strong {
    color: var(--red);
    display: block;
    font-family: var(--display);
    font-size: 34px;
    line-height: 1;
}

.stat span {
    color: var(--muted);
    display: block;
    font-size: 13px;
    font-weight: 800;
    margin-top: 8px;
}

.impact-card img,
.about-card img,
.story-card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 500ms ease;
    width: 100%;
}

.impact-card {
    background: #132b22;
    color: #fff;
}

.impact-card div {
    padding: 26px;
}

.impact-card p {
    color: rgba(255, 255, 255, 0.74);
    margin: 0;
}

.program-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.program-carousel {
    position: relative;
}

.carousel-button {
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
    color: var(--ink);
    cursor: pointer;
    display: none;
    font-size: 38px;
    font-weight: 900;
    height: 54px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 54px;
    z-index: 4;
}

.carousel-button--prev {
    left: -18px;
}

.carousel-button--next {
    right: -18px;
}

.program-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    color: var(--ink);
    min-width: 0;
    overflow: hidden;
    transition: transform 240ms ease, box-shadow 240ms ease;
}

.program-card:hover,
.story-card:hover,
.about-card:hover,
.impact-card:hover {
    box-shadow: 0 30px 80px rgba(21, 19, 19, 0.2);
    transform: translateY(-4px);
}

.program-card:nth-child(2) {
    background: #fff6dd;
}

.program-card:nth-child(3) {
    background: #eaf4e4;
}

.program-media {
    background: #111;
    position: relative;
}

.program-media img {
    aspect-ratio: 5 / 4;
    object-fit: cover;
    transition: transform 500ms ease;
    width: 100%;
}

.program-card:hover .program-media img,
.story-card:hover img,
.about-card:hover img,
.impact-card:hover img {
    transform: scale(1.045);
}

.program-kicker {
    background: var(--red);
    border-radius: 999px;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    left: 16px;
    letter-spacing: 0.12em;
    max-width: calc(100% - 32px);
    padding: 8px 12px;
    position: absolute;
    text-transform: uppercase;
    top: 16px;
    white-space: normal;
}

.program-card:nth-child(2) .program-kicker {
    background: var(--gold);
    color: var(--ink);
}

.program-card:nth-child(3) .program-kicker {
    background: var(--green);
}

.program-copy {
    padding: 26px;
}

.program-copy p {
    font-size: 15px;
}

.story-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-card {
    box-shadow: none;
}

.story-card div {
    padding: 24px;
}

.story-card h3 {
    font-size: 21px;
}

.donation-band {
    background: var(--red);
    color: #fff;
    overflow: hidden;
    padding: 72px 22px;
    position: relative;
}

.donation-band::after {
    background: rgba(0, 0, 0, 0.12);
    content: "";
    inset: auto -10% -45% 55%;
    position: absolute;
    transform: rotate(-12deg);
}

.donation-band__inner {
    align-items: center;
    display: flex;
    gap: 28px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1220px;
    position: relative;
    z-index: 1;
}

.donation-band h2 {
    font-family: var(--display);
    font-size: clamp(42px, 6vw, 84px);
    line-height: 0.92;
    margin: 0;
    max-width: 800px;
    text-transform: uppercase;
}

.contact-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-panel {
    padding: 28px;
}

.contact-panel a {
    color: var(--red);
    display: inline-block;
    font-weight: 850;
    margin-top: 10px;
}

.site-footer {
    background: #0f0e0e;
    color: #fff;
    padding: 64px 22px 28px;
}

.site-footer__inner,
.footer-bottom {
    margin: 0 auto;
    max-width: 1220px;
}

.site-footer__inner {
    display: grid;
    gap: 42px;
    grid-template-columns: 1.2fr 1fr 1fr;
}

.footer-brand p,
.footer-block p,
.footer-block a {
    color: rgba(255, 255, 255, 0.68);
}

.footer-brand p {
    max-width: 380px;
}

.footer-title {
    color: rgba(255, 255, 255, 0.42) !important;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.footer-block a {
    display: block;
    font-weight: 800;
    margin-top: 8px;
}

.footer-block a:hover,
.footer-bottom a:hover {
    color: var(--gold);
}

.footer-bottom {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.42);
    display: flex;
    font-size: 12px;
    font-weight: 850;
    gap: 18px;
    justify-content: space-between;
    letter-spacing: 0.1em;
    margin-top: 46px;
    padding-top: 24px;
    text-transform: uppercase;
}

.back-to-top {
    align-items: center;
    background: var(--red);
    border: 0;
    border-radius: 999px;
    bottom: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 24px;
    font-weight: 900;
    height: 48px;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 20px;
    transform: translateY(10px);
    transition: opacity 180ms ease, transform 180ms ease;
    width: 48px;
    z-index: 80;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.motion-ready .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 620ms ease, transform 620ms ease;
}

.motion-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes hero-rise {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-shell {
    margin: 0 auto;
    max-width: 980px;
    padding: 76px 22px 96px;
}

.page-shell article,
.archive-grid article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
}

.entry-content a,
.page-shell a {
    color: var(--red);
    font-weight: 750;
}

.entry-content img {
    border-radius: var(--radius);
}

.archive-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 32px;
}

.archive-grid article {
    overflow: hidden;
}

.archive-grid img {
    aspect-ratio: 16 / 10;
    border-radius: var(--radius);
    margin: -8px -8px 20px;
    max-width: calc(100% + 16px);
    object-fit: cover;
    width: calc(100% + 16px);
}

.archive-grid h2 {
    font-size: 26px;
    line-height: 1.08;
    margin: 0 0 12px;
}

.archive-grid p {
    color: var(--muted);
}

.entry-content {
    color: var(--muted);
    font-size: 18px;
    margin-top: 28px;
}

.entry-content > * {
    max-width: 100%;
}

.post-thumbnail,
.wp-post-image {
    border-radius: var(--radius);
    margin-top: 28px;
}

.pagination,
.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.page-numbers {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    font-weight: 800;
    padding: 10px 15px;
}

.page-numbers.current {
    background: var(--red);
    color: #fff;
}

.inner-hero {
    background: var(--ink);
    color: #fff;
    overflow: hidden;
    padding: 96px 22px 76px;
    position: relative;
}

.inner-hero::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.38)), var(--hero-image, none);
    background-position: center;
    background-size: cover;
    content: "";
    inset: 0;
    opacity: 0.72;
    position: absolute;
}

.inner-hero::after {
    background: radial-gradient(circle at 76% 12%, rgba(238, 62, 68, 0.28), transparent 34%);
    content: "";
    inset: 0;
    position: absolute;
}

.inner-hero__content {
    margin: 0 auto;
    max-width: 1220px;
    position: relative;
    z-index: 1;
}

.inner-hero h1 {
    font-family: var(--display);
    font-size: clamp(48px, 9vw, 118px);
    line-height: 0.88;
    margin: 24px 0 0;
    max-width: 900px;
    text-transform: uppercase;
}

.inner-hero p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.55;
    margin: 28px 0 0;
    max-width: 700px;
}

.inner-section {
    padding: 84px 22px;
}

.inner-section--soft {
    background: var(--soft);
}

.inner-section--dark {
    background: var(--ink);
    color: #fff;
}

.inner-wrap {
    margin: 0 auto;
    max-width: 1220px;
}

.split-grid {
    align-items: center;
    display: grid;
    gap: 42px;
    grid-template-columns: 0.9fr 1.1fr;
}

.split-grid--reverse {
    grid-template-columns: 1.1fr 0.9fr;
}

.inner-copy h2,
.impact-heading {
    font-family: var(--display);
    font-size: clamp(40px, 6vw, 82px);
    line-height: 0.94;
    margin: 0;
    text-transform: uppercase;
}

.inner-copy p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.inner-section--dark .inner-copy p {
    color: rgba(255, 255, 255, 0.68);
}

.media-frame {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.media-frame img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}

.feature-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 52px rgba(21, 19, 19, 0.08);
    padding: 28px;
}

.feature-card--red {
    background: var(--red);
    color: #fff;
}

.feature-card--green {
    background: var(--green);
    color: #fff;
}

.feature-card--dark {
    background: var(--ink);
    color: #fff;
}

.feature-card strong {
    display: block;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.feature-card h3 {
    font-size: 26px;
    line-height: 1.1;
    margin: 18px 0 12px;
}

.feature-card p {
    color: inherit;
    opacity: 0.74;
}

.timeline-list {
    display: grid;
    gap: 18px;
}

.timeline-item {
    align-items: start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    gap: 22px;
    grid-template-columns: 150px 1fr;
    padding: 24px;
}

.timeline-item strong {
    color: var(--red);
    font-family: var(--display);
    font-size: 38px;
    line-height: 1;
}

.contact-form-shell {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
}

.contact-form-shell input,
.contact-form-shell textarea {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font: inherit;
    margin-top: 8px;
    padding: 14px 16px;
    width: 100%;
}

.contact-form-shell label {
    display: block;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.donation-options {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.donation-amount {
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: flex;
    font-family: var(--display);
    font-size: 42px;
    justify-content: center;
    min-height: 126px;
}

@media (max-width: 940px) {
    .inner-hero {
        padding: 74px 18px 58px;
    }

    .inner-hero h1 {
        font-family: var(--font);
        font-size: clamp(40px, 12vw, 62px);
        line-height: 1;
    }

    .inner-section {
        padding: 64px 18px;
    }

    .split-grid,
    .split-grid--reverse,
    .feature-grid,
    .donation-options {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 940px) {
    .site-header__inner {
        padding: 9px 16px;
    }

    .site-logo-img {
        height: 54px;
    }

    .header-donate {
        display: none;
    }

    .menu-toggle {
        display: flex;
        flex: 0 0 auto;
    }

    .primary-nav {
        align-items: stretch;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 22px 40px rgba(21, 19, 19, 0.16);
        display: none;
        flex-direction: column;
        gap: 0;
        left: 0;
        padding: 10px 18px 18px;
        position: absolute;
        right: 0;
        top: 100%;
    }

    .primary-nav ul {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
    }

    .primary-nav a,
    .primary-nav li a {
        border-bottom: 1px solid var(--line);
        display: block;
        padding: 15px 0;
    }

    .menu-open .primary-nav {
        display: flex;
    }

    .hero {
        min-height: auto;
    }

    .hero__content {
        min-height: 680px;
        padding: 74px 18px 58px;
    }

    .hero h1 {
        font-size: clamp(54px, 17vw, 92px);
        max-width: 720px;
    }

    .hero p {
        max-width: 560px;
    }

    .section {
        padding: 68px 18px;
    }

    .section-heading,
    .about-grid,
    .story-grid,
    .contact-grid,
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .program-grid {
        display: flex;
        gap: 18px;
        overflow-x: auto;
        padding: 6px 4px 24px;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .program-grid::-webkit-scrollbar {
        display: none;
    }

    .program-card {
        flex: 0 0 min(82vw, 430px);
        scroll-snap-align: start;
    }

    .carousel-button {
        display: flex;
    }

    .program-media img {
        aspect-ratio: 16 / 10;
    }

    .donation-band__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .archive-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .site-brand {
        min-width: 118px;
    }

    .site-logo-img {
        height: 48px;
    }

    .hero__image img {
        object-position: center top;
    }

    .hero::after {
        background:
            linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.58)),
            linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.72));
    }

    .hero__content {
        min-height: 620px;
        padding-top: 58px;
    }

    .hero h1 {
        font-size: clamp(48px, 15vw, 72px);
        line-height: 0.9;
    }

    .hero__actions,
    .stats {
        grid-template-columns: 1fr;
    }

    .hero__actions .button {
        width: 100%;
    }

    .section-heading h2,
    .page-title {
        font-size: clamp(40px, 13vw, 58px);
    }

    .about-copy,
    .program-copy,
    .story-card div,
    .contact-panel {
        padding: 22px;
    }

    .program-kicker {
        font-size: 10px;
        left: 12px;
        top: 12px;
    }

    .carousel-button {
        display: none;
    }

    .footer-logo-img {
        height: 74px;
    }
}
