/* Same base as about, but with same palette shift */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(to bottom, #e8f0ff 10%, #d8e5fa 40%, #c0d8f5 100%);
  color: #1f2f3f;
  font-family: 'EB Garamond', Georgia, serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  max-width: 720px;
  background: rgba(245, 250, 255, 0.94);
  border: 2px solid #b0c8e0;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(120, 150, 190, 0.3);
  padding: 40px 30px;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: #3d5a7a;
  text-align: center;
  margin-bottom: 0.6em;
  letter-spacing: 1px;
  text-shadow: 0 2px 6px rgba(80, 120, 160, 0.2);
}

.subtitle {
  font-family: 'Special Elite', cursive;
  font-size: 1.3rem;
  color: #506a8a;
  text-align: center;
  margin-bottom: 2em;
  font-style: italic;
}

.back-link {
  display: block;
  text-align: center;
  margin-bottom: 2.5em;
  font-size: 1.2rem;
  color: #2f4e6e;
  text-decoration: none;
  padding: 8px 20px;
  border: 1px solid #a0bed8;
  border-radius: 6px;
  background: rgba(190, 215, 240, 0.25);
  transition: all 0.2s ease;
}

.back-link:hover {
  background: rgba(170, 200, 230, 0.5);
  border-color: #7a9cc0;
}

article {
  margin-bottom: 3em;
  padding-bottom: 2em;
  border-bottom: 1px dashed #b0c8e0;
}

article:last-child {
  border-bottom: none;
}

.post-date {
  font-family: 'Special Elite', cursive;
  color: #5a728f;
  font-size: 1.1rem;
  margin-bottom: 0.5em;
}

.post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #3d5a7a;
  margin-bottom: 0.8em;
}

.post-content p {
  font-size: 1.25rem;
  margin-bottom: 1.2em;
  max-width: 620px;
}

.container::before,
.container::after {
  content: "✧";
  display: block;
  font-size: 2.5rem;
  color: #90b0d0;
  opacity: 0.65;
  text-align: center;
}

.container::before {
  margin-bottom: 0.8em;
}

.container::after {
  margin-top: 2.5em;
}
