.tile--run {
  grid-column: span 2;
}

.tile--run.has-route {
  min-height: 330px;
}

.tile__action {
  align-self: flex-start;
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.route-map {
  width: 100%;
  margin-top: 8px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(247, 239, 210, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 239, 210, 0.09) 1px, transparent 1px),
    rgba(247, 239, 210, 0.14);
  background-size: 28px 28px;
  overflow: hidden;
}

.route-map svg {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.route-map__line {
  fill: none;
  stroke: var(--gold-glow);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 3px 8px rgba(58, 48, 5, 0.34));
}

.tile--run.has-route .bars {
  display: none;
}

@media (max-width: 540px) {
  .tile--run {
    grid-column: auto;
  }
}
