/* ── ABOUT LAYOUT ── */
.about-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: calc(100vh - 41px);
  max-width: 1060px;
  margin: 0 auto;
  padding: 48px 28px 80px;
  gap: 60px;
}

/* ── LEFT ── */
.about-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-photo {
  width: 46%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #000;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-identity {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.about-aka {
  font-size: 11px;
  color: #888;
}

.about-location {
  font-size: 11px;
  color: #555;
  line-height: 1.6;
  margin-top: 6px;
}

.about-links {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 8px;
}

.about-links a {
  font-size: 11px;
  color: #555;
  text-decoration: none;
}

.about-links a:hover {
  color: #000;
  text-decoration: underline;
}

.cv-download {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 500;
  color: #000;
  text-decoration: underline;
  letter-spacing: 0.02em;
}

.cv-download:hover {
  color: #555;
}

/* ── RIGHT ── */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-statement {
  font-size: 13px;
  line-height: 1.85;
  color: #111;
  max-width: 600px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 0;
}

/* ── CV SECTIONS ── */
.cv-block {
  padding: 28px 0;
  border-bottom: 1px solid #e8e8e8;
}

.cv-block:last-child {
  border-bottom: none;
}

.cv-heading {
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #aaa;
  margin-bottom: 14px;
}

.cv-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cv-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: baseline;
}

.cv-year {
  font-size: 10px;
  color: #aaa;
  flex-shrink: 0;
  letter-spacing: 0.03em;
  padding-top: 1px;
}

.cv-detail {
  font-size: 12px;
  color: #111;
  line-height: 1.55;
}

.cv-detail em {
  font-style: italic;
}

/* ── ACTIVE NAV ── */
.site-nav a.active {
  font-weight: 500;
  text-decoration: underline;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .about-layout {
    grid-template-columns: 1fr;
    padding: 28px 16px 60px;
    gap: 32px;
  }

  .about-photo {
    width: 40%;
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .about-photo {
    width: 50%;
    max-width: 180px;
  }

  .cv-item {
    grid-template-columns: 48px 1fr;
    gap: 10px;
  }
}
