/* =========================
   BLOG – LIST
========================= */

.blog-index {
  background: #fff;
  padding: 60px 20px;
}

.blog-container {
  max-width: 1100px;
  margin: 0 auto;
}

.blog-header {
  margin-bottom: 40px;
}

.blog-title {
  font-size: 32px;
  margin-bottom: 8px;
}

.blog-description {
  color: #555;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.blog-card {
  background: #fafafa;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  transition: transform .2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card-content {
  padding: 18px;
}

.blog-card-title {
  font-size: 18px;
  margin-bottom: 6px;
}

.blog-card-title a {
  color: #111;
  text-decoration: none;
}

.blog-meta {
  font-size: 12px;
  color: #777;
  margin-bottom: 10px;
}

.blog-excerpt {
  font-size: 14px;
  color: #444;
}

.blog-read-more {
  display: inline-block;
  margin-top: 10px;
  color: #ffa559;
  font-weight: 600;
  text-decoration: none;
}

/* =========================
   SINGLE POST
========================= */

.single-post {
  background: #fff;
  padding: 60px 20px;
}

.single-container {
  max-width: 800px;
  margin: 0 auto;
}

.single-title {
  font-size: 34px;
  margin-bottom: 10px;
}

.single-meta {
  font-size: 13px;
  color: #777;
  margin-bottom: 20px;
}

.single-thumb img {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 30px;
}

.single-content {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
}

.single-content p {
  margin-bottom: 18px;
}

/* Mobile */
@media (max-width: 768px) {
  .blog-index,
  .single-post {
    padding: 40px 16px;
  }

  .blog-title,
  .single-title {
    font-size: 24px;
  }
}
/* =========================
   SHARE
========================= */

.post-share {
  margin: 40px 0;
  display: flex;
  gap: 12px;
  align-items: center;
}

.post-share span {
  font-weight: 600;
}

.post-share a {
  padding: 6px 14px;
  border-radius: 999px;
  background: #ffa559;
  color: #000;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

/* =========================
   RELATED POSTS
========================= */

.related-posts {
  margin-top: 60px;
}

.related-posts h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.related-card {
  background: #fafafa;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.related-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.related-card h4 {
  font-size: 15px;
  padding: 12px;
  color: #111;
}
