
/* =========================
   BLOG LISTING PAGE
========================= */

.news-section-two {
	padding: 80px 0;
	background: #f8f9fa;
  }
  
  .news-block-two {
	margin-bottom: 30px;
  }
  
  .news-block-two .inner-box {
	background: #ffffff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transition: all 0.35s ease;
  }
  
  .news-block-two .inner-box:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
  }
  
  .news-block-two .image {
	position: relative;
	overflow: hidden;
  }
  
  .news-block-two .image img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	transition: transform 0.5s ease;
  }
  
  .news-block-two .inner-box:hover .image img {
	transform: scale(1.08);
  }
  
  .news-block-two .lower-content {
	padding: 25px 22px 30px;
  }
  
  .news-block-two h4 {
	font-size: 20px;
	line-height: 1.4;
	font-weight: 700;
	margin-bottom: 12px;
  }
  
  .news-block-two h4 a {
	color: #1d1d1d;
	text-decoration: none;
	transition: color 0.3s ease;
  }
  
  .news-block-two h4 a:hover {
	color: #e63946;
  }
  
  .news-block-two .text {
	font-size: 15px;
	line-height: 1.7;
	color: #555;
	margin-bottom: 18px;
  }
  
  .news-block-two .read-more {
	font-size: 15px;
	font-weight: 600;
	color: #e63946;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: all 0.3s ease;
  }
  
  .news-block-two .read-more i {
	transition: transform 0.3s ease;
  }
  
  .news-block-two .read-more:hover {
	color: #000;
  }
  
  .news-block-two .read-more:hover i {
	transform: translateX(6px);
  }
  
  /* =========================
	 BLOG DETAIL PAGE
  ========================= */
  
  .blog-detail-page {
	display: none; /* JS click cheythal show cheyyan */
	padding: 90px 0;
	background: #ffffff;
  }
  
  .blog-single .inner-box {
	max-width: 900px;
	margin: auto;
  }
  
  .blog-single .image img {
	width: 100%;
	border-radius: 16px;
	margin-bottom: 35px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }
  
  .blog-single h3 {
	font-size: 34px;
	font-weight: 800;
	margin-bottom: 18px;
	color: #1c1c1c;
  }
  
  .blog-single .post-meta {
	font-size: 14px;
	color: #888;
	margin-bottom: 15px;
  }
  
  #detail-content {
	font-size: 16px;
	line-height: 1.9;
	color: #444;
  }
  
  #detail-content p {
	margin-bottom: 20px;
  }
  
  /* =========================
	 BACK TO BLOG
  ========================= */
  
  .back-to-blog {
	margin-bottom: 30px;
  }
  
  .back-to-blog a {
	font-size: 15px;
	font-weight: 600;
	color: #e63946;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
  }
  
  .back-to-blog a:hover {
	color: #000;
  }
  
  .back-to-blog i {
	font-size: 14px;
  }
  
  /* =========================
	 RESPONSIVE
  ========================= */
  
  @media (max-width: 991px) {
	.news-block-two .image img {
	  height: 230px;
	}
  
	.blog-single h3 {
	  font-size: 28px;
	}
  }
  
  @media (max-width: 576px) {
	.news-section-two {
	  padding: 60px 0;
	}
  
	.news-block-two h4 {
	  font-size: 18px;
	}
  
	.blog-single h3 {
	  font-size: 24px;
	}
  }
/* Hide blog listing */
.blog-listing-page.hidden {
	display: none;
  }
  
  /* Hide blog detail by default */
  .blog-detail-page {
	display: none;
  }
  
  /* Show blog detail when active */
  .blog-detail-page.active {
	display: block;
  }
	


   /* Blog Listing Styles */
   .news-section-two {
    padding: 80px 0;
    background: #f8f9fa;
  }
  
  .news-block-two {
    margin-bottom: 30px;
  }
  
  .news-block-two .inner-box {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
  }
  
  .news-block-two .inner-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
  }
  
  .news-block-two .image {
    position: relative;
    overflow: hidden;
  }
  
  .news-block-two .image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .news-block-two .inner-box:hover .image img {
    transform: scale(1.08);
  }
  
  .news-block-two .lower-content {
    padding: 25px 22px 30px;
  }
  
  .news-block-two h4 {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 12px;
  }
  
  .news-block-two h4 a {
    color: #1d1d1d;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .news-block-two h4 a:hover {
    color: #e63946;
  }
  
  .news-block-two .text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
  }
  
  .news-block-two .read-more {
    font-size: 15px;
    font-weight: 600;
    color: #e63946;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
  }
  
  .news-block-two .read-more i {
    transition: transform 0.3s ease;
  }
  
  .news-block-two .read-more:hover {
    color: #000;
  }
  
  .news-block-two .read-more:hover i {
    transform: translateX(6px);
  }
  
  @media (max-width: 991px) {
    .news-block-two .image img {
      height: 230px;
    }
  }
  
  @media (max-width: 576px) {
    .news-section-two {
      padding: 60px 0;
    }
    
    .news-block-two h4 {
      font-size: 18px;
    }
  }