/* ── About Us page styles ─────────────────────────────────────────────────── */

/* ── 1. Intro: Kenneth & Gloria ─────────────────────────────────────────── */
.about-intro {
    padding: clamp(48px, 6vw, 96px) 0;
}
.about-intro__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}
@media (min-width: 768px) {
    .about-intro__container {
        grid-template-columns: 280px 1fr;
        gap: clamp(40px, 5vw, 80px);
        align-items: start;
    }
}
.about-intro__image img {
    width: 100%;
    border-radius: 4px;
    display: block;
}
.about-intro__content .section-main-title {
    margin-bottom: 24px;
}

/* ── 2. Ministry began ───────────────────────────────────────────────────── */
.about-ministry {
    padding: clamp(48px, 6vw, 96px) 0;
    background: #f9f7f5;
}
.about-ministry__container {
    max-width: 800px;
}
.about-ministry__title {
    margin-bottom: 32px;
}
.about-ministry__body blockquote {
    border-left: 4px solid #c9a84c;
    margin: 32px 0;
    padding: 20px 28px;
    background: #fff;
    font-style: italic;
}
.about-ministry__body blockquote footer {
    margin-top: 12px;
    font-style: normal;
    font-weight: 700;
    font-size: .9em;
    opacity: .7;
}

/* ── 3. Timeline carousel ────────────────────────────────────────────────── */
.about-timeline {
    padding: clamp(48px, 6vw, 96px) 0;
    overflow: hidden;
}
.about-timeline__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
}
.about-timeline__header .section-main-title {
    margin-bottom: 0;
}
.about-timeline__nav {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.about-timeline__nav .swiper-button-prev,
.about-timeline__nav .swiper-button-next {
    position: static;
    width: 44px;
    height: 44px;
    border: 1.5px solid #151515;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    cursor: pointer;
    transition: background .2s, color .2s;
    margin: 0;
    color: #151515;
}
.about-timeline__nav .swiper-button-prev:hover,
.about-timeline__nav .swiper-button-next:hover {
    background: #151515;
    color: #fff;
}
.about-timeline__nav .swiper-button-prev::after,
.about-timeline__nav .swiper-button-next::after {
    display: none;
}
.about-timeline__nav svg {
    width: 18px;
    height: 14px;
    pointer-events: none;
}
.about-timeline__swiper-wrap {
    /* allow swiper overflow to bleed slightly on mobile */
}
.about-timeline__slide {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.about-timeline__year {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    color: #c9a84c;
    line-height: 1;
}
.about-timeline__slide img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}
.about-timeline__caption {
    font-family: 'Mulish', system-ui, sans-serif;
    font-size: clamp(13px, 0.8vw + 9px, 15px);
    color: #151515;
    margin: 0;
    line-height: 1.4;
}
.about-timeline .swiper-pagination {
    position: static;
    margin-top: 24px;
    text-align: center;
}

/* ── 4. Mission ──────────────────────────────────────────────────────────── */
.about-mission {
    padding: clamp(48px, 6vw, 96px) 0;
    background: #f9f7f5;
}
.about-mission__container {
    max-width: 900px;
}
.about-mission__title {
    margin-bottom: 32px;
}
.about-mission__body ul {
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.about-mission__image {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 40px 0 0;
    border-radius: 4px;
}

/* ── 5. Numbers & Facts ──────────────────────────────────────────────────── */
.about-facts {
    padding: clamp(48px, 6vw, 96px) 0;
}
.about-facts__container {
    max-width: 860px;
}
.about-facts__title {
    margin-bottom: 32px;
}
.about-facts__body ul {
    padding-left: 24px;
}
.about-facts__body li + li {
    margin-top: 8px;
}
.about-facts__chart {
    display: block;
    max-width: 540px;
    width: 100%;
    margin: 36px auto;
}
.about-facts__breakdown ul {
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
