@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

/* ── Site wrapper ── */
.site-wrapper {
  background: #edede9 !important;
}

/* ── Page header ── */
.page-header {
  background: #e4e4e0;
  border-bottom: 1px solid #d0d0cc;
  padding: 2.5rem 3rem 2rem;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  align-items: center;
}
.page-header-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid #c8c8c0;
}
.page-header-text .eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2B6E8A;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.page-header-text h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1A2E3B;
  line-height: 1.15;
  margin-bottom: 0.3rem;
}
.page-header-text .subtitle {
  font-size: 0.85rem;
  color: #2B6E8A;
  font-weight: 400;
}

/* ── Content area ── */
.content {
  background: #edede9;
  padding: 0 3rem 3rem;
}
.bio-intro {
  padding: 2rem 0 1.75rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #3A5568;
  font-weight: 300;
  border-bottom: 1px solid #d0d0cc;
  margin-bottom: 2rem;
}
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
}
.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2B6E8A;
  font-weight: 600;
  margin-bottom: 1.1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #d0d0cc;
}

/* ── Employment ── */
.role-list { display: flex; flex-direction: column; gap: 1.4rem; margin-bottom: 2rem; }
.role-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1A2E3B;
  margin-bottom: 0.15rem;
}
.role-org {
  font-size: 0.78rem;
  color: #2B6E8A;
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.role-years {
  font-size: 0.7rem;
  color: #7A9BAE;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.role-desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #4A6475;
  font-weight: 300;
}

/* ── Education ── */
.edu-list { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2rem; }
.edu-item .edu-degree {
  font-size: 0.85rem;
  font-weight: 500;
  color: #1A2E3B;
  margin-bottom: 0.15rem;
}
.edu-item .edu-school {
  font-size: 0.78rem;
  color: #4A6475;
  font-weight: 300;
}

/* ── Activities ── */
.activity-list { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 2rem; }
.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: #3A5568;
  line-height: 1.5;
  font-weight: 300;
}
.act-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #2B6E8A;
  margin-top: 0.45rem;
  flex-shrink: 0;
  opacity: 0.7;
}

/* ── Awards ── */
.award-block {
  background: #e0e0da;
  border-left: 2px solid #2B6E8A;
  padding: 0.9rem 1.1rem;
  border-radius: 0 6px 6px 0;
  margin-bottom: 1rem;
}
.award-title {
  font-size: 0.82rem;
  font-weight: 500;
  color: #1A2E3B;
  margin-bottom: 0.2rem;
}
.award-sub {
  font-size: 0.75rem;
  color: #4A6475;
  font-weight: 300;
}

/* ── Back link ── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: #2B6E8A;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 1.75rem;
  padding-top: 1.75rem;
  opacity: 0.8;
}
.back-link:hover { opacity: 1; }

/* ── Responsive ── */
@media (max-width: 640px) {
  .page-header { grid-template-columns: 1fr; padding: 1.5rem; }
  .page-header-photo { width: 72px; height: 72px; }
  .content { padding: 0 1.5rem 2rem; }
  .two-col { grid-template-columns: 1fr; }
}
