/* ============================================================
   PAGES/ABOUT.CSS - Bio layout, awards, timeline, publications
   ============================================================ */

/* ---- Bio two-column layout ---- */
.bio-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
}

.bio-layout > div {
  flex: 2 1 460px;
}

/* ---- Sidebar bio card ---- */
.bio-card {
  flex: 1 1 260px;
  background: #FFFFFF;
  padding: 28px;
  border-radius: 3px;
  box-shadow: 0 4px 14px rgba(18,18,18,0.08);
  position: sticky;
  top: 96px;
}

.bio-card .monogram-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #77BD43;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 16px;
}

.bio-card h3 {
  font-size: 18px;
  color: #191919;
  margin-bottom: 2px;
}

.bio-card .role {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #77BD43;
  font-weight: 700;
  margin-bottom: 18px;
  display: block;
}

.fact-row {
  display: flex;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  padding: 9px 0;
  border-top: 1px solid rgba(18,18,18,0.08);
}

.fact-row span:first-child {
  color: #777;
}

.fact-row span:last-child {
  font-weight: 700;
  text-align: right;
}

/* ---- Awards grid ---- */
.awards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8px;
}

.award-card {
  flex: 1 1 220px;
  background: #FFFFFF;
  border-radius: 3px;
  padding: 22px;
  box-shadow: 0 4px 14px rgba(18,18,18,0.08);
  display: flex;
  gap: 14px;
}

.award-card .medal {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  color: #77BD43;
}

.award-card h4 {
  font-size: 16px;
  color: #191919;
  margin-bottom: 4px;
}

.award-card p {
  font-size: 13.5px;
  color: #2A2A2A;
  margin: 0;
}

/* ---- Timeline ---- */
.timeline {
  position: relative;
  padding-left: 30px;
  margin-top: 6px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: rgba(18,18,18,0.14);
}

.timeline-item {
  position: relative;
  padding-bottom: 30px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #77BD43;
  border: 2px solid #F5FFF0;
  box-shadow: 0 0 0 2px #77BD43;
}

.timeline-date {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #77BD43;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.timeline-item h4 {
  font-size: 17px;
  color: #191919;
  margin: 4px 0 2px;
}

.timeline-item p {
  font-size: 14.5px;
  color: #2A2A2A;
  margin: 0;
}

/* ---- Publications list ---- */
.pub-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pub-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #FFFFFF;
  padding: 18px 20px;
  border-radius: 3px;
  box-shadow: 0 4px 14px rgba(18,18,18,0.08);
}

.pub-item .pub-spine {
  width: 8px;
  align-self: stretch;
  background: #77BD43;
  border-radius: 2px;
  flex-shrink: 0;
}

.pub-item h4 {
  font-size: 16.5px;
  color: #191919;
  margin: 0 0 4px;
}

.pub-item p {
  font-size: 14px;
  color: #2A2A2A;
  margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .bio-card {
    position: static;
  }
}
