/* =====================================
   BLOG PAGE – PRAYUL NATURALS
===================================== */

/* HERO */
/* =====================================
   BLOG HERO – ANIMATED (MATCH PRODUCT HERO)
===================================== */

.blog-hero {
  background: linear-gradient(180deg, #fbd86f 0% , rgb(222, 143, 25)70%);
  color: #ffffff;
  padding: 70px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative circles */
.blog-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.blog-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

/* Content wrapper */
.blog-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease;
}

/* Typography */
.blog-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.blog-hero p {
  font-size: 1.25rem;
  font-weight: 300;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-hero {
    padding: 70px 24px;
  }

  .blog-hero h1 {
    font-size: 2.3rem;
  }

  .blog-hero p {
    font-size: 1.05rem;
  }
}

/* BLOG SECTION */
.blog-section {
  padding: 90px 24px;
  background: #ffffff;
}

.blog-container {
  max-width: 1400px;
  margin: auto;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* CARD */
.blog-card {
  background: linear-gradient(135deg, #fffdf2, #ffffff);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,0.1);
  transition: 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(216, 185, 7, 0.25);
}

.blog-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* CONTENT */
.blog-card-content {
  padding: 32px 28px 36px;
}

.blog-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  background:rgb(217, 143, 32);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.blog-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #031428;
  margin-bottom: 14px;
}

.blog-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 22px;
  text-align: justify;
}

/* READ MORE */
.read-more {
  font-weight: 600;
  color: rgb(217, 143, 32);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

.read-more:hover {
  color: #e77454;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-hero h1 {
    font-size: 2.2rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card img {
    height: 200px;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
