/* Telegraph-style CSS for writing pages */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #2a2a2a;
  background: #f8f6f3;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
}

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 60px 20px;
}

.back-link {
  display: inline-block;
  margin-bottom: 40px;
  color: #6a6a6a;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: #4a4a4a;
}

.back-link::before {
  content: "← ";
}

header {
  text-align: center;
  margin-bottom: 80px;
  padding-bottom: 40px;
}

h1 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #1a1a1a;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.date {
  font-size: 13px;
  color: #9a9a9a;
  font-weight: 300;
}

.date::before {
  content: "• ";
  color: #8a8a8a;
}

.content {
  font-size: 19px;
  line-height: 1.7;
  color: #2c2c2c;
  font-weight: 400;
}

.content p {
  margin-bottom: 24px;
}

.content h2 {
  font-size: 24px;
  font-weight: 500;
  margin: 40px 0 20px 0;
  color: #1f1f1f;
  line-height: 1.3;
}

.content h3 {
  font-size: 22px;
  font-weight: 500;
  margin: 32px 0 16px 0;
  color: #1f1f1f;
  line-height: 1.3;
}

.content blockquote {
  margin: 32px 0;
  padding: 0 24px;
  border-left: 2px solid #d0d0d0;
  font-style: italic;
  color: #4a4a4a;
  font-weight: 400;
}

.content img {
  max-width: 100%;
  height: auto;
  margin: 32px 0;
  border-radius: 4px;
}

.content strong {
  font-weight: 700;
}

.content em {
  font-style: italic;
}

footer {
  margin-top: 100px;
  padding-top: 40px;
  text-align: center;
  font-size: 13px;
  color: #9a9a9a;
  font-weight: 300;
}

@media (max-width: 768px) {
  .container {
    padding: 20px 15px;
  }
  
  h1 {
    font-size: 32px;
  }
  
  .content {
    font-size: 20px;
  }
  
  .content h2 {
    font-size: 26px;
  }
  
  .content h3 {
    font-size: 22px;
  }
}
