/* ---------- About Page Template CSS ---------- */

.page-intro {
  padding-bottom: 48px;
}

.page-intro h1 {
  font-size: 46px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.lede-large {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 680px;
}

/* ---------- Sections ---------- */
section {
  padding: 64px 0;
}

.section-label {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 28px;
}

.personal-section {
  background: var(--cream-warm);
}

.personal-grid {
  display: grid;
  gap: 56px;
  align-items: start;
}

.personal-grid p {
  margin-bottom: 18px;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.photo-grid figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.photo-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.photo-grid figcaption {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--ink-faint);
  margin-top: 4px;
}

.reads-list {
  list-style: none;
  margin-top: 14px;
}

.reads-list li {
    padding: 6px 0;
    font-size: 14px;
}

.reads-list li:first-child {
  padding-top: 0;
}

.reads-list .book-title {
  color: var(--ink);
  font-weight: 600;
}

/* ---------- Mentorship ---------- */
.mentor-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px;
  max-width: 760px;
}

.mentor-card p {
  color: var(--ink-soft);
  font-size: 15.5px;
  margin-bottom: 16px;
}

.mentor-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--forest);
  border-bottom: 1.5px solid var(--terracotta);
  padding-bottom: 2px;
  margin-top: 16px;
}

/* ---------- FoundersBrew ---------- */
.fb-section {
  background: #C25229;
  color: #FFFFFF;
  border-radius: 24px;
  margin: 0 auto;
  max-width: 1084px;
  padding: 64px;
}

.fb-section .eyebrow {
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom:0px;
}

.fb-section .eyebrow::before {
  background: #ffffff;
 
}

.fb-section h2 {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 18px;
  max-width: 520px;
  color: #FFFFFF;
}

.fb-section p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  margin-bottom: 30px;
}

.fb-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.fb-section .btn-primary {
  color: #c35229 !important;
  background: #f2ebe3;
}

.fb-section .btn-primary .arrow-circle {
  background: #B5562F;
}

.fb-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fb-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(252, 250, 245, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.fb-social a:hover {
  background: rgba(252, 250, 245, 0.12);
}

.fb-note {
  font-size: 12.5px;
  color: rgba(252, 250, 245, 0.45);
  margin-top: 28px;
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .personal-grid {
    grid-template-columns: 1fr;
  }
  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fb-section {
    padding: 40px 28px;
    border-radius: 16px;
  }
}
