* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #111;
  background: #fff;
}

/* ── Single centered column ── */
.container {
  max-width: 560px;
  margin: 0 auto;
  padding: 96px 24px;
}

/* ── Photo floated right ── */
.photo {
  float: right;
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
  margin: 4px 0 24px 32px;
  shape-outside: circle();
}

/* ── Name ── */
h1 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

/* ── Prose ── */
p {
  color: #222;
  margin-bottom: 20px;
}

p a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Footer links ── */
.links {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e8e8e8;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: baseline;
}

.links a,
.links .plain {
  color: #555;
  text-decoration: none;
  font-size: 13px;
}

.links a:hover { color: #111; }

.links .plain::before {
  content: '';
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 4px;
  vertical-align: middle;
  background-color: #555;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='M2 7l10 7 10-7'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='M2 7l10 7 10-7'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
