/*****===== Blog Page =====*****/

.blog_page {
  margin-top: 83px;
  font-family: "Inter", sans-serif;
}

/* Blog Hero Banner */
.blog_hero {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(135deg, #0D0D0D 0%, #1a1a1a 50%, #2a2a2a 100%);
  text-align: center;
  overflow: hidden;
}

.blog_hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(201, 131, 28, 0.10), transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(200, 121, 77, 0.08), transparent 40%);
  pointer-events: none;
}

.blog_hero .hero_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 999px;
  background: rgba(201, 131, 28, 0.15);
  color: #C8794D;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(201, 131, 28, 0.25);
}

.blog_hero .hero_badge i {
  font-size: 14px;
}

.blog_hero h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.blog_hero h1 span {
  color: #C8794D;
}

.blog_hero .hero_des {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Blog Listing */
.blog_listing_sec {
  padding: 80px 0 100px;
  background: #f8f6f3;
}

.blog_listing_sec .blog_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog_listing_sec .blog_card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201, 131, 28, 0.10);
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog_listing_sec .blog_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.10);
  color: inherit;
}

.blog_listing_sec .blog_card .card_photo {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.blog_listing_sec .blog_card .card_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog_listing_sec .blog_card:hover .card_photo img {
  transform: scale(1.08);
}

.blog_listing_sec .blog_card .card_photo .post_tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #C8794D;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 1;
}

.blog_listing_sec .blog_card .card_body {
  padding: 24px;
}

.blog_listing_sec .blog_card .card_body .blog_title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0D0D0D;
  margin-bottom: 10px;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog_listing_sec .blog_card .card_body .des {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.blog_listing_sec .blog_card .card_body .read_more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #C8794D;
  transition: gap 0.3s ease;
}

.blog_listing_sec .blog_card .card_body .read_more i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.blog_listing_sec .blog_card:hover .card_body .read_more {
  gap: 10px;
}

.blog_listing_sec .blog_card:hover .card_body .read_more i {
  transform: translateX(4px);
}

/* Blog Detail Page */
.blog_detail_page {
  margin-top: 83px;
}

.blog_detail_hero {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0D0D0D 0%, #1a1a1a 100%);
  text-align: center;
  overflow: hidden;
}

.blog_detail_hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(201, 131, 28, 0.10), transparent 50%);
  pointer-events: none;
}

.blog_detail_hero .post_category {
  display: inline-block;
  background: rgba(201, 131, 28, 0.15);
  color: #C8794D;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(201, 131, 28, 0.25);
}

.blog_detail_hero h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.2;
}

.blog_detail_hero .post_meta {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.blog_detail_hero .post_meta span {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.blog_detail_hero .post_meta span i {
  color: #C8794D;
  margin-right: 6px;
}

/* Blog Content */
.blog_detail_content {
  padding: 60px 0 80px;
  background: #f8f6f3;
}

.blog_detail_content .blog_container {
  max-width: 840px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  border: 1px solid rgba(201, 131, 28, 0.08);
}

.blog_detail_content .featured_image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 40px;
  overflow: hidden;
}

.blog_detail_content .featured_image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog_detail_content .blog_intro {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 30px;
  font-weight: 500;
}

.blog_detail_content h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0D0D0D;
  margin: 40px 0 16px;
  line-height: 1.3;
}

.blog_detail_content h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #0D0D0D;
  margin: 32px 0 12px;
  line-height: 1.3;
}

.blog_detail_content p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 18px;
}

.blog_detail_content ul, 
.blog_detail_content ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.blog_detail_content ul li,
.blog_detail_content ol li {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 8px;
}

.blog_detail_content ul li::marker {
  color: #C8794D;
}

.blog_detail_content .highlight_box {
  background: #f8f6f3;
  border-left: 4px solid #C8794D;
  padding: 24px 28px;
  border-radius: 0 12px 12px 0;
  margin: 30px 0;
}

.blog_detail_content .highlight_box p {
  margin-bottom: 0;
  font-style: italic;
  color: #333;
}

.blog_detail_content .blog_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.blog_detail_content .blog_tags .tag {
  background: #f0ebe4;
  color: #555;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}

/* Related Posts */
.related_posts_sec {
  padding: 0 0 80px;
  background: #f8f6f3;
}

.related_posts_sec .container {
  max-width: 1100px;
}

.related_posts_sec .related_title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0D0D0D;
  margin-bottom: 30px;
  text-align: center;
}

.related_posts_sec .related_title span {
  color: #C8794D;
}

.related_posts_sec .related_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related_posts_sec .related_card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(201, 131, 28, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  color: inherit;
  text-decoration: none;
}

.related_posts_sec .related_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.08);
  color: inherit;
}

.related_posts_sec .related_card .rel_photo {
  height: 180px;
  overflow: hidden;
}

.related_posts_sec .related_card .rel_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.related_posts_sec .related_card:hover .rel_photo img {
  transform: scale(1.06);
}

.related_posts_sec .related_card .rel_body {
  padding: 18px;
}

.related_posts_sec .related_card .rel_body .rel_tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #C8794D;
  margin-bottom: 6px;
}

.related_posts_sec .related_card .rel_body h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0D0D0D;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Responsive */
@media (max-width: 991px) {
  .blog_listing_sec .blog_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog_hero h1 { font-size: 36px; }
  .blog_detail_hero h1 { font-size: 32px; }
  .blog_detail_content .blog_container { padding: 30px; }
  .related_posts_sec .related_grid { grid-template-columns: repeat(2, 1fr); }
  .blog_page { margin-top: 68px; }
  .blog_detail_page { margin-top: 68px; }
}

@media (max-width: 767px) {
  .blog_listing_sec .blog_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog_listing_sec { padding: 50px 0 60px; }
  .blog_hero { padding: 60px 0; }
  .blog_hero h1 { font-size: 28px; }
  .blog_hero .hero_des { font-size: 16px; }
  .blog_detail_hero { padding: 60px 0; }
  .blog_detail_hero h1 { font-size: 24px; }
  .blog_detail_content .blog_container { padding: 20px; }
  .blog_detail_content h2 { font-size: 22px; }
  .blog_detail_content h3 { font-size: 18px; }
  .related_posts_sec .related_grid { grid-template-columns: 1fr; }
  .blog_page { margin-top: 66px; }
  .blog_detail_page { margin-top: 66px; }
}
