body {
  background-color: #0f0f0f;
  color: #ddd;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  padding-top: 100px;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: #e2b04a;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 50px;
}

/* Blog Grid Layout */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.blog-card {
  background-color: #181818;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(226, 176, 74, 0.15);
}

.blog-image img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;
  border-bottom: 3px solid #e2b04a;
}

.blog-info {
  padding: 20px;
}

.blog-title {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.blog-date {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 15px;
}

.blog-excerpt {
  color: #ccc;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.read-more {
  display: inline-block;
  color: #e2b04a;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #f5d67a;
}

.no-posts {
  text-align: center;
  color: #999;
  font-style: italic;
  grid-column: 1 / -1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  .blog-card {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .blog-grid {
    gap: 20px;
  }
}
