/* ===============================
   GRID LAYOUT
================================ */

.tour-posts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 16px;
}

/* ===============================
   CARD BASE
================================ */

.tour_post {
  position: relative;
  overflow: hidden;
}

.tour_post_link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.tour_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px !important;
}

/* Overlay content */
.tour_meta {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.25),
    transparent
  );
  border-radius: 10px;
}

.tour_title {
  margin: 0;
  color: #fff;
}

.tour_excerpt {
  margin-top: 8px;
  color: rgba(255,255,255,0.9);
}

/* ===============================
   FIRST POST (DOUBLE HEIGHT)
================================ */

.tour_post.is-first {
  grid-row: span 2;
  grid-column: span 1;
}

/* Make image taller */
.tour_post.is-first .tour_image {
  height: 100%;
}

/* ===============================
   TABLET
================================ */

@media (max-width: 1024px) {
  .tour-posts {
    grid-template-columns: repeat(3, 1fr);
  }

  .tour_post.is-first {
    grid-row: span 2;
  }
}

/* ===============================
   MOBILE (2 COLUMNS, SAME HEIGHT)
================================ */

@media (max-width: 768px) {
  .tour-posts {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }

  .tour_post.is-first {
    grid-row: span 1;
  }

  .tour_post,
  .tour_post.is-first {
    aspect-ratio: 3 / 4;
  }

  .tour_image {
    height: 100%;
  }
}
.c-filter {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
.tour_title {
    font: 600 21px/1.5 'Poppins',sans-serif !important;
    color: #ffffff !important;
    margin-bottom: 0 !important;
}
.tour_excerpt {
    font: 600 14px/1.5 'Poppins',sans-serif !important;
    color: #ffffff !important;
}