/* =========================================================
BLOG HERO
========================================================= */

.blog-hero{
  position: relative;

  min-height: 68vh;

  display: flex;
  align-items: center;

  overflow: hidden;

  padding: 140px 0 90px;

  background:
    linear-gradient(
      135deg,
      rgba(15,22,18,0.78),
      rgba(15,22,18,0.42)
    ),
    url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?q=80&w=1800&auto=format&fit=crop');

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.blog-hero-overlay{
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgb(255 255 255), #00000069 35%);
}

.blog-hero-content{
  position: relative;
  z-index: 5;

  max-width: 760px;
}

.blog-kicker{
  display: inline-block;

  margin-bottom: 18px;

  padding: 8px 16px;

  border-radius: 100px;

  background: rgba(255,255,255,0.10);

  backdrop-filter: blur(10px);

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 1.6px;

  text-transform: uppercase;

  color: #ffffff;
}

.blog-hero-content h1{
  margin: 0 0 18px;
  font-size: clamp(42px,5vw,52px);
  line-height: 1;
  font-weight: 700;
  /* letter-spacing: -2px; */
  color: #ffffff;
}

.blog-hero-content h1 span{
  display: block;

  color: #d7b37a;
}

.blog-hero-content p{
  max-width: 620px;
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.84);
}

/* =========================================================
BLOG LIST
========================================================= */

.blog-list-section{
  position: relative;

  padding: 90px 0;

  background: #f8f5f0;
}

.blog-grid{
  display: grid;

  grid-template-columns: repeat(3,1fr);

  gap: 28px;
}

/* =========================================================
BLOG CARD
========================================================= */

.blog-card{
  overflow: hidden;

  border-radius: 28px;

  background: #ffffff;

  box-shadow:
    0 10px 35px rgba(0,0,0,0.06);

  transition: 0.35s ease;
}

.blog-card:hover{
  transform: translateY(-8px);
}

.blog-image{
  position: relative;

  overflow: hidden;

  height: 240px;
}

.blog-image img{
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.5s ease;
}

.blog-card:hover .blog-image img{
  transform: scale(1.06);
}

.blog-content{
  padding: 28px;
}

.blog-category{
  display: inline-block;

  margin-bottom: 14px;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  color: #b9915f;
}

.blog-content h3{
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 800;
  color: #18392f;
}

.blog-content p{
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.8;
  color: rgb(43 43 43 / 94%);
}

.blog-btn{
  display: inline-flex;
  align-items: center;

  gap: 10px;

  text-decoration: none;

  font-size: 14px;
  font-weight: 600;

  color: #18392f;

  transition: 0.3s ease;
}

.blog-btn:hover{
  gap: 14px;

  color: #b9915f;
}

/* =========================================================
TABLET
========================================================= */

@media(max-width:991px){

  .blog-grid{
    grid-template-columns: repeat(2,1fr);
  }

  .blog-hero{
    min-height: 60vh;
  }

  .blog-hero-content h1{
    font-size: 54px;
  }

}

/* =========================================================
MOBILE
========================================================= */

@media(max-width:767px){

  .blog-hero{
    min-height: 56vh;

    padding: 120px 0 70px;
  }

  .blog-kicker{
    font-size: 10px;

    padding: 7px 14px;
  }

  .blog-hero-content h1{
    font-size: 38px;

    letter-spacing: -1px;
  }

  .blog-hero-content p{
    font-size: 14px;

    line-height: 1.7;
  }

  .blog-list-section{
    padding: 70px 0;
  }

  .blog-grid{
    grid-template-columns: 1fr;

    gap: 22px;
  }

  .blog-image{
    height: 220px;
  }

  .blog-content{
    padding: 22px;
  }

  .blog-content h3{
    font-size: 21px;
  }

}

/* =========================================================
BLOG DETAILS PAGE CSS
ADD THIS IN blog.css
========================================================= */

/* =========================
BLOG DETAILS HERO
========================= */

.blog-details-hero{
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: 140px 0 80px;
}

.blog-details-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(0,0,0,0.75),
      rgba(0,0,0,0.45)
    );
}

.blog-details-content{
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.blog-details-tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 40px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.blog-details-content h1{
  color: #fff;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 24px;
}

.blog-details-meta{
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.blog-details-meta span{
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.88);
  font-size: 15px;
}

.blog-details-meta i{
  font-size: 16px;
}

/* =========================
BLOG BODY
========================= */

.blog-body-section{
  padding: 90px 0;
  background: #ffffff;
}

.blog-body-wrapper{
  max-width: 900px;
  margin: auto;
}

.blog-article{
  background: #fff;
}

.blog-article p{
  font-size: 17px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 22px;
}

.blog-article h2{
  font-size: 25px;
  line-height: 1.3;
  color: #111;
  margin-top: 55px;
  margin-bottom: 22px;
  font-weight: 700;
}

.blog-article h3{
  font-size: 24px;
  line-height: 1.4;
  color: #1c1c1c;
  margin-top: 35px;
  margin-bottom: 16px;
  font-weight: 600;
}

.blog-article ul{
  margin: 25px 0 30px;
  padding-left: 0;
}

.blog-article ul li{
  list-style: none;
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.blog-article ul li::before{
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c6a56a;
  position: absolute;
  left: 0;
  top: 11px;
}

/* =========================
INNER IMAGE
========================= */

.blog-inner-image{
  margin: 45px 0;
  overflow: hidden;
  border-radius: 24px;
}

.blog-inner-image img{
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: 0.5s ease;
}

.blog-inner-image:hover img{
  transform: scale(1.04);
}

/* =========================
FAQ BOX
========================= */

.blog-faq-box{
  margin-top: 70px;
  padding: 45px;
  border-radius: 30px;
  background: #f8f8f8;
}

.blog-faq-box h2{
  margin-top: 0;
}

.blog-faq-item{
  padding: 25px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.blog-faq-item:last-child{
  border-bottom: 0;
  padding-bottom: 0;
}

.blog-faq-item h4{
  font-size: 20px;
  line-height: 1.5;
  color: #111;
  margin-bottom: 12px;
  font-weight: 600;
}

.blog-faq-item p{
  margin-bottom: 0;
}

/* =========================
CTA BOX
========================= */

.blog-cta-box{
  margin-top: 70px;
  padding: 60px;
  border-radius: 30px;
  background: linear-gradient(135deg, #071510, #071510);
  text-align: center;
}

.blog-cta-box h3{
  color: #fff;
  font-size: 34px;
  margin-bottom: 18px;
}

.blog-cta-box p{
  color: rgba(255,255,255,0.78);
  max-width: 700px;
  margin: auto;
  margin-bottom: 32px;
  font-size: 17px;
}

.blog-cta-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  border-radius: 50px;
  background: #c6a56a;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.4s ease;
}

.blog-cta-btn:hover{
  transform: translateY(-4px);
  background: #b18d4f;
  color: #fff;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

  .blog-details-content h1{
    font-size: 38px;
  }

  .blog-article h2{
    font-size: 28px;
  }

  .blog-cta-box{
    padding: 45px 30px;
  }

  .blog-cta-box h3{
    font-size: 28px;
  }

}

@media(max-width:767px){

  .blog-details-hero{
    min-height: 65vh;
    padding: 130px 0 70px;
  }

  .blog-details-content h1{
    font-size: 17px;
    line-height: 1.4;
  }

  .blog-body-section{
    padding: 70px 0;
  }

  .blog-article p{
    font-size: 15px;
    line-height: 1.8;
  }

  .blog-article h2{
    font-size: 18px;
  }

  .blog-article h3{
    font-size: 20px;
  }

  .blog-inner-image img{
    height: 300px;
  }

  .blog-faq-box{
    padding: 30px 22px;
  }

  .blog-cta-box{
    padding: 40px 22px;
  }

  .blog-cta-box h3{
    font-size: 24px;
  }

}