:root {
  --ink: #2c2b25;
  --muted: #7a765f;
  --avatar-bg: #e4e1d4;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  height: 100%;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding: 24px;
}

.card {
  max-width: 560px;
  width: 100%;
}

.row {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--avatar-bg);
  flex-shrink: 0;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

h1 {
  font-size: 20px;
  margin: 0 0 6px;
}

.role {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 16px;
}

p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 54ch;
  color: var(--ink);
  margin: 0 0 20px;
}

.links {
  display: flex;
  gap: 18px;
  font-size: 13.5px;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

.links a {
  color: #4a4838;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.links a:hover {
  border-color: #4a4838;
}

@media (max-width: 420px) {
  .row {
    gap: 18px;
  }
}
