/* ================================================
   THE WATCHMAN POST — About Page Styles
   ================================================ */

.about-main {
  padding: 56px 0 80px;
}

.about-wrap {
  max-width: 780px;
  margin: 0 auto;
}

/* --- PAGE HEADER --- */
.about-page-header {
  margin-bottom: 48px;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 16px 0 24px;
  letter-spacing: -0.01em;
}

.about-header-rule {
  height: 2px;
  background: var(--text-primary);
}

/* --- INTRO (photo + text) --- */
.about-intro {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

.about-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.about-photo-placeholder {
  width: 200px;
  height: 240px;
  background-color: var(--bg-parchment);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* When photo is provided, replace placeholder with: */
.about-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-placeholder-inner {
  text-align: center;
}

.photo-placeholder-text {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-photo-caption {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

.about-photo-caption strong {
  color: var(--text-primary);
  display: block;
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.about-intro-text p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.about-intro-text p:last-child {
  margin-bottom: 0;
}

/* --- DIVIDER --- */
.about-divider {
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}

/* --- SECTIONS --- */
.about-section h2.about-section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent-red);
  display: inline-block;
}

.about-section p {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.about-section p:last-child {
  margin-bottom: 0;
}

.about-section p strong {
  color: var(--text-primary);
  font-weight: 600;
}

.about-section p em {
  font-style: italic;
}

/* --- MINISTRY LIST --- */
.about-list {
  list-style: none;
  margin: 24px 0 24px 0;
  border-left: 3px solid var(--accent-red);
  padding-left: 20px;
}

.about-list li {
  font-family: var(--font-body);
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--rule-light);
}

.about-list li:last-child {
  border-bottom: none;
}

.about-list li strong {
  color: var(--text-primary);
}

/* --- MISSION SECTION --- */
.about-mission {
  background-color: var(--bg-parchment);
  padding: 40px;
  border-top: 2px solid var(--text-primary);
  border-bottom: 2px solid var(--text-primary);
  margin-top: 48px;
}

.about-mission h2.about-section-title {
  border-bottom-color: var(--accent-red);
}

/* --- SIGN OFF --- */
.about-sign-off {
  font-family: var(--font-display) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--text-primary) !important;
  margin-top: 32px !important;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* --- RESPONSIVE --- */
@media (max-width: 680px) {
  .about-intro {
    grid-template-columns: 1fr;
  }

  .about-photo-wrap {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }

  .about-photo-placeholder {
    width: 120px;
    height: 144px;
    flex-shrink: 0;
  }

  .about-photo-caption {
    text-align: left;
  }

  .about-mission {
    padding: 28px 20px;
  }
}

/* --- AUTHOR PHOTO --- */
.about-photo-frame {
  width: 200px;
  height: 240px;
  border: 2px solid var(--text-primary);
  overflow: hidden;
  flex-shrink: 0;
}

.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
