  .blog-wrap { padding: 48px 24px; font-family: sans-serif; max-width: 1100px; margin: 0 auto; }
  .blog-header { text-align: center; margin-bottom: 36px; }
  .blog-header h2 { font-size: 28px; font-weight: 600; color: #243E70; }
  .blog-header p { font-size: 14px; color: #666; margin-top: 8px; max-width: 420px; margin-inline: auto; line-height: 1.6; }
 
  /* Featured */
  .featured { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid #e5e5e5; border-radius: 14px; overflow: hidden; background: #fff; margin-bottom: 32px; }
  .feat-img { background: linear-gradient(135deg, #e1f5ee 0%, #b5d4f4 100%); display: flex; align-items: center; justify-content: center; min-height: 280px; position: relative; }
  .feat-img .badge { position: absolute; top: 14px; left: 14px; background: #0f6e56; color: #9fe1cb; font-size: 10px; letter-spacing: 2px; padding: 5px 12px; border-radius: 5px; font-weight: 600; text-transform: uppercase; }
  .feat-body { padding: 36px 32px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
  .feat-body h3 { font-size: 24px; font-weight: 600; color: #E63946; line-height: 1.3; }
  .feat-body p { font-size: 14px; color: #555; line-height: 1.7; }
  .feat-meta { font-size: 12px; color: #888; }
  /* .feat-link { font-size: 14px; color: #e53935; text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; } */
 
  /* More to explore */
  .more-label { font-size: 16px; font-weight: 600; color: #1a1a1a; margin-bottom: 16px; }
  .cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .card { border: 1px solid #e5e5e5; border-radius: 14px; overflow: hidden; background: #fff; transition: border-color 0.2s, box-shadow 0.2s; }
  .card:hover { border-color: #e53935; box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
  .card-thumb { height: 190px; display: flex;  position: relative;   overflow: hidden; }

  .card-thumb .badge { position: absolute; top: 10px; left: 10px; font-size: 9px; letter-spacing: 1.5px; padding: 4px 10px; border-radius: 5px; font-weight: 600; text-transform: uppercase; }
  .badge-hom { background: #e1f5ee; color: #085041; }
  .badge-treat { background: #faeeda; color: #633806; }
  .card-body-s { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 6px; }
  .card-body-s h4 { font-size: 15px; font-weight: 600; color: #E63946; line-height: 1.35; }
  .card-body-s p { font-size: 13px; color: #666; line-height: 1.6; }
  /* .card-link { font-size: 13px; color: #e53935; font-weight: 600; text-decoration: none; margin-top: 4px; display: inline-flex; align-items: center; gap: 4px; } */
 
  @media (max-width: 768px) {
    .featured { grid-template-columns: 1fr; }
    .feat-img { min-height: 200px; }
    .cards-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 480px) {
    .cards-grid { grid-template-columns: 1fr; }
  }
  .adv-list {
  padding-left: 18px;
  margin-top: 8px;
}

.adv-list li {
  font-size: 13px;
  color: #555;
  margin-bottom: 6px;
  line-height: 1.6;
}

/* FIX IMAGE FULL COVER */
.feat-img {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.illus {
  width: 100%;
  height: 100%;
}

.illus img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* 🔥 makes image fill properly */
  display: block;
}
/* IMAGE INSIDE CARD */
.thumb-img {
  width: 100%;
  height: 100%;
}

.thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* 🔥 full cover */
  display: block;
}

/* REMOVE CENTER ALIGN (optional cleanup) */
.card-thumb {
  padding: 0;
}
.card-thumb img {
  transition: transform 0.4s ease;
}

.card:hover .card-thumb img {
  transform: scale(1.08);
}




/* gallery */
/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 70px 20px;
  background: #f9fbf8;
}

.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #243E70;
}

.gallery-header p {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}

/* GRID */
.gallery-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* IMAGE */
.gallery-item {
  overflow: hidden;
  border-radius: 14px;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.4s ease;
}

/* HOVER EFFECT */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
