body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
}

.post-content {
  max-width: 720px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.post-list {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.post-card {
  background: #22ff0e;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}

.post-card:hover {
  transform: translateY(-4px);
}

.post-card h2 {
  margin-top: 0;
}

.post-card a {
  text-decoration: none;
  color: #e91e63;
}

.post-date {
  font-size: 0.9rem;
  color: #888;
}

.post-description {
  margin: 1rem 0;
  color: #555;
}

.read-more {
  font-weight: bold;
  color: #ff3b6f;
}

/* Responsive */
@media (max-width: 600px) {
  .post-card {
    padding: 1rem;
  }
}

/*# sourceMappingURL=main.css.map */