.gtb-archive-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}
.gtb-archive-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
}
.gtb-tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}
.gtb-tour-card {
  display: flex;
  flex-direction: column;
  height: 100%; /* ensures card fills the grid cell */
  justify-content: space-between;

  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}
.gtb-tour-card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.gtb-tour-card h2 {
  color: #455d58;
  margin: 0;
}
.gtb-tour-thumb {
  width: 100%;
  height: 200px; /* or any consistent height you want */
  overflow: hidden;
  border-radius: 8px;
}

.gtb-tour-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gtb-tour-name {
  font-size: 1.25rem;

  /* margin-bottom: 10px; */
}

.gtb-tour-meta-row {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.gtb-tour-price {
  color: #fc9285;
  font-size: 0.8rem;
  font-weight: 500;
}
.gtb-tour-duration {
  font-size: 0.7rem;
  font-weight: 400;
  color: #455d58;
}
