body {
  margin: 0;
  font-family: Georgia, serif;
  background-color: #ffffff;
  color: #222;
  line-height: 1.6;
  padding: 2rem 1rem;
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

.post {
  margin-bottom: 3rem;
  border-bottom: 1px solid #ccc;
  padding: 2rem;
  transition: background-color 0.3s ease;
}

.post:hover {
  background-color: #f9f9f9;
}

.post-title {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  font-weight: bold;
  transition: color 0.3s ease;
}

.post-title:hover {
  color: #0066cc;
}

.post-title a {
  color: inherit;
  text-decoration: none;
}

.post-title a:hover {
  color: #0066cc;
}

.post-preview {
  display: flex;
  flex-direction: column;
}

.header-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-image:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.post-content {
  font-size: 1rem;
}

.post-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.post-content h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #444;
}

.post-content p {
  margin-bottom: 1rem;
}

.post-content ul, .post-content ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.post-content li {
  margin-bottom: 0.5rem;
}

.post-content img {
    max-width: 100%;
}

.post-meta {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.back-link {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.back-link a {
  color: #0066cc;
  text-decoration: none;
}

.back-link a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 600px) {
  .post-preview {
    flex-direction: row;
    gap: 1.5rem;
  }

  .header-image {
    margin-bottom: 0;
  }
} 