/* Blog listing + detail */
.main-bread-crumb-section {
  background: #f7f3ee;
  border-bottom: 1px solid #e5ddd4;
  padding: 12px 0;
}

.main-bread-crumb-section .breadcrumb {
  margin-bottom: 0;
  font-size: 14px;
}

.main-blog-wrapper {
  padding: 40px 0 60px;
}

.blogs-main-heading {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 28px;
}

.blog-post {
  border: 1px solid #eadfce;
  background: #fffaf3;
  padding: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.blog-thubnail img {
  border-radius: 6px;
  object-fit: cover;
}

.blog-post-content h2 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #3b2f2a;
}

.blog-post-content p {
  font-size: 14px;
  color: #5c5149;
}

.blog-excerpt {
  max-height: 144px;
  overflow: hidden;
}

.blog-excerpt p {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-sep {
  display: block;
  height: 1px;
  background: #e1d6c7;
  margin-top: auto;
}

.blog-link {
  color: #b2502d;
  font-weight: 600;
  text-decoration: none;
}

.blog-link:hover {
  color: #87391f;
  text-decoration: underline;
}

.blog-post:hover .blog-post-content h2,
.blog-post:hover .blog-link {
  color: #c62828;
}

.blog-post:hover .blog-link {
  text-decoration: none;
}

.main-large-blog-wrapper {
  padding: 30px 0 70px;
}

.blog-post-detail-div {
  background: #fffaf3;
  border: 1px solid #eadfce;
  border-radius: 10px;
  padding: 28px 32px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  max-width: 1100px;
  margin: 0 auto;
}

.blog-hero img {
  width: 100%;
  height: clamp(220px, 35vw, 360px);
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 22px;
}

.blog-detail h2 {
  font-size: 26px;
  margin-bottom: 16px;
  color: #2e2521;
}

.blog-detail p,
.blog-detail li,
.blog-detail table {
  font-size: 15px;
  color: #463d36;
}

.blog-detail {
  line-height: 1.7;
}

.blog-detail a {
  color: #b2502d;
  text-decoration: underline;
}

.blog-detail a:hover {
  color: #87391f;
}

@media (max-width: 768px) {
  .blogs-main-heading {
    font-size: 24px;
  }

  .blog-post-detail-div {
    padding: 18px;
  }
}
