@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Source+Serif+4:wght@400;500;600&display=swap");

:root {
  color-scheme: dark;
  font-family: "Source Serif 4", "Georgia", serif;
}

* {
  box-sizing: border-box;
}

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

body {
  background: radial-gradient(circle at top, #1b2230, #0d0f14 60%);
  color: #f3f2ef;
}

.p2p {
  min-height: 100vh;
  padding: 56px 24px 64px;
  display: grid;
  gap: 32px;
}

.p2p-header {
  max-width: 720px;
}

.p2p-back {
  display: inline-flex;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  margin-bottom: 16px;
  text-decoration: none;
  text-transform: uppercase;
  color: rgba(243, 242, 239, 0.7);
  font-family: "Fraunces", "Times New Roman", serif;
}

.p2p-back:hover {
  color: rgba(243, 242, 239, 0.95);
}

.p2p-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: rgba(243, 242, 239, 0.7);
  font-family: "Fraunces", "Times New Roman", serif;
}

.p2p-index {
  display: grid;
  gap: 16px;
  max-width: 720px;
}

.p2p-index-link {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: inherit;
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.p2p-index-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.p2p-index-title {
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: "Fraunces", "Times New Roman", serif;
}

.p2p-index-meta {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243, 242, 239, 0.6);
  font-family: "Fraunces", "Times New Roman", serif;
}

.p2p-list {
  display: grid;
  gap: 28px;
  max-width: 820px;
}

.p2p-post {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 24px;
}

.p2p-post:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.p2p-post-title {
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: rgba(243, 242, 239, 0.75);
  font-family: "Fraunces", "Times New Roman", serif;
}

.p2p-post-subtitle {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 24px 0 12px;
  color: rgba(243, 242, 239, 0.7);
  font-family: "Fraunces", "Times New Roman", serif;
}

.p2p-post-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.p2p-post-text + .p2p-post-text {
  margin-top: 16px;
}

.p2p-post-list {
  margin: 0 0 16px;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.p2p-post-list li {
  line-height: 1.5;
}

@media (max-width: 600px) {
  .p2p {
    padding: 40px 18px 56px;
  }
}
