/* TOURS ARCHIVE / DESTINATION TAXONOMY */
/* ─── Title & Intro ─────────────────────────────────────────────────────────── */

.sf-tours-title {
  margin: 0 0 16px;
}

.sf-tours-intro {
  max-width: 760px;
  margin: 0;
}

/* ─── Browse by city ────────────────────────────────────────────────────────── */

.sf-tours-cities {
  margin: 0 0 32px;
  font-size: 0.9375rem;
}

.sf-tours-cities span {
  opacity: 0.7;
  margin-right: 6px;
}

.sf-tours-cities a,
.sf-tours-cities strong {
  margin-right: 14px;
  white-space: nowrap;
}

/* ─── Tours grid ────────────────────────────────────────────────────────────── */

.sf-tours-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 28px;
}

@media (max-width: 1023px) {
  .sf-tours-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .sf-tours-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ─── Tours card ────────────────────────────────────────────────────────────── */

.sf-tours-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.sf-tours-card:hover .sf-tours-card-title,
.sf-tours-card:focus .sf-tours-card-title {
  color: #0d4a8e;
  text-decoration: underline;
}

.sf-tours-thumb {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #e9e9e9;
}

.sf-tours-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
}

.sf-tours-card-title {
  display: block;
  margin: 16px 0 6px;
  font-size: 1.125rem;
  line-height: 1.35;
  font-weight: 700;
}

.sf-tours-meta {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.7;
}

/* ─── Pagination ────────────────────────────────────────────────────────────── */

.sf-tours-pag {
  margin-top: 48px;
}

.sf-tours-pag__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sf-tours-pag__item {
  display: block;
}

.sf-tours-pag__btn,
.sf-tours-pag__current {
  display: inline-block;
  min-width: 40px;
  padding: 8px 14px;
  border: 1px solid #d5d9de;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
}

.sf-tours-pag__btn {
  background: #fff;
  color: inherit;
  font: inherit;
  line-height: 1.4;
  cursor: pointer;
}

.sf-tours-pag__btn:hover:not(:disabled) {
  border-color: #0d4a8e;
}

.sf-tours-pag__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.sf-tours-pag__dots {
  display: inline-block;
  padding: 8px 4px;
}

.sf-tours-pag__current {
  background: #0d4a8e;
  border-color: #0d4a8e;
  color: #fff;
  font-weight: 600;
}

/* ─── Loading state (AJAX pagination) ──────────────────────────────────────── */

.sf-tours-results.is-loading .sf-tours-grid-wrap {
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.sf-tours-empty {
  opacity: 0.7;
}
