/* ============================
   Becks2Butte — About Page Styles
   ============================ */

/* Lead paragraph */
/* .lead {
    font-size: 1.25rem;
    color: var(--color-soft-charcoal);
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}  */

body.about .about-intro {
    text-align: center;
    max-width: 850px;
}

body.about .about-intro .lead {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-top: 1rem;
    color: var(--color-charcoal);
}

.about-intro h1 {
    text-align: left;
}

/* -----------------------------------------
   FAMILY PHOTO (updated smaller size)
   ----------------------------------------- */
.family-photo img,
.about-photo img {
    max-width: 420px; /* reduced size for better balance */
    width: 100%;
    margin: 0 auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

/* -----------------------------------------
   SECTION SPACING
   ----------------------------------------- */
/* .section,
.section-alt {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.section-alt {
    background-color: var(--color-gray-50);
} */

/* -----------------------------------------
   TEXT BLOCKS
   ----------------------------------------- */
.our-story p,
.calling p,
.family-values p,
.about-family p,
.about-butte p,
.about-mission-board p {
    margin-bottom: var(--space-md);
    line-height: 1.7;
    color: var(--color-charcoal);
}

/* -----------------------------------------
   HEADINGS
   ----------------------------------------- */
h1, h2 {
    color: var(--color-pine);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
}

h2 {
    font-size: 1.6rem;
    font-weight: 700;
}

/* -----------------------------------------
   LISTS
   ----------------------------------------- */
ul {
    margin-top: var(--space-sm);
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

ul li {
    margin-bottom: var(--space-xs);
    color: var(--color-charcoal);
}

/* -----------------------------------------
   MISSION BOARD LOGO
   ----------------------------------------- */
.mission-logo img {
    max-width: 260px;
    width: 100%;
    height: auto;
    margin: 2rem auto;
    display: block;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    background-color: #FFFFFF;
}

/* -----------------------------------------
   RESPONSIVE ADJUSTMENTS
   ----------------------------------------- */
@media (max-width: 800px) {

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    p {
        font-size: 1rem;
    }

    .family-photo img,
    .about-photo img {
        max-width: 340px; /* slightly smaller on mobile */
    }

    .mission-logo img {
        background-color: #ffffff;
    }
}