/* ============================================
   BIZ RENT CAR - DESTINOS CSS
   Versao: 1.0 | Fevereiro 2026
   Estilos das paginas /destinos/ (listagem + 4 roteiros)
   ============================================ */


/* ============================================
   DEST HERO (Listing page hero)
   ============================================ */

.dest-hero {
  background-color: var(--midnight-navy);
  padding: var(--space-16) 0;
  text-align: center;
}

.dest-hero__overline {
  display: block;
  color: var(--champagne-gold);
  margin-bottom: var(--space-3);
}

.dest-hero__title {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  line-height: var(--line-h1);
  font-weight: var(--weight-h1);
  color: var(--white);
  margin-bottom: var(--space-4);
}

.dest-hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-body-lg);
  line-height: var(--line-body-lg);
  color: rgba(255, 255, 255, 0.8);
  max-width: 620px;
  margin: 0 auto;
}

.dest-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background-color: rgba(var(--champagne-gold-rgb), 0.12);
  border: 1px solid rgba(var(--champagne-gold-rgb), 0.35);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: var(--text-body-sm);
  font-weight: 600;
  color: var(--champagne-gold);
  margin-top: var(--space-6);
}

@media (max-width: 768px) {
  .dest-hero {
    padding: var(--space-12) 0;
  }
}


/* ============================================
   DEST MAP (Florida map placeholder)
   ============================================ */

.dest-map {
  background-color: var(--pearl-gray);
  padding: var(--space-16) 0;
  border-bottom: 1px solid var(--border-light);
}

.dest-map__inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-10);
  align-items: center;
}

.dest-map__text {
  flex: 1;
  min-width: 260px;
}

.dest-map__eyebrow {
  display: block;
  margin-bottom: var(--space-3);
}

.dest-map__title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  line-height: var(--line-h2);
  font-weight: var(--weight-h2);
  color: var(--midnight-navy);
  margin-bottom: var(--space-4);
}

.dest-map__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--line-body);
  color: var(--slate);
  margin-bottom: 0;
}

.dest-map__frame {
  flex: 1;
  min-width: 280px;
  min-height: 320px;
  background-color: var(--white);
  border: 2px dashed var(--border-light);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-8);
  color: var(--slate);
}

.dest-map__compass {
  width: 48px;
  height: 48px;
  color: var(--champagne-gold);
  opacity: 0.7;
}

.dest-map__frame-label {
  font-family: var(--font-heading);
  font-size: var(--text-body-sm);
  font-weight: 500;
  color: var(--slate);
  text-align: center;
}

@media (max-width: 768px) {
  .dest-map {
    padding: var(--space-12) 0;
  }

  .dest-map__inner {
    flex-direction: column;
  }

  .dest-map__frame {
    width: 100%;
    min-height: 240px;
  }
}


/* ============================================
   DEST GRID (4 destination cards)
   ============================================ */

.dest-grid {
  padding: var(--space-16) 0;
  background-color: var(--cloud-white);
}

.dest-grid__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.dest-grid__eyebrow {
  display: block;
  margin-bottom: var(--space-3);
}

.dest-grid__title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  line-height: var(--line-h2);
  font-weight: var(--weight-h2);
  color: var(--midnight-navy);
  margin-bottom: var(--space-3);
}

.dest-grid__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-body-lg);
  line-height: var(--line-body-lg);
  color: var(--slate);
  max-width: 580px;
  margin: 0 auto;
}

.dest-grid__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .dest-grid__container {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ============================================
   DEST CARD (image overlay card)
   ============================================ */

.dest-card {
  position: relative;
  display: block;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  text-decoration: none;
  background-color: var(--midnight-navy);
  aspect-ratio: 4 / 3;
}

.dest-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.dest-card__image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.dest-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
}

.dest-card:hover .dest-card__image img {
  transform: scale(1.06);
}

/* Dark gradient overlay at bottom */
.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(27, 45, 79, 0.92) 0%,
    rgba(27, 45, 79, 0.5) 45%,
    rgba(27, 45, 79, 0.1) 100%
  );
  transition: background var(--transition-base);
}

.dest-card:hover .dest-card__overlay {
  background: linear-gradient(
    to top,
    rgba(27, 45, 79, 0.96) 0%,
    rgba(27, 45, 79, 0.6) 45%,
    rgba(27, 45, 79, 0.15) 100%
  );
}

/* Top badges (distance + time) */
.dest-card__top {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  right: var(--space-4);
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.dest-card__time-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 5px 10px;
  background-color: rgba(var(--midnight-navy-rgb), 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: var(--text-caption);
  font-weight: 600;
  color: var(--white);
}

.dest-card__time-badge svg {
  width: 12px;
  height: 12px;
  color: var(--champagne-gold);
  flex-shrink: 0;
}

.dest-card__dist-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 5px 10px;
  background-color: rgba(var(--champagne-gold-rgb), 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(var(--champagne-gold-rgb), 0.4);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: var(--text-caption);
  font-weight: 600;
  color: var(--champagne-gold);
}

/* Bottom content */
.dest-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-6);
}

.dest-card__route {
  font-family: var(--font-heading);
  font-size: var(--text-body-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-1);
  display: block;
}

.dest-card__title {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  line-height: var(--line-h3);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.dest-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.dest-card__tag {
  display: inline-block;
  padding: 3px 10px;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: var(--text-caption);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.dest-card__best {
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

.dest-card__best strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.dest-card__cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-3);
}

.dest-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: var(--text-body-sm);
  font-weight: 600;
  color: var(--champagne-gold);
  transition: gap var(--transition-fast);
}

.dest-card:hover .dest-card__link {
  gap: var(--space-3);
}

.dest-card__link svg {
  width: 14px;
  height: 14px;
}


/* ============================================
   DEST VEHICLE STRIP (vehicle recommendation)
   ============================================ */

.dest-vehicles {
  background-color: var(--pearl-gray);
  padding: var(--space-16) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.dest-vehicles__header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.dest-vehicles__eyebrow {
  display: block;
  margin-bottom: var(--space-3);
}

.dest-vehicles__title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  line-height: var(--line-h2);
  font-weight: var(--weight-h2);
  color: var(--midnight-navy);
  margin-bottom: var(--space-3);
}

.dest-vehicles__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--line-body);
  color: var(--slate);
  max-width: 560px;
  margin: 0 auto;
}

.dest-vehicles__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .dest-vehicles__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dest-vehicle-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  text-decoration: none;
}

.dest-vehicle-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.dest-vehicle-card__icon {
  width: 44px;
  height: 44px;
  background-color: rgba(var(--champagne-gold-rgb), 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  flex-shrink: 0;
}

.dest-vehicle-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--champagne-gold);
}

.dest-vehicle-card__category {
  font-family: var(--font-heading);
  font-size: var(--text-overline);
  font-weight: var(--weight-overline);
  letter-spacing: var(--tracking-overline);
  text-transform: uppercase;
  color: var(--champagne-gold);
  margin-bottom: var(--space-1);
  display: block;
}

.dest-vehicle-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  line-height: var(--line-h4);
  font-weight: var(--weight-h4);
  color: var(--midnight-navy);
  margin-bottom: var(--space-2);
}

.dest-vehicle-card__desc {
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  line-height: var(--line-body-sm);
  color: var(--slate);
  flex: 1;
  margin-bottom: var(--space-4);
}

.dest-vehicle-card__price {
  font-family: var(--font-heading);
  font-size: var(--text-body-sm);
  font-weight: 600;
  color: var(--midnight-navy);
  margin-bottom: var(--space-4);
}

.dest-vehicle-card__price strong {
  color: var(--champagne-gold);
  font-size: var(--text-h4);
}

.dest-vehicle-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: var(--text-body-sm);
  font-weight: 600;
  color: var(--sky-blue);
  margin-top: auto;
  transition: color var(--transition-fast), gap var(--transition-fast);
}

.dest-vehicle-card:hover .dest-vehicle-card__link {
  color: var(--midnight-navy);
  gap: var(--space-3);
}

.dest-vehicle-card__link svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 768px) {
  .dest-vehicles {
    padding: var(--space-12) 0;
  }
}


/* ============================================
   DEST TIPS STRIP (quick trip tips)
   ============================================ */

.dest-tips {
  background-color: var(--cloud-white);
  padding: var(--space-12) 0;
}

.dest-tips__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .dest-tips__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .dest-tips__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.dest-tip {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.dest-tip__icon {
  width: 40px;
  height: 40px;
  background-color: rgba(var(--midnight-navy-rgb), 0.06);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dest-tip__icon svg {
  width: 20px;
  height: 20px;
  color: var(--midnight-navy);
}

.dest-tip__content {}

.dest-tip__title {
  font-family: var(--font-heading);
  font-size: var(--text-body-sm);
  font-weight: 600;
  color: var(--midnight-navy);
  margin-bottom: 2px;
  display: block;
}

.dest-tip__text {
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  line-height: var(--line-body-sm);
  color: var(--slate);
}


/* ============================================
   DEST ANSWER (GEO capsule)
   ============================================ */

.dest-answer {
  background-color: var(--pearl-gray);
  padding: var(--space-16) 0;
}

.dest-answer__title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  line-height: var(--line-h2);
  font-weight: var(--weight-h2);
  color: var(--midnight-navy);
  margin-bottom: var(--space-6);
}

.dest-answer__text {
  font-family: var(--font-body);
  font-size: var(--text-body-lg);
  line-height: var(--line-body-lg);
  color: var(--charcoal);
  margin-bottom: var(--space-4);
}

.dest-answer__text:last-child {
  margin-bottom: 0;
}

.dest-answer__text strong {
  color: var(--midnight-navy);
  font-weight: 600;
}

@media (max-width: 768px) {
  .dest-answer {
    padding: var(--space-12) 0;
  }
}


/* ============================================
   DEST CTA (listing page CTA section)
   ============================================ */

.dest-cta {
  background: var(--gradient-midnight);
  padding: var(--space-16) 0;
  text-align: center;
}

.dest-cta__title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  line-height: var(--line-h2);
  font-weight: var(--weight-h2);
  color: var(--white);
  margin-bottom: var(--space-4);
}

.dest-cta__text {
  font-family: var(--font-body);
  font-size: var(--text-body-lg);
  line-height: var(--line-body-lg);
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  margin: 0 auto var(--space-8);
}

.dest-cta__buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .dest-cta {
    padding: var(--space-12) 0;
  }

  .dest-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
}


/* ============================================
   ROUTE HERO (detail page full-width hero)
   ============================================ */

.route-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  background-color: var(--midnight-navy);
  overflow: hidden;
}

.route-hero__image {
  position: absolute;
  inset: 0;
}

.route-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.route-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(27, 45, 79, 0.9) 0%,
    rgba(27, 45, 79, 0.5) 50%,
    rgba(27, 45, 79, 0.2) 100%
  );
}

.route-hero__content {
  position: relative;
  z-index: 1;
  padding: var(--space-12) 0;
  width: 100%;
}

.route-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-4);
}

.route-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-fast);
}

.route-hero__breadcrumb a:hover {
  color: var(--champagne-gold);
}

.route-hero__breadcrumb-sep {
  color: rgba(255, 255, 255, 0.3);
}

.route-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.route-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 14px;
  background-color: rgba(var(--champagne-gold-rgb), 0.15);
  border: 1px solid rgba(var(--champagne-gold-rgb), 0.45);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: var(--text-body-sm);
  font-weight: 600;
  color: var(--champagne-gold);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.route-hero__badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.route-hero__title {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  line-height: var(--line-h1);
  font-weight: var(--weight-h1);
  color: var(--white);
  margin-bottom: var(--space-2);
}

.route-hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-body-lg);
  line-height: var(--line-body-lg);
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .route-hero {
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .route-hero {
    min-height: 320px;
  }

  .route-hero__title {
    font-size: var(--text-h2);
  }
}


/* ============================================
   ROUTE INFO (quick info strip — 4 columns)
   ============================================ */

.route-info {
  background-color: var(--white);
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.route-info__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-1);
}

@media (min-width: 1024px) {
  .route-info__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.route-info__item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  border-right: 1px solid var(--border-light);
}

.route-info__item:last-child {
  border-right: none;
}

@media (max-width: 1023px) {
  .route-info__item:nth-child(even) {
    border-right: none;
  }

  .route-info__item:nth-child(3),
  .route-info__item:nth-child(4) {
    border-top: 1px solid var(--border-light);
  }
}

@media (max-width: 639px) {
  .route-info__item {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: var(--space-4);
  }

  .route-info__item:last-child {
    border-bottom: none;
  }

  .route-info__grid {
    grid-template-columns: 1fr;
  }
}

.route-info__icon {
  width: 44px;
  height: 44px;
  background-color: rgba(var(--champagne-gold-rgb), 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.route-info__icon svg {
  width: 22px;
  height: 22px;
  color: var(--champagne-gold);
}

.route-info__label {
  font-family: var(--font-heading);
  font-size: var(--text-caption);
  font-weight: 500;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 2px;
}

.route-info__value {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  line-height: var(--line-h4);
  font-weight: 700;
  color: var(--midnight-navy);
  display: block;
}

.route-info__sub {
  font-family: var(--font-body);
  font-size: var(--text-caption);
  color: var(--slate);
  display: block;
}


/* ============================================
   ROUTE HIGHLIGHTS (3-5 stop cards)
   ============================================ */

.route-highlights {
  padding: var(--space-16) 0;
  background-color: var(--cloud-white);
}

.route-highlights__header {
  margin-bottom: var(--space-10);
}

.route-highlights__eyebrow {
  display: block;
  margin-bottom: var(--space-3);
}

.route-highlights__title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  line-height: var(--line-h2);
  font-weight: var(--weight-h2);
  color: var(--midnight-navy);
  margin-bottom: var(--space-3);
}

.route-highlights__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--line-body);
  color: var(--slate);
  max-width: 560px;
  margin-bottom: 0;
}

.route-highlights__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .route-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .route-highlights__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.route-highlight-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.route-highlight-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.route-highlight-card__icon {
  width: 52px;
  height: 52px;
  background-color: rgba(var(--sunset-coral-rgb), 0.08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.route-highlight-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--sunset-coral);
}

.route-highlight-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  line-height: var(--line-h4);
  font-weight: var(--weight-h4);
  color: var(--midnight-navy);
  margin-bottom: var(--space-2);
}

.route-highlight-card__desc {
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  line-height: var(--line-body-sm);
  color: var(--slate);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .route-highlights {
    padding: var(--space-12) 0;
  }
}


/* ============================================
   ROUTE STOPS (numbered timeline)
   ============================================ */

.route-stops {
  padding: var(--space-16) 0;
  background-color: var(--pearl-gray);
}

.route-stops__header {
  margin-bottom: var(--space-10);
}

.route-stops__eyebrow {
  display: block;
  margin-bottom: var(--space-3);
}

.route-stops__title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  line-height: var(--line-h2);
  font-weight: var(--weight-h2);
  color: var(--midnight-navy);
  margin-bottom: 0;
}

.route-stops__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.route-stop {
  display: flex;
  gap: var(--space-6);
  position: relative;
}

/* Vertical connector line */
.route-stop:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--champagne-gold), var(--border-light));
}

.route-stop__number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--champagne-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-body-sm);
  font-weight: 700;
  color: var(--white);
  position: relative;
  z-index: 1;
  margin-top: var(--space-2);
}

.route-stop__content {
  padding-bottom: var(--space-10);
  flex: 1;
}

.route-stop:last-child .route-stop__content {
  padding-bottom: 0;
}

.route-stop__name {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  line-height: var(--line-h4);
  font-weight: var(--weight-h4);
  color: var(--midnight-navy);
  margin-bottom: var(--space-2);
}

.route-stop__desc {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--line-body);
  color: var(--charcoal);
  margin-bottom: var(--space-3);
}

.route-stop__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.route-stop__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 4px 10px;
  background-color: var(--white);
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  font-family: var(--font-heading);
  font-size: var(--text-caption);
  font-weight: 500;
  color: var(--slate);
}

.route-stop__tag svg {
  width: 12px;
  height: 12px;
  color: var(--champagne-gold);
}

@media (max-width: 768px) {
  .route-stops {
    padding: var(--space-12) 0;
  }

  .route-stop {
    gap: var(--space-4);
  }
}


/* ============================================
   ROUTE TIPS (practical tips grid)
   ============================================ */

.route-tips {
  padding: var(--space-16) 0;
  background-color: var(--cloud-white);
}

.route-tips__header {
  margin-bottom: var(--space-10);
}

.route-tips__eyebrow {
  display: block;
  margin-bottom: var(--space-3);
}

.route-tips__title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  line-height: var(--line-h2);
  font-weight: var(--weight-h2);
  color: var(--midnight-navy);
  margin-bottom: 0;
}

.route-tips__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 640px) {
  .route-tips__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .route-tips__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.route-tip-card {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.route-tip-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: rgba(var(--sky-blue-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.route-tip-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--sky-blue);
}

.route-tip-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-body-sm);
  font-weight: 600;
  color: var(--midnight-navy);
  margin-bottom: var(--space-1);
  display: block;
}

.route-tip-card__text {
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  line-height: var(--line-body-sm);
  color: var(--slate);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .route-tips {
    padding: var(--space-12) 0;
  }
}


/* ============================================
   ROUTE VEHICLE (recommended vehicle card)
   ============================================ */

.route-vehicle {
  padding: var(--space-16) 0;
  background-color: var(--pearl-gray);
  border-top: 1px solid var(--border-light);
}

.route-vehicle__inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-10);
  align-items: center;
}

.route-vehicle__image {
  flex: 1;
  min-width: 260px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-color: var(--white);
  aspect-ratio: 16 / 10;
}

.route-vehicle__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.route-vehicle__content {
  flex: 1;
  min-width: 280px;
}

.route-vehicle__eyebrow {
  display: block;
  margin-bottom: var(--space-3);
}

.route-vehicle__title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  line-height: var(--line-h2);
  font-weight: var(--weight-h2);
  color: var(--midnight-navy);
  margin-bottom: var(--space-2);
}

.route-vehicle__model {
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  color: var(--slate);
  margin-bottom: var(--space-5);
}

.route-vehicle__specs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.route-vehicle__spec {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 12px;
  background-color: var(--white);
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  font-family: var(--font-heading);
  font-size: var(--text-body-sm);
  font-weight: 500;
  color: var(--charcoal);
}

.route-vehicle__spec svg {
  width: 14px;
  height: 14px;
  color: var(--champagne-gold);
  flex-shrink: 0;
}

.route-vehicle__price {
  margin-bottom: var(--space-6);
}

.route-vehicle__price-label {
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  color: var(--slate);
  display: block;
}

.route-vehicle__price-value {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--champagne-gold);
  display: block;
}

.route-vehicle__price-period {
  font-size: var(--text-body);
  color: var(--slate);
  font-family: var(--font-body);
  font-weight: 400;
}

.route-vehicle__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

@media (max-width: 768px) {
  .route-vehicle {
    padding: var(--space-12) 0;
  }

  .route-vehicle__inner {
    flex-direction: column;
  }

  .route-vehicle__image {
    width: 100%;
  }
}


/* ============================================
   ROUTE CTA (gradient CTA section)
   ============================================ */

.route-cta {
  background: var(--gradient-midnight);
  padding: var(--space-16) 0;
  text-align: center;
}

.route-cta__title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  line-height: var(--line-h2);
  font-weight: var(--weight-h2);
  color: var(--white);
  margin-bottom: var(--space-4);
}

.route-cta__text {
  font-family: var(--font-body);
  font-size: var(--text-body-lg);
  line-height: var(--line-body-lg);
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto var(--space-8);
}

.route-cta__buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .route-cta {
    padding: var(--space-12) 0;
  }

  .route-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
}


/* ============================================
   ROUTE RELATED (3 related destination cards)
   ============================================ */

.route-related {
  padding: var(--space-16) 0;
  background-color: var(--cloud-white);
}

.route-related__header {
  margin-bottom: var(--space-10);
}

.route-related__eyebrow {
  display: block;
  margin-bottom: var(--space-3);
}

.route-related__title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  line-height: var(--line-h2);
  font-weight: var(--weight-h2);
  color: var(--midnight-navy);
  margin-bottom: 0;
}

.route-related__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .route-related__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Related cards reuse .dest-card styles with a smaller aspect ratio */
.route-related__card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  text-decoration: none;
  background-color: var(--midnight-navy);
  aspect-ratio: 3 / 2;
}

.route-related__card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.route-related__card-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.route-related__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.route-related__card:hover .route-related__card-image img {
  transform: scale(1.06);
}

.route-related__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(27, 45, 79, 0.88) 0%,
    rgba(27, 45, 79, 0.3) 60%,
    transparent 100%
  );
}

.route-related__card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-4);
}

.route-related__card-time {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-heading);
  font-size: var(--text-caption);
  font-weight: 500;
  color: var(--champagne-gold);
  margin-bottom: var(--space-1);
}

.route-related__card-title {
  font-family: var(--font-heading);
  font-size: var(--text-body-sm);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .route-related {
    padding: var(--space-12) 0;
  }
}


/* ============================================
   ROUTE HERO — image placeholder + actions
   ============================================ */

/* Colored background placeholder when no photo is available */
.route-hero__image-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--midnight-navy) 0%,
    var(--sky-blue) 60%,
    var(--champagne-gold) 100%
  );
  opacity: 0.55;
}

/* CTA button row inside the hero content area */
.route-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

@media (max-width: 480px) {
  .route-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ============================================
   ROUTE STOPS — BEM variant used in HTML
   (HTML uses .route-stops__item / __number /
    __content / __title / __desc / __meta /
    __badge instead of .route-stop shorthand)
   ============================================ */

.route-stops__item {
  display: flex;
  gap: var(--space-6);
  position: relative;
  list-style: none;
}

/* Vertical connector line between items */
.route-stops__item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--champagne-gold), var(--border-light));
}

.route-stops__number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--champagne-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-body-sm);
  font-weight: 700;
  color: var(--white);
  position: relative;
  z-index: 1;
  margin-top: var(--space-2);
}

.route-stops__content {
  padding-bottom: var(--space-10);
  flex: 1;
}

.route-stops__item:last-child .route-stops__content {
  padding-bottom: 0;
}

.route-stops__title {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  line-height: var(--line-h4);
  font-weight: var(--weight-h4);
  color: var(--midnight-navy);
  margin-bottom: var(--space-2);
}

.route-stops__desc {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--line-body);
  color: var(--charcoal);
  margin-bottom: var(--space-3);
}

.route-stops__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

/* Base badge — neutral pill */
.route-stops__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 4px 12px;
  background-color: var(--white);
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  font-family: var(--font-heading);
  font-size: var(--text-caption);
  font-weight: 500;
  color: var(--slate);
}

/* Info variant — sky-blue tint */
.route-stops__badge--info {
  background-color: rgba(var(--sky-blue-rgb), 0.08);
  border-color: rgba(var(--sky-blue-rgb), 0.3);
  color: var(--sky-blue);
}

/* Tip variant — gold tint */
.route-stops__badge--tip {
  background-color: rgba(var(--champagne-gold-rgb), 0.08);
  border-color: rgba(var(--champagne-gold-rgb), 0.35);
  color: var(--champagne-gold);
}

/* Arrival variant — success green tint */
.route-stops__badge--arrival {
  background-color: rgba(5, 150, 105, 0.08);
  border-color: rgba(5, 150, 105, 0.3);
  color: var(--success);
}

@media (max-width: 768px) {
  .route-stops__item {
    gap: var(--space-4);
  }
}


/* ============================================
   ROUTE ATTRACTIONS (what-to-do grid)
   ============================================ */

.route-attractions {
  padding: var(--space-16) 0;
}

.route-attractions__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 640px) {
  .route-attractions__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .route-attractions__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.route-attractions__card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.route-attractions__card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.route-attractions__icon {
  width: 52px;
  height: 52px;
  background-color: rgba(var(--sunset-coral-rgb), 0.08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  flex-shrink: 0;
}

.route-attractions__icon svg {
  width: 28px;
  height: 28px;
  color: var(--sunset-coral);
}

.route-attractions__title {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  line-height: var(--line-h4);
  font-weight: var(--weight-h4);
  color: var(--midnight-navy);
  margin-bottom: var(--space-2);
}

.route-attractions__desc {
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  line-height: var(--line-body-sm);
  color: var(--charcoal);
  margin-bottom: var(--space-4);
  flex: 1;
}

.route-attractions__info {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: auto;
}

.route-attractions__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 4px 10px;
  background-color: rgba(var(--sky-blue-rgb), 0.06);
  border: 1px solid rgba(var(--sky-blue-rgb), 0.2);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: var(--text-caption);
  font-weight: 500;
  color: var(--sky-blue);
}

.route-attractions__tag svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: var(--sky-blue);
}

@media (max-width: 768px) {
  .route-attractions {
    padding: var(--space-12) 0;
  }
}


/* ============================================
   ROUTE TIPS — BEM variant used in HTML
   (HTML uses .route-tips__card / __card-icon /
    __card-title / __card-text — distinct from
    the generic .route-tip-card block)
   ============================================ */

.route-tips__card {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.route-tips__card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: rgba(var(--sky-blue-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.route-tips__card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--sky-blue);
}

.route-tips__card-title {
  font-family: var(--font-heading);
  font-size: var(--text-body-sm);
  font-weight: 600;
  color: var(--midnight-navy);
  margin-bottom: var(--space-1);
  display: block;
}

.route-tips__card-text {
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  line-height: var(--line-body-sm);
  color: var(--slate);
  margin-bottom: 0;
}


/* ============================================
   ROUTE VEHICLE — card layout + sub-elements
   ============================================ */

/* Outer flex card wrapping image + info side-by-side */
.route-vehicle__card {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-10);
  align-items: flex-start;
  background-color: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  padding: var(--space-8);
}

/* Colored placeholder when no vehicle photo */
.route-vehicle__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--pearl-gray) 0%,
    rgba(var(--champagne-gold-rgb), 0.15) 100%
  );
  border-radius: var(--radius-lg);
  min-height: 200px;
}

/* "Recomendado" badge overlaid on image wrapper */
.route-vehicle__badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  padding: 4px 12px;
  background-color: var(--champagne-gold);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: var(--text-caption);
  font-weight: 700;
  color: var(--midnight-navy);
  letter-spacing: 0.04em;
}

/* Make image wrapper relative so badge can overlay */
.route-vehicle__image {
  position: relative;
}

/* Info / text content column */
.route-vehicle__info {
  flex: 1;
  min-width: 260px;
}

/* Small eyebrow label above title */
.route-vehicle__category {
  font-family: var(--font-heading);
  font-size: var(--text-caption);
  font-weight: 600;
  color: var(--champagne-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: var(--space-1);
}

/* Description paragraph */
.route-vehicle__desc {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--line-body);
  color: var(--charcoal);
  margin-bottom: var(--space-5);
}

/* Checklist of included features */
.route-vehicle__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.route-vehicle__features li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  color: var(--charcoal);
}

.route-vehicle__features li svg {
  width: 16px;
  height: 16px;
  color: var(--success);
  flex-shrink: 0;
}

/* Button row inside the vehicle info column */
.route-vehicle__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* Alternative vehicle suggestion note */
.route-vehicle__alternative {
  margin-top: var(--space-6);
  padding: var(--space-4) var(--space-5);
  background-color: rgba(var(--sky-blue-rgb), 0.06);
  border-left: 3px solid var(--sky-blue);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.route-vehicle__alternative p {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  line-height: var(--line-body-sm);
  color: var(--charcoal);
  margin: 0;
}

.route-vehicle__alternative p svg {
  width: 16px;
  height: 16px;
  color: var(--sky-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.route-vehicle__alternative a {
  color: var(--sky-blue);
  text-decoration: underline;
  text-decoration-color: rgba(var(--sky-blue-rgb), 0.4);
  text-underline-offset: 2px;
}

.route-vehicle__alternative a:hover {
  color: var(--midnight-navy);
  text-decoration-color: var(--midnight-navy);
}

@media (max-width: 768px) {
  .route-vehicle__card {
    flex-direction: column;
    padding: var(--space-5);
    gap: var(--space-6);
  }

  .route-vehicle__info {
    min-width: 0;
    width: 100%;
  }
}


/* ============================================
   ROUTE CTA — inner layout + missing elements
   ============================================ */

/* Inner wrapper for optional two-column layout */
.route-cta__inner {
  display: flex;
  justify-content: center;
}

/* Content block (text + benefits + actions) */
.route-cta__content {
  max-width: 640px;
  width: 100%;
  text-align: center;
}

/* Subtitle / lead text (alias of .route-cta__text) */
.route-cta__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-body-lg);
  line-height: var(--line-body-lg);
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto var(--space-6);
}

/* Benefits checklist */
.route-cta__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-8) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  text-align: left;
  display: inline-flex;
}

.route-cta__benefits li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  color: rgba(255, 255, 255, 0.85);
}

.route-cta__benefits li svg {
  width: 16px;
  height: 16px;
  color: var(--champagne-gold);
  flex-shrink: 0;
}

/* Button row */
.route-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

@media (max-width: 640px) {
  .route-cta__actions {
    flex-direction: column;
    align-items: center;
  }
}


/* ============================================
   ROUTE RELATED — missing sub-elements
   ============================================ */

/* Colored placeholder background when no destination photo */
.route-related__card-placeholder {
  position: absolute;
  inset: 0;
  background-color: var(--dest-color, var(--midnight-navy));
  opacity: 0.7;
}

/* Text content block overlaid at bottom of card */
.route-related__card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-4);
  z-index: 1;
}

/* Badge row (distance / duration) */
.route-related__card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

/* Individual distance / time badge */
.route-related__badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background-color: rgba(var(--champagne-gold-rgb), 0.18);
  border: 1px solid rgba(var(--champagne-gold-rgb), 0.4);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: var(--text-caption);
  font-weight: 600;
  color: var(--champagne-gold);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Short description below title */
.route-related__card-desc {
  font-family: var(--font-body);
  font-size: var(--text-caption);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-2);
}

/* "Ver roteiro →" call-to-action link */
.route-related__card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-heading);
  font-size: var(--text-caption);
  font-weight: 600;
  color: var(--champagne-gold);
  transition: gap var(--transition-fast);
}

.route-related__card:hover .route-related__card-link {
  gap: var(--space-2);
}

.route-related__card-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
