/*
 * sections.css — About, Curious, Lately column sections
 */

/* ─── ABOUT ─── */
.about {
  padding: var(--space-2xl) 0 var(--space-xl);
}

.about-intro {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  font-weight: var(--weight-light);
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 48px;
  transition: color var(--transition-fast), font-family var(--transition-fast);
}

.about .body-p {
  font-size: var(--text-base);
}

/* ─── CONTENT SPLIT — text + photo side by side ─── */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-xl) var(--col-pad);
}

/* Flip: photo left, text right */
.content-split--flip .content-split__photo { order: 1; }
.content-split--flip .content-split__text  { order: 2; }

.content-split .section-label {
  margin-bottom: 32px;
}

.content-split__photo img {
  width: 100%;
  display: block;
  border-radius: 2px;
  box-shadow: 0 4px 24px rgba(24, 23, 21, 0.11);
  filter: var(--filter-thinking);
}

/* ─── CURIOUS ABOUT ─── */
.curious .body-p {
  font-size: var(--text-base);
}

/* ─── LATELY ─── */
.lately .content-split__photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 20% 75%;
}

.thought {
  font-size: var(--text-base);
  font-weight: var(--weight-light);
  color: var(--text-body);
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.thought:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
