/* ===== TOUR LIST (wrap) ===== */
.tour-list{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== CARD ===== */
.tour-card{
  display: flex;
  width: 100%;
  border: 1px solid #111;
  background: #fff;
  margin: 0 0 40px 0;
  overflow: hidden;
}

/* ===== IMAGE (left) ===== */
.tour-card__img{
  width: 40%;
  min-width: 320px;
  position: relative;
}

.tour-card__img-link{
  display: block;
  width: 100%;
  height: 100%;
}

.tour-card__img-el{
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

/* optional badge bottom-left like screenshot */
.tour-card__badge{
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: rgba(0,0,0,.25);
}

/* ===== CONTENT (center + right) ===== */
.tour-card__content{
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px 36px;
  gap: 34px;
}

/* text */
.tour-card__text{
  flex: 1 1 auto;
  min-width: 0;
}

.tour-card__title{
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 32px;
  line-height: 1.15;
  margin: 0 0 12px 0;
  color: #000;
}

.tour-card__desc{
  font-size: 20px;
  line-height: 1.5;
  color: #111;
  max-width: 520px;
}

/* divider */
.tour-card__divider{
  width: 2px;
  align-self: stretch;
  background: #111;
  opacity: .9;
}

/* CTA */
.tour-card__cta{
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tour-card__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 16px 26px;
  background: #61cfd9; /* yellow */
  color: #111;
  text-decoration: none;
  font-weight: 700;
  text-transform: lowercase;
  border-radius: 0;
  transition: transform .12s ease, filter .12s ease;
}

.tour-card__btn:hover{
  transform: translateY(-1px);
  filter: brightness(0.98);
}

/* ===== Perceived performance: image fade-in ===== */
.tcl-img{
  opacity: 0;
  transition: opacity .18s ease;
}
.tcl-img.is-loaded{
  opacity: 1;
}

/* ===== Pagination ===== */
.tcl-pagination{
  max-width: 1200px;
  margin: 0 auto 30px auto;
}
.tcl-pagination ul{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.tcl-pagination a,
.tcl-pagination span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  border: 1px solid #111;
  text-decoration: none;
  font-weight: 700;
  padding: 0 12px;
}
.tcl-pagination span.current{
  background: #111;
  color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 1024px){
  .tour-card__title{ font-size: 28px; }
  .tour-card__desc{ font-size: 18px; }
  .tour-card__content{ padding: 26px 24px; gap: 22px; }
  .tour-card__cta{ width: 200px; }
}

@media (max-width: 820px){
  .tour-card{
    flex-direction: column;
  }

  .tour-card__img,
  .tour-card__content{
    width: 100%;
  }

  .tour-card__img{
    min-width: 0;
  }

  .tour-card__img-el{
    min-height: 220px;
  }

  .tour-card__content{
    flex-direction: column;
    align-items: flex-start;
  }

  .tour-card__divider{
    width: 100%;
    height: 2px;
  }

  .tour-card__cta{
    width: 100%;
    justify-content: flex-start;
  }
}
