* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2d3748;
  background: #fff5f5;
  padding: 20px;
}

article {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  padding: 60px 40px;
  border-left: 5px solid #fc8181;
  box-shadow: 8px 8px 0 #fed7d7;
}

.post-header {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 3px solid #fed7d7;
}

.post-meta {
  font-size: 14px;
  color: #fc8181;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  font-weight: 600;
}

.post-divider {
  margin: 0 10px;
  color: #2d3748;
}

h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #2d3748;
  margin-bottom: 20px;
  font-style: italic;
}

.post-intro {
  font-size: 1.125rem;
  color: #fc8181;
  font-weight: 600;
  margin-top: 20px;
}

.post-content {
  margin-bottom: 50px;
}

h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.75rem;
  color: #2d3748;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 4px solid #fc8181;
  font-style: italic;
}

p {
  margin-bottom: 20px;
}

.cta-section {
  background: #fed7d7;
  padding: 40px;
  margin: 50px -40px 50px -40px;
  border-top: 3px solid #fc8181;
  border-bottom: 3px solid #fc8181;
}

.cta-section h2 {
  border-left: none;
  padding-left: 0;
  margin-top: 0;
  color: #2d3748;
}

.cta-link {
  color: #fc8181;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #fc8181;
  transition: all 0.2s ease;
}

.cta-link:hover {
  color: #2d3748;
  border-bottom-color: #2d3748;
}

.post-footer {
  padding-top: 30px;
  border-top: 1px solid #fed7d7;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: #fff5f5;
  color: #fc8181;
  padding: 6px 14px;
  border-radius: 3px;
  font-size: 14px;
  border: 1px solid #fed7d7;
  font-weight: 500;
}

@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  article {
    padding: 30px 20px;
    box-shadow: 4px 4px 0 #fed7d7;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .cta-section {
    margin: 40px -20px 40px -20px;
    padding: 30px 20px;
  }
}
