/* ===========================
   ABOUT PAGE STYLES
   Clean, structured, no shadows
=========================== */

/* SHARED SECTIONS */
.about-section {
    max-width: 960px;
    margin: var(--space-xl) auto;
    padding: 0 var(--space-sm);
}

.about-section + .about-section {
    margin-top: var(--space-lg);
}

.about-section img {
    width: 100%;
    border-radius: var(--radius-sm);
    display: block;
}

.full-image {
    margin-bottom: var(--space-sm);
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    text-align: left;
    margin-bottom: var(--space-sm);
}

.center-text {
    max-width: 800px;
    margin: var(--space-lg) auto;
}

.center-text p {
    text-align: left;
    max-width: 760px;
    margin: 0 auto var(--space-sm);
}

/* ===========================
   GENERAL OVERSEER
=========================== */
.go-section {
    background: #111827;
    color: white;
    padding: var(--space-2xl) 8%;
}

.go-inner {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.go-image img {
    width: 100%;
    max-width: 280px;
    border-radius: var(--radius-sm);
    margin: 0 auto;
    display: block;
}

.go-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 4px;
}

.go-text h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 var(--space-sm);
    line-height: 1.2;
}

.go-text p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-xs);
}

@media (min-width: 768px) {
    .go-inner {
        grid-template-columns: 250px 1fr;
        gap: var(--space-xl);
        align-items: center;
    }

    .go-text h2 {
        font-size: 32px;
    }
}

/* ===========================
   DISTRICT PASTOR
=========================== */
.dp-section {
    padding: var(--space-2xl) 8%;
    background: var(--bg-light);
}

.dp-inner {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.dp-image img {
    width: 100%;
    height: 100%;
    max-height: 380px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-sm);
}

.dp-card {
    background: white;
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--secondary-color);
}

.dp-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.dp-card h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 var(--space-xs);
    line-height: 1.2;
}

.dp-card p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

@media (min-width: 768px) {
    .dp-inner {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
}
