.home-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.home-hero h1 {
  margin: 0 0 0.5rem 0;
}

.home-subtitle {
  margin: 0.5rem 0 1.5rem 0;
  font-size: 1.1rem;
  opacity: 0.8;
}

.home-intro {
  max-width: 600px;
  margin: 1.5rem auto 2rem;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.home-social {
  margin: 2rem 0;
}

.home-posts {
  margin-top: 5rem;
}

.home-posts h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.posts-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.post-card {
  padding: 1.5rem;
  border-radius: 0.5rem;
  background: #eaeaea;
  border: 1px solid #dcdcdc;
  transition: all 0.3s ease;
}

.dark-theme .post-card {
  background: #3b3d42;
  border: 1px solid #4a4b50;
}

.post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dark-theme .post-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.post-card h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.25rem;
}

.post-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.post-card h3 a:hover {
  color: #67a2c9;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

.post-meta time {
  white-space: nowrap;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.post-tags a {
  color: #67a2c9;
  text-decoration: none;
  font-size: 0.85rem;
}

.post-tags a:hover {
  text-decoration: underline;
}

.post-summary {
  margin: 1rem 0;
  line-height: 1.6;
}

.read-more {
  color: #67a2c9;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.view-all {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  background: #67a2c9;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn:hover {
  background: #5589b0;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .home-intro {
    font-size: 0.95rem;
    padding: 0 1rem;
  }

  .home-posts {
    padding: 0 1rem;
  }

  .posts-list {
    gap: 1.5rem;
  }

  .post-card {
    padding: 1rem;
  }

  .post-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}
