/* Reset */
body, h1, h2, p, ul {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background: #f8faf9;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background: white;
  border-bottom: 1px solid #d8eadc;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-container {
  max-width: 1000px;
  margin: auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #4CAF7A;
}

.nav-right {
  display: flex;
  gap: 20px;
}

.nav-link {
  color: #4CAF7A;
  font-weight: 500;
  text-decoration: none;
}

.nav-link:hover {
  text-decoration: underline;
}

/* Burger */
.burger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #4CAF7A;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  border-top: 1px solid #d8eadc;
  padding: 12px 16px;
}

.mobile-menu a {
  padding: 10px 0;
  color: #4CAF7A;
  text-decoration: none;
  font-weight: 500;
}

.mobile-menu.show {
  display: flex;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-right {
    display: none;
  }
  .burger {
    display: block;
  }
}

/* Content */
.content {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

.page-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #4CAF7A;
}

/* Post List Cards */
.posts-list {
  display: grid;
  gap: 20px;
}

.post-card {
  display: block;
  background: white;
  padding: 18px;
  border-radius: 10px;
  border-left: 4px solid #4CAF7A;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.post-card:hover {
  background: #eef7f1;
}

/* Post Page */
.post-container {
  background: white;
  padding: 24px;
  border-radius: 10px;
  border-left: 4px solid #4CAF7A;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.post-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #4CAF7A;
}

.post-meta {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: #666;
}

ul {
  margin-left: 20px;
}
