*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

body {
  background: #e8e8e8;
  color: #1a1a1a;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  line-height: 1.45;
}

/* ── Page column ──────────────────────────────────────────────────── */
.page {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 0 0;
}

/* ── Portrait ─────────────────────────────────────────────────────── */
.portrait {
  border: 0.5px solid #2c2c2c;
  background: #2c2c2c;
  overflow: hidden;
  margin-bottom: 16px;
}

.portrait img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Social icons ─────────────────────────────────────────────────── */
.social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 35px;
  margin-bottom: 35px;
}

.social-icon {
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1;
  transition: opacity 0.15s;
}

.social-icon:hover { opacity: 0.4; }

/* ── Sections ─────────────────────────────────────────────────────── */
section {
  margin-bottom: 32px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.section-head .section-title {
  margin-bottom: 0;
}

.legend {
  font-size: 10px;
  color: #777;
  font-weight: 500;
  text-align: right;
  line-height: 1.5;
}

/* ── Lists ────────────────────────────────────────────────────────── */
.list {
  border: 0.5px solid #2c2c2c;
  background: #e8e8e8; /* matches site background */
  font-size: 12px;
}

.list li {
  border-bottom: 0.5px solid #2c2c2c;
}

.list li:last-child {
  border-bottom: none;
}

.list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 10px;
  transition: background 0.1s;
}

.list li a:hover {
  background: #2c2c2c;
  color: #e8e8e8;
}

.list li a:hover .arr,
.list li a:hover .credits,
.list li a:hover b {
  color: #e8e8e8;
}

.item-main {
  flex: 1;
  line-height: 1.5;
}

.credits {
  font-size: 10px;
  font-weight: 600;
  color: #888;
  letter-spacing: 0.02em;
  margin-left: 4px;
}

.list b {
  font-size: 10px;
  font-weight: 600;
  color: #888;
  letter-spacing: 0.02em;
}

/* ── Arrow ────────────────────────────────────────────────────────── */
.arr {
  color: #2c2c2c;
  font-size: 11px;
  flex-shrink: 0;
}

/* ── CTA bar ──────────────────────────────────────────────────────── */
.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #2c2c2c;
  color: #ebebeb;
  padding: 9px 10px;
  font-size: 12px;
  font-weight: 400;
  margin-top: 4px;
  transition: background 0.15s;
}

.cta:hover { background: #3d3d3d; }

.cta .arr { color: #ebebeb; }

/* ── Footer illustration ──────────────────────────────────────────── */
.footer-art {
  margin-top: 52px;
  margin-bottom: 52px;
  display: flex;
  justify-content: center;
}

.footer-art img {
  width: min(220px, 55%);
  mix-blend-mode: multiply;
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 680px) {
  .page {
    padding: 16px 16px 0;
  }

}
