/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */

/* Hero */
.about-hero {
    background-color: var(--cream);
    padding: 80px 0 60px;
}
/* Remove white gap between header and cream hero */
.page-template-page-about .header-spacer {
    background-color: var(--cream);
}
.about-hero-inner {
    text-align: center;
}
.about-hero h1 {
    color: var(--text-primary);
    font-size: 3rem;
    margin-bottom: 16px;
}
.about-hero-subtext {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 40px;
}
.about-hero-image {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    max-height: 350px;
}
.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mission Vision Values */
.about-mvv {
    background: var(--cream);
}
.mvv-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.mvv-item h4 {
    font-family: var(--font-heading);
    font-style: italic;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.mvv-item p {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.7;
}

/* Breakout Image */
.about-breakout-image {
    width: 100%;
    overflow: hidden;
}
.about-breakout-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Grassroots */
.about-grassroots h2 {
    margin-bottom: 20px;
}
.grassroots-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
    max-width: 700px;
}
.grassroots-image {
    margin-top: 40px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}
.grassroots-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Neighbors */
.about-neighbors h2 {
    margin-bottom: 20px;
}
.neighbors-text {
    max-width: 900px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 32px;
}
.neighbors-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}
.neighbors-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
    max-width: 700px;
    margin: 0 auto;
}
.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.team-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--light-gray);
    overflow: hidden;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-member strong {
    font-size: 0.9375rem;
    color: var(--text-primary);
}
.team-member span {
    font-size: 0.8125rem;
    color: var(--text-light);
    font-style: italic;
}

/* Community Council */
.about-council {
    background: var(--dark-green);
    color: var(--white);
}
.about-council h2 {
    color: var(--white);
}
.council-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px 24px;
    margin-top: 32px;
}
.council-member {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: center;
}
.council-member strong {
    font-size: 0.875rem;
    color: var(--white);
}
.council-member span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Why We Care */
.about-wwc {
    background: #f0c560;
}
.about-wwc h2 {
    color: var(--text-primary);
}
.wwc-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
}
.wwc-card {
    background: var(--white);
    border-radius: 8px;
    padding: 32px 36px;
    border-left: none;
}
.wwc-card blockquote {
    margin: 0;
    padding: 0;
}
.wwc-card blockquote::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    display: block;
    margin-bottom: 4px;
}
.wwc-card p {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.wwc-card cite {
    display: flex;
    align-items: center;
    gap: 12px;
    font-style: normal;
}
.wwc-card .wwc-photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--light-gray);
    flex-shrink: 0;
}
.wwc-card cite span {
    display: flex;
    flex-direction: column;
}
.wwc-card cite strong {
    font-size: 0.9375rem;
    color: var(--text-primary);
    font-weight: 700;
}
.wwc-card cite em {
    font-size: 0.8125rem;
    color: var(--text-light);
    font-style: normal;
}

/* Partners */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px 48px;
}
.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    max-width: 140px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.partner-logo:hover {
    opacity: 1;
}
.partner-logo img {
    max-height: 60px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* JEDI */
.about-jedi {
    background: var(--dark-green);
    color: var(--white);
}
.about-jedi .container {
    max-width: 900px;
}
.about-jedi h2 {
    color: var(--white);
    margin-bottom: 20px;
}
.jedi-content {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}
.jedi-content p {
    color: rgba(255, 255, 255, 0.85);
}
.jedi-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.jedi-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
}
.jedi-card h4 {
    color: var(--gold);
    font-family: var(--font-label);
    font-style: normal;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 8px;
}
.jedi-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* Photo Credits */
.about-credits {
    background: var(--light-gray);
}
.credits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 32px;
}
.credits-grid a,
.credits-grid span {
    font-size: 0.875rem;
    color: var(--text-light);
}
.credits-grid a:hover {
    color: var(--dark-green);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0 40px;
    }
    .about-hero h1 {
        font-size: 2.25rem;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }
    .jedi-cards {
        grid-template-columns: 1fr;
    }
}