:root {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
}

section[id] {
  scroll-margin-top: 5.5rem;
}

.header-cta {
  align-items: center;
  background: #10202b;
  border: 1px solid #10202b;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(16, 32, 43, 0.18);
  color: #fff;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 800;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.7rem 1.15rem;
  text-decoration: none;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: #0587b8;
  border-color: #0587b8;
  box-shadow: 0 12px 28px rgba(5, 135, 184, 0.24);
  transform: translateY(-1px);
}

.header-cta:focus-visible {
  outline: 3px solid rgba(5, 135, 184, 0.28);
  outline-offset: 3px;
}

.nav-link {
  position: relative;
  transition: color 180ms ease;
}

.nav-link:hover {
  color: #0587b8;
}

.nav-link::after {
  background: #0587b8;
  bottom: -0.35rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.field {
  border: 1px solid #cbd5e1;
  border-radius: 0.75rem;
  color: #10202b;
  height: 3rem;
  outline: none;
  padding: 0 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  width: 100%;
}

.field:focus {
  border-color: #0587b8;
  box-shadow: 0 0 0 3px rgba(5, 135, 184, 0.16);
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-title {
  color: #10202b;
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
  margin-top: 0.5rem;
}

.section-copy {
  color: #64748b;
  line-height: 1.75;
  margin-top: 1rem;
}

.hero-metric {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 1rem;
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  width: 100%;
}

.hero-metric strong {
  font-size: 1.5rem;
  line-height: 1;
}

.hero-metric span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-primary-cta {
  align-items: center;
  background: #f2a33b;
  border: 1px solid #f2a33b;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  color: #10202b;
  display: inline-flex;
  font-size: 0.925rem;
  font-weight: 900;
  gap: 0.55rem;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.45rem;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hero-primary-cta:hover {
  background: #ffc85a;
  border-color: #ffc85a;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
  transform: translateY(-1px);
}

.hero-primary-cta:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}

.quick-filter {
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  color: #475569;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.55rem 1rem;
  transition: all 180ms ease;
}

.quick-filter:hover,
.quick-filter.is-active {
  background: #10202b;
  border-color: #10202b;
  color: #fff;
}

.plan-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.plan-card:hover {
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
  transform: translateY(-3px);
}

.card-secondary-action,
.card-buy-action {
  align-items: center;
  border-radius: 0.75rem;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 800;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  width: 100%;
}

.card-secondary-action {
  background: #fff;
  border: 1px solid #cbd5e1;
  color: #334155;
}

.card-secondary-action:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}

.card-buy-action {
  background: #0587b8;
  border: 1px solid #0587b8;
  box-shadow: 0 12px 24px rgba(5, 135, 184, 0.2);
  color: #fff;
}

.card-buy-action:hover {
  background: #036f98;
  border-color: #036f98;
  box-shadow: 0 14px 28px rgba(5, 135, 184, 0.28);
  transform: translateY(-1px);
}

.card-buy-action:focus-visible,
.card-secondary-action:focus-visible {
  outline: 3px solid rgba(5, 135, 184, 0.25);
  outline-offset: 2px;
}

.plan-image-wrap {
  aspect-ratio: 4 / 5;
  background: #e2e8f0;
  overflow: hidden;
}

.plan-image-wrap img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.tag {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
  padding: 0.45rem 0.7rem;
  white-space: nowrap;
}

.service-card,
.team-card,
.testimonial-card,
.blog-card,
.contact-card,
.legal-card,
.value-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.service-card {
  padding: 1.25rem;
}

.service-card h3,
.team-card h3,
.blog-card h3,
.legal-card h3 {
  color: #10202b;
  font-weight: 800;
  margin-top: 0.85rem;
}

.service-card p,
.team-card p,
.blog-card p,
.legal-card p {
  color: #64748b;
  font-size: 0.925rem;
  line-height: 1.65;
  margin-top: 0.5rem;
}

.service-icon {
  height: 1.75rem;
  width: 1.75rem;
}

.value-card {
  display: grid;
  gap: 0.4rem;
  padding: 1rem;
}

.value-card strong {
  color: #10202b;
  font-weight: 800;
}

.value-card span {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.55;
}

.team-card {
  padding: 1.25rem;
}

.team-card span {
  align-items: center;
  background: #10202b;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  height: 3rem;
  justify-content: center;
  width: 3rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.35rem;
}

.testimonial-card p {
  color: #334155;
  flex: 1;
  font-size: 0.98rem;
  line-height: 1.75;
}

.testimonial-card strong {
  color: #10202b;
  font-weight: 800;
  margin-top: 1.25rem;
}

.testimonial-card span {
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 0.2rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}

.blog-card span {
  color: #0587b8;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-card button {
  align-self: flex-start;
  color: #0587b8;
  font-size: 0.9rem;
  font-weight: 800;
  margin-top: 1rem;
}

.checkout-preview {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.25rem;
  padding: 1.5rem;
}

.checkout-preview span,
.checkout-preview dt {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.checkout-preview strong,
.checkout-preview dd {
  color: #fff;
  font-weight: 800;
}

.checkout-preview div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: #fff;
  padding: 1rem 1.25rem;
}

.faq-item summary {
  color: #10202b;
  cursor: pointer;
  font-weight: 800;
}

.faq-item p {
  color: #64748b;
  line-height: 1.7;
  margin-top: 0.8rem;
}

.contact-card {
  padding: 1.25rem;
}

.contact-card span {
  color: #334155;
  display: block;
  font-size: 0.875rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.map-placeholder {
  align-items: center;
  background: repeating-linear-gradient(135deg, #e2e8f0, #e2e8f0 10px, #f8fafc 10px, #f8fafc 20px);
  border: 1px dashed #cbd5e1;
  border-radius: 1rem;
  color: #475569;
  display: flex;
  font-size: 0.9rem;
  font-weight: 800;
  justify-content: center;
  min-height: 10rem;
  padding: 1rem;
  text-align: center;
}

.legal-card {
  box-shadow: none;
  padding: 1rem;
}

.rates-section {
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  margin-top: 1.5rem;
  padding: 1rem;
}

.rates-section h3 {
  color: #10202b;
  font-weight: 800;
}

.rates-section p {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.55;
  margin-top: 0.35rem;
}

.rates-badge,
.rates-review,
.rates-ok {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  padding: 0.45rem 0.65rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.rates-badge {
  background: #eff6ff;
  color: #075985;
}

.rates-review {
  background: #fef3c7;
  color: #92400e;
}

.rates-ok {
  background: #dcfce7;
  color: #166534;
}

.rates-table-wrap {
  margin-top: 1rem;
  max-height: 20rem;
  overflow: auto;
}

.rates-table {
  border-collapse: collapse;
  min-width: 42rem;
  width: 100%;
}

.rates-table th {
  background: #f8fafc;
  color: #334155;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0.75rem;
  position: sticky;
  text-align: left;
  text-transform: uppercase;
  top: 0;
}

.rates-table td {
  border-top: 1px solid #e2e8f0;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 650;
  padding: 0.75rem;
  vertical-align: top;
}

.page-shell {
  padding: 7rem 1rem 4rem;
}

.page-shell > section {
  margin: 0 auto;
  max-width: 80rem;
}

.plan-page-header {
  margin-bottom: 2rem;
  max-width: 52rem;
}

.plan-page-header h1 {
  color: #10202b;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  margin-top: 0.7rem;
}

.plan-page-header p:not(.section-eyebrow) {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-top: 1rem;
}

.back-link {
  align-items: center;
  color: #0587b8;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 900;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.plan-page-grid,
.reservation-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.plan-info-panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  padding: 1.5rem;
}

.plan-info-panel h2 {
  color: #10202b;
  font-size: 1.1rem;
  font-weight: 900;
  margin-top: 1.5rem;
}

.plan-info-panel ul {
  color: #475569;
  list-style: disc;
  margin-top: 0.75rem;
  padding-left: 1.25rem;
}

.plan-info-panel li + li {
  margin-top: 0.55rem;
}

.plan-detail-wide {
  grid-column: 1 / -1;
}

.plan-detail-content {
  display: grid;
  gap: 1rem;
}

.detail-block {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.05);
  padding: 1.25rem;
}

.detail-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.plan-route {
  color: #10202b;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.7;
  margin-top: 0.5rem;
}

.route-timeline-wrap {
  margin-top: 0.9rem;
}

.route-timeline {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 0.45rem;
}

.route-stop {
  align-items: center;
  background: #f8fafc;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  color: #10202b;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 800;
  gap: 0.5rem;
  line-height: 1.2;
  min-height: 2.35rem;
  padding: 0.35rem 0.8rem 0.35rem 0.4rem;
  position: relative;
  white-space: nowrap;
}

.route-stop:not(:last-child)::after {
  background: #bae6fd;
  content: "";
  height: 2px;
  left: calc(100% + 1px);
  position: absolute;
  top: 50%;
  width: 0.45rem;
}

.route-stop-marker {
  align-items: center;
  background: #0587b8;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.72rem;
  height: 1.55rem;
  justify-content: center;
  width: 1.55rem;
}

.route-overflow-pill {
  align-items: center;
  background: #ecfeff;
  border: 1px dashed #67e8f9;
  border-radius: 999px;
  color: #0e7490;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 900;
  min-height: 2.35rem;
  padding: 0.35rem 0.85rem;
  white-space: nowrap;
}

.route-toggle {
  color: #0587b8;
  font-size: 0.9rem;
  font-weight: 900;
  margin-top: 0.85rem;
}

.route-toggle:hover {
  color: #0e7490;
  text-decoration: underline;
}

.detail-muted {
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-top: 0.6rem;
}

.itinerary-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.itinerary-day {
  border-left: 3px solid #0587b8;
  padding-left: 0.9rem;
}

.itinerary-day strong {
  color: #10202b;
  display: block;
  font-size: 0.95rem;
}

.itinerary-day p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 0.25rem;
}

.detail-block ul {
  color: #475569;
  list-style: disc;
  margin-top: 0.85rem;
  padding-left: 1.25rem;
}

.detail-block li + li {
  margin-top: 0.55rem;
}

.plan-facts {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.plan-gallery {
  display: grid;
  gap: 1rem;
}

.plan-main-image {
  background: #e2e8f0;
  border-radius: 1.25rem;
  cursor: zoom-in;
  overflow: hidden;
  width: 100%;
}

.plan-main-image img {
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.plan-gallery.is-compact .plan-main-image img {
  aspect-ratio: 16 / 12;
}

.plan-thumbs {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(4.5rem, 1fr));
}

.plan-thumb {
  border: 2px solid transparent;
  border-radius: 0.85rem;
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease;
}

.plan-thumb:hover,
.plan-thumb.is-active {
  border-color: #0587b8;
  transform: translateY(-1px);
}

.plan-thumb img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.image-lightbox {
  align-items: center;
  background: rgba(2, 6, 23, 0.88);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 1.5rem;
  position: fixed;
  z-index: 60;
}

.image-lightbox.hidden {
  display: none;
}

.image-lightbox img {
  max-height: 92vh;
  max-width: 95vw;
  object-fit: contain;
}

.lightbox-close {
  align-items: center;
  background: #fff;
  border-radius: 999px;
  color: #10202b;
  display: inline-flex;
  height: 3rem;
  justify-content: center;
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  width: 3rem;
}

.inline-inquiry-form {
  border-top: 1px solid #e2e8f0;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

.inline-inquiry-form h2 {
  margin-top: 0;
}

.inline-inquiry-form p {
  color: #64748b;
  line-height: 1.65;
  margin: 0.5rem 0 1.25rem;
}

.inline-wizard {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.inline-wizard [data-close-modal] {
  display: none;
}

.empty-plan-state {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 2rem;
}

.empty-plan-state h1 {
  color: #10202b;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-top: 0.5rem;
}

.empty-plan-state p {
  color: #64748b;
  margin-top: 0.75rem;
}

.benefit {
  border-left: 3px solid #e2e8f0;
  padding-left: 1rem;
}

.benefit h3 {
  color: #10202b;
  font-weight: 800;
  margin-top: 0.75rem;
}

.benefit p {
  color: #64748b;
  font-size: 0.925rem;
  line-height: 1.6;
  margin-top: 0.35rem;
}

.modal-panel {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.35);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  width: 100%;
}

.modal-close {
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  display: inline-flex;
  height: 2.5rem;
  justify-content: center;
  transition: all 180ms ease;
  width: 2.5rem;
}

.modal-close:hover {
  background: #f1f5f9;
}

.wizard-step {
  display: none;
}

.wizard-step.is-active {
  display: block;
}

.wizard-form {
  padding: 1.25rem;
}

.wizard-progress {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 1.5rem;
}

.wizard-progress-item {
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.95rem;
  color: #64748b;
  display: flex;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.55rem 0.7rem;
  transition: all 180ms ease;
}

.wizard-progress-item > span {
  align-items: center;
  background: #e2e8f0;
  border-radius: 999px;
  color: #475569;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.8rem;
  font-weight: 900;
  height: 1.75rem;
  justify-content: center;
  width: 1.75rem;
}

.wizard-progress-item small {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.wizard-progress-item.is-active {
  background: #ecfeff;
  border-color: rgba(5, 135, 184, 0.35);
  color: #0f5f78;
}

.wizard-progress-item.is-active > span {
  background: #0587b8;
  color: #fff;
}

.wizard-section-title {
  color: #10202b;
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.secure-payment-alert {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 0.9rem;
  color: #92400e;
  font-size: 0.875rem;
  line-height: 1.55;
  padding: 0.9rem 1rem;
}

.business-fields {
  background: #f8fafc;
}

.step-dot {
  align-items: center;
  background: #e2e8f0;
  border-radius: 999px;
  color: #475569;
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 800;
  height: 2rem;
  justify-content: center;
  width: 2rem;
}

.step-dot.is-active {
  background: #0587b8;
  color: #fff;
}

.wizard-actions {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid #e2e8f0;
  bottom: 0;
  box-shadow: 0 -14px 28px rgba(15, 23, 42, 0.06);
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  margin: 1.5rem -1.25rem -1.25rem;
  padding: 1rem 1.25rem;
  position: sticky;
  z-index: 10;
}

.wizard-actions-group {
  display: flex;
  gap: 0.75rem;
}

.wizard-prev,
.wizard-cancel,
.wizard-next {
  align-items: center;
  border-radius: 0.9rem;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 800;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.15rem;
  transition: all 180ms ease;
}

.wizard-prev,
.wizard-cancel {
  background: #fff;
  border: 1px solid #cbd5e1;
  color: #334155;
}

.wizard-prev:hover:not(:disabled),
.wizard-cancel:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}

.wizard-prev:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.wizard-next {
  background: #0587b8;
  border: 1px solid #0587b8;
  box-shadow: 0 12px 24px rgba(5, 135, 184, 0.22);
  color: #fff;
  min-width: 9.5rem;
}

.wizard-next:hover {
  background: #04749e;
  border-color: #04749e;
}

.form-error {
  color: #dc2626;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.35rem;
}

@media (max-width: 640px) {
  .hero-section {
    min-height: 86vh;
  }

  .modal-panel {
    border-radius: 1rem;
  }

  .wizard-progress {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wizard-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .wizard-actions-group {
    flex-direction: column-reverse;
  }

  .wizard-prev,
  .wizard-cancel,
  .wizard-next {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .plan-page-grid,
  .reservation-layout {
    grid-template-columns: 1fr;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .route-timeline-wrap {
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .route-timeline {
    flex-wrap: nowrap;
    min-width: max-content;
  }

  .route-stop {
    max-width: 13rem;
  }

  .route-stop span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
