   /* ---------- HERO: full width image with overlay ---------- */
    .hero-wrapper {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding-left: 30px;
      padding-right: 30px;


    }

    .hero-wrapper img.hero-img {
      display: block;
      width: 100%;
      height: 50%;
      /* adjust height as needed */
      object-fit: cover;
      /* keeps cover behavior */
    }

    /* overlay */
    .hero-overlay {
      position: absolute;
      inset: 0;
      /*  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.25));  */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 24px;
      color: #fff;
    }

    .hero-overlay .container {
      max-width: 980px;
    }

    /* hero text */
    .hero-title {
      font-size: clamp(22px, 4vw, 48px);
      font-weight: 700;
      margin-bottom: .5rem;
    }

    .hero-desc {
      font-size: clamp(14px, 2.4vw, 20px);
      color: #f0f0f0;
    }

    /* ---------- POSTS: grid that changes to horizontal rows on small screens ---------- */
    /* Desktop/tablet: grid layout using Bootstrap columns (3/2/1) - handled by classes */
    /* Mobile: force each .post-card to show as horizontal row (image left, content right) */
    .post-card {
      border-radius: .5rem;
      overflow: hidden;
      border: 1px solid #eef0f3;
      background: #fff;
      display: block;
      height: 100%;
    }

    /* helper for image used inside horizontal mobile layout */
    .post-thumb {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    /* MOBILE: <=576px: make each post card a single row with image left and text right */
    @media (max-width: 576px) {

      .hero-wrapper img.hero-img {
        display: block;
        width: 100%;
        height: 100%;
        /* adjust height as needed */
        object-fit: cover;
        /* keeps cover behavior */
      }

      .hero-wrapper {
        position: relative;
        width: 100%;
        overflow: hidden;
        padding-left: 10px;
        padding-right: 10px;
      }

      .posts-grid .col-12 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
      }

      .hero-title {
        font-size: clamp(22px, 4vw, 48px);
        font-weight: 700;
        margin-bottom: .5rem;
        padding-top: 10px;
      }

      .post-card {
        display: flex;
        flex-direction: row;
        gap: 12px;
        align-items: stretch;
        padding: 10px;
      }

      .post-card .thumb-wrap {
        flex: 0 0 40%;
        /* image takes 40% width on mobile row */
        max-width: 100%;
        overflow: hidden;
        border-radius: .375rem;
      }

      .post-card .thumb-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        min-height: 84px;
      }

      .post-card .card-body {
        flex: 1 1 60%;
        padding: 6px 8px;
      }

      .post-card .card-title {
        font-size: 16px;
        margin-bottom: 6px;
      }

      .post-card .card-text {
        font-size: 13px;
        color: #555;
        margin-bottom: 8px;
      }

      .post-card .read-btn {
        padding: 6px 10px;
        font-size: 13px;
      }
    }

    /* TABLET+DESKTOP: revert to standard card look */
    @media (min-width: 577px) {
      .post-card .thumb-wrap {
        display: block;
      }

      .post-card .thumb-wrap img {
        height: 220px;
        width: 100%;
        object-fit: cover;
      }

      .post-card .card-body {
        padding: 16px;
      }
    }

    /* small visual polish */
    .post-card:hover {
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
      transform: translateY(-4px);
      transition: .25s ease;
    }

    .read-btn {
      text-decoration: none;
    }
  

    
/* Wrapper spacing */
.posts-wrapper {
  padding: 0 40px;
  padding-top: 30px;
}

/* More gap between cards */
.post-col {
  margin-bottom: 30px;
  padding: 0 10px; /* small left-right gap */
}

/* Smaller, cleaner card */
.post-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  padding: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease-in-out;
}

.post-card:hover {
  transform: translateY(-4px);
}

/* Rounded image corners */
.thumb-wrap img {
  width: 100%;
  border-radius: 0px;
  object-fit: cover;
}

/* Title font styling */
.post-card .card-title {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 700;
  font-style: italic;
  color: #3a2a2a;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 8px;
}

/* Description font styling */
.post-card .card-text {
  font-family: Calibri, sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

/* Thumb wrap positioning for icons */
.thumb-wrap {
  position: relative;
}

/* Wishlist (heart icon) */
.wishlist-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  padding: 8px;
  cursor: pointer;
}

/* Likes + share icons */
.right-icons {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 10px;
}

.right-icons span,
.right-icons button {
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  padding: 8px;
  cursor: pointer;
  font-size: 14px;
}
    .no-link-style {
      text-decoration: none;
      /* remove underline */
      color: inherit;
      /* inherit text color from parent */
      cursor: pointer;
      /* optional: show pointer on hover */
    }

    .no-link-style:hover {
      color: inherit;
      /* prevent hover color change */
    }
  
    .post-card {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: .3s;
    }

    .post-card:hover {
      transform: translateY(-5px);
    }

    .thumb-wrap {
      position: relative;
    }

    .thumb-wrap img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    /* ICONS POSITION */
    .wishlist-btn,
    .share-btn {
      background: rgba(255, 255, 255, 0.9);
      border: none;
      padding: 6px 9px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 15px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    /* Wishlist (top-left) */
    .wishlist-btn {
      position: absolute;
      top: 10px;
      left: 10px;
    }

    /* Right Icons Group */
    .right-icons {
      position: absolute;
      top: 10px;
      right: 10px;
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .likes {
      background: rgba(255, 255, 255, 0.9);
      padding: 4px 8px;
      border-radius: 20px;
      font-size: 14px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    /* MOBILE HORIZONTAL CARD */
    @media (max-width: 767px) {
      .post-card {
        display: grid;
        gap: 12px;
        padding: 10px;
      }



      .thumb-wrap img {
        height: 100%;
        border-radius: 8px;
      }



      .card-title {
        font-size: 17px;
        font-weight: bold;
      }

      .card-text {
        font-size: 14px;
      }
    }

    /* Make Like & Heart icons blue */
    .likes i,
    .wishlist-btn i {
      color: #007bff !important;
      /* Bootstrap primary blue */
    }

    /* If you want the heart filled blue */
    .wishlist-btn i.fas.fa-heart {
      color: #ff0000ff !important;
    }

    /* Optional: blue outline for icons background */
    .wishlist-btn,
    .likes {
      border: 1px solid rgba(0, 123, 255, 0.3);
    }

    .share-btn i {
      color: #007bff !important;
    }
  
    
        .category-title {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 15px;
        /*    border-left: 5px solid #000;*/
            padding-left: 10px;
        }
        .post-card img {
            width: 100%;
        }
        .load-more-btn {
            margin-top: 15px;
        } 


       







 /* CATEGORY TITLE */
.category-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Static RED double line (full width, no animation) */
.category-wrapper::after {
    content: "";
    flex-grow: 1;
    height: 8px;
    background:
        linear-gradient(#ff2626, #ff2626) 0 0 / 100% 2px no-repeat,
        linear-gradient(#ff2626, #ff2626) 0 6px / 100% 2px no-repeat;
}

/* Title text */
.category-title {
    font-size: 22px;
    font-weight: 600;
    color: #ff2626;
    position: relative;
    cursor: pointer;
}

/* Animated underline only under the text */
.category-title::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #ff2626;
    transition: width 0.3s ease;
}

/* Hover effect */
.category-title:hover::after {
    width: 100%;
    font-weight: bold;
}
