:root {
  --bg: #f6f3ee;
  --fg: #151515;
  --muted: #5b5b5b;
  --card: #ffffff;
  --border: #e3ddd3;
  --accent: #0f6b4a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Newsreader", "Iowan Old Style", "Times New Roman", serif;
  color: var(--fg);
  background: radial-gradient(1200px 600px at 10% 0%, #ffffff 0%, var(--bg) 55%);
  min-height: 100vh;
}

.wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.hero p {
  margin: 0 0 32px;
  font-size: 18px;
  color: var(--muted);
}

.list {
  display: grid;
  gap: 12px;
}

.item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
}

.item:hover {
  transform: translateY(-1px);
  border-color: #d3c9bb;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.name {
  font-weight: 600;
}

.url {
  font-size: 14px;
  color: var(--accent);
}

@media (max-width: 520px) {
  .item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
