body {
  font-family: system-ui, sans-serif;
  margin: 0;
  line-height: 1.6;
  color: #333;
  background: #fafafa;
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 1rem;
}

.site-header, .site-footer {
  text-align: center;
  padding: 1rem;
  background: #004d40;
  color: white;
}

h1, h2 {
  margin: 0.5em 0;
}

.post-list {
  margin: 2rem 0;
}

.post-item {
  background: white;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.post-meta {
  font-size: 0.9rem;
  color: #5063cd;
}
.post-description{
    color: white;}
    font-size: 0.9rem;
    }

.read-more {
  color: #00695c;
  font-weight: bold;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

.pagination ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 2rem 0 0;
}

.pagination li {
  margin: 0 5px;
}

.pagination a {
  padding: 6px 12px;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #333;
}

.pagination a.active {
  background: #004d40;
  color: white;
}

.pagination a.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }
  .post-navigation {
    flex-direction: column;
    gap: 1rem;
  }
}
.back-link{
    display: inline-block;
    margin-top: 1rem;
    color: white;
    text-decoration: none;
}