/* ===== ABOUT LAYOUT ===== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 3.5rem;
  align-items: start;
}

/* ===== ACCENT & TITLE ===== */
.about__accent {
  width: 2.5rem;
  height: 4px;
  border-radius: 2px;
  background: var(--green);
  margin-bottom: 1.5rem;
}

.about__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 2rem;
}

/* ===== BODY TEXT ===== */
.about__body {
  font-size: 0.95rem;
  line-height: 2;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 2rem;
}
.about__body p {
  margin-bottom: 1.4rem;
}
.about__body p:last-child {
  margin-bottom: 0;
}

/* ===== QUOTE ===== */
.about__quote {
  margin: 2rem 0 2.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--yellow-pale);
}
.about__quote p {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--muted);
}

/* ===== SECTIONS ===== */
.about__section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.about__section-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 1.25rem;
}

/* ===== TOPICS ===== */
.about__topics {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.about__topic {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.about__topic-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .55rem;
}
.about__topic-dot--green  { background: var(--green); }
.about__topic-dot--yellow { background: var(--yellow); }
.about__topic-dot--sand   { background: var(--sand); }

.about__topic-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: .2rem;
}
.about__topic-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--muted);
}

/* ===== PROFILE ===== */
.profile {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.profile__avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.profile__name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: .4rem;
}
.profile__bio {
  font-size: 0.875rem;
  line-height: 1.85;
  color: var(--muted);
}

/* ===== DEFINITION LIST ===== */
.about__dl {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about__dl-row {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.about__dl-row:last-child {
  border-bottom: none;
}
.about__dl-row dt {
  color: var(--muted);
}
.about__dl-row dd {
  color: var(--fg);
}
.about__dl-row dd a {
  color: var(--green-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: opacity .2s;
}
.about__dl-row dd a:hover {
  opacity: .7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 720px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
  .about__title {
    font-size: 1.25rem;
  }
  .about__dl-row {
    grid-template-columns: 7rem 1fr;
  }
}