/* =========================================
   BLOG PAGE
========================================= */

.blog-page {
  padding: 80px 20px;
  background: #fff7fa;
}

.blog-hero {
  text-align: center;
  margin-bottom: 60px;
}

.blog-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.blog-hero p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
  gap: 40px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  max-width: 320px;
  margin: 0 auto;

  max-width: 320px;
  margin: 0 auto;
}

.blog-card img {
  display: block;
  width: 100%;
  max-height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 30px;
}

.blog-category {
  display: inline-block;
  margin-bottom: 15px;
  padding: 6px 14px;
  background: #ffe3ec;
  color: #ff5c8a;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
}

.blog-content h2 {
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.blog-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

.read-more-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #ff5c8a;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.read-more-btn:hover {
  background: #ff3f76;
}

@media (max-width: 768px) {
  .blog-hero h1 {
    font-size: 2.2rem;
  }
}

/* =========================================
   FEATURED BLOG SECTION
========================================= */

.featured-post {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;

  max-width: 1200px;
  margin: 0 auto 80px;

  padding: 50px;

  background: #fff;
  border-radius: 30px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.featured-content {
  flex: 1;
}

.featured-tag {
  display: inline-block;
  margin-bottom: 20px;

  padding: 8px 18px;

  background: #ffe3ec;
  color: #ff5c8a;

  border-radius: 30px;

  font-size: 0.9rem;
  font-weight: 600;
}

.featured-post h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.featured-post p {
  color: #333;
  line-height: 1.9;
  margin-bottom: 30px;
}

.featured-btn {
  display: inline-block;

  padding: 14px 28px;

  background: #ff5c8a;
  color: #fff;

  border-radius: 30px;

  text-decoration: none;

  transition: 0.3s ease;
}

.featured-btn:hover {
  background: #ff3f76;
}

.featured-post img {
  width: 100%;
  max-width: 300px;
}

.featured-post img {
  width: 220px !important;
  height: 220px !important;

  object-fit: cover;

  border-radius: 20px;

  display: block;

  flex-shrink: 0;
}

.featured-post {
  display: flex;
  align-items: center;
  gap: 30px;

  max-width: 800px;

  margin: 0 auto 50px;

  padding: 30px;

  background: #fff;

  border-radius: 20px;

  overflow: hidden;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* FEATURED SLIDER */

.featured-slider {
  max-width: 950px;
  margin: 0 auto 20px;
}

.featured-slide {
  display: flex;
  align-items: center;
  gap: 35px;

  padding: 35px;

  background: linear-gradient(180deg, #fff7fa, #fffafb);

  border-radius: 30px;

  overflow: hidden;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);

  transition: 0.4s ease;
}

.featured-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(255, 92, 138, 0.18);
}

.featured-slide img {
  width: 140px !important;
  height: 140px !important;

  min-width: 140px;

  object-fit: cover;

  border-radius: 18px;
  overflow: hidden;

  display: block;
}

.featured-content h2 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.featured-content p {
  line-height: 1.9;
  color: #666;
  margin-bottom: 25px;
}

/* =========================================
   LATEST POSTS
========================================= */

.latest-posts {
  max-width: 1200px;
  margin: 0 auto 80px;
}

.latest-heading {
  text-align: center;
  margin-bottom: 50px;
}

.latest-heading p {
  color: #ff5c8a;
  font-weight: 600;
  margin-bottom: 10px;
}

.latest-heading h2 {
  font-size: 2.5rem;
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.latest-card {
  background: #fff;

  border-radius: 22px;

  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition: 0.3s ease;
}

.latest-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 12px 35px rgba(255, 92, 138, 0.12);
}

.latest-card img {
  width: 100%;
  height: 130px;

  object-fit: cover;
}

.latest-content {
  padding: 25px;
}

.latest-content span {
  display: inline-block;

  margin-bottom: 12px;

  color: #ff5c8a;

  font-size: 0.85rem;
  font-weight: 600;
}

.latest-content h3 {
  margin-bottom: 18px;

  font-size: 1.2rem;

  line-height: 1.5;
}

.latest-content a {
  color: #ff5c8a;

  text-decoration: none;

  font-weight: 600;
}

.blog-page h1,
.blog-page h2,
.blog-page h3 {
  letter-spacing: -1px;
}

/* =========================================
   BLOG FILTERS
========================================= */

.blog-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 15px;

  margin-bottom: 50px;
}

.filter-btn {
  border: none;

  padding: 12px 24px;

  background: #fff;

  color: #666;

  border-radius: 30px;

  cursor: pointer;

  font-weight: 600;

  transition: 0.3s ease;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover {
  background: #ffe3ec;

  color: #ff5c8a;

  transform: translateY(-2px);
}

.filter-btn.active {
  background: #ff5c8a;

  color: #fff;

  box-shadow: 0 10px 25px rgba(255, 92, 138, 0.25);
}

/* =========================================
   ARTICLE HERO BANNER
========================================= */

.article-hero {
  position: relative;

  height: 360px;

  margin: 10px auto 70px;

  padding-top: 40px;

  max-width: 1200px;

  border-radius: 30px;

  overflow: hidden;

  background:
    linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
    url("../img/strawberry_lip_balm.png");

  background-size: cover;

  background-repeat: no-repeat;

  background-position: center;

  background-color: #f8f3f5;

  display: flex;

  align-items: center;
}

/* =========================================
   STRAWBERRY ARTICLE HERO
========================================= */

.strawberry-article-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
    url("../img/strawberry_lip_balm.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =========================================
   GRAPEFRUIT ARTICLE HERO
========================================= */

.grapefruit-article-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
    url("../img/grapefruit-fruit-lip-balm.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =========================================
   PEACH ARTICLE HERO
========================================= */

.peach-article-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
    url("../img/peach-fruit-lip-balm.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =========================================
   Vanilla ARTICLE HERO
========================================= */

.vanilla-article-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
    url("../img/vanilla-fruit-lip-balm.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =========================================
   Green Apple ARTICLE HERO
========================================= */

.green-apple-article-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
    url("../img/green-apple-fruit-lip-balm.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.article-overlay {
  max-width: 650px;

  padding: 50px;

  color: #fff;

  z-index: 2;
}

.article-tag {
  display: inline-block;

  margin-bottom: 20px;

  padding: 8px 18px;

  background: rgba(255, 255, 255, 0.2);

  backdrop-filter: blur(8px);

  border-radius: 30px;

  font-size: 0.9rem;
  font-weight: 600;
}

.article-hero h1 {
  font-size: 3.5rem;

  line-height: 1.1;

  margin-bottom: 20px;

  color: #000;

  letter-spacing: -2px;
}

.article-hero p {
  font-size: 1.1rem;

  line-height: 1.9;

  color: #000000;

  max-width: 560px;
}

@media (max-width: 768px) {
  .article-hero {
    height: 340px;
  }

  .article-overlay {
    padding: 35px;
  }

  .article-hero h1 {
    font-size: 2.4rem;
  }
}

/* =========================================
   IMAGE ZOOM HOVER
========================================= */

.latest-card img,
.featured-slide img,
.blog-card img {
  transition: transform 0.4s ease;
}

.latest-card:hover img,
.featured-slide:hover img,
.blog-card:hover img {
  transform: scale(1.05);
}

/* =========================================
   ARTICLE CONTENT
========================================= */

.article-content {
  max-width: 900px;

  margin: 0 auto;

  padding: 0 25px 80px;
}

.article-content h1 {
  font-size: 3rem;

  margin-bottom: 30px;

  line-height: 1.2;
}

.article-content h2 {
  font-size: 2rem;

  margin-top: 60px;
  margin-bottom: 20px;

  line-height: 1.3;
}

.article-content p {
  font-size: 1.08rem;

  line-height: 2;

  color: #000000;

  margin-bottom: 25px;
}

.article-content ul {
  padding-left: 25px;

  margin-bottom: 30px;
}

.article-content li {
  margin-bottom: 14px;

  line-height: 1.8;

  color: #555;
}

/* Existing article hero styles */

.article-hero {
  position: relative;
  height: 360px;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 60px;
}

/* Add these below */

.article-hero-content {
  position: absolute;
  left: 40px;
  bottom: 40px;
  color: #fff;
  max-width: 700px;
  z-index: 2;
}

.article-hero-content h1 {
  color: #fff;
  margin-bottom: 10px;
}

.article-hero-content p {
  color: #fff;
  margin: 0;
}

.article-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.article-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 10px;
  background: #fff;
  border-radius: 20px;
}

.article-container h2 {
  margin-top: 60px;
  margin-bottom: 20px;
}

.article-container h3 {
  margin-top: 35px;
  margin-bottom: 15px;
}

.article-container p {
  margin-bottom: 24px;
  line-height: 1.9;
}

/* main {
  padding-top: 20px;
} */
