/* page-tour.css — styles for page-tour.php */
.page-tour-template {
  padding: 40px 0;
}

/* Header */
.page-tour-header .page-title {
  font-size: 34px;
  margin: 0 0 18px;
  color: #222;
  text-transform: none;
}
.page-tour-template .page-content {
  margin-bottom: 28px;
  color: #555;
  line-height: 1.6;
}

/* Term section */
.wte-term-section {
  margin: 48px 0;
}
.wte-term-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.wte-term-title {
  font-size: 26px;
  margin: 0;
}
.wte-term-title a {
  color: #d24b1f;
  text-decoration: none;
}
.wte-term-more {
  color: #d24b1f;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

/* Grid */
.wte-term-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* Responsive */
@media (max-width: 768px) {
  .wte-term-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .wte-term-grid {
    grid-template-columns: 1fr;
  }
  .page-tour-template {
    padding: 20px 12px;
  }
}
