/* Sightseeing page */
.sightseeing-intro {
  padding: 52px 24px 58px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
}

.sightseeing-intro-inner {
  width: min(750px, 100%);
  margin-inline: auto;
  text-align: center;
}

.sightseeing-intro h1 {
  margin: 0 0 28px;
  font-size: 32px;
  font-weight: 400;
}

.sightseeing-intro p {
  margin: 0;
}

.sightseeing-spots {
  padding: 70px 24px 100px;
  background: rgba(64, 85, 116, .035);
}

.sightseeing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 40px;
  width: min(1200px, 100%);
  margin-inline: auto;
}

.sightseeing-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
  transition: box-shadow .2s ease, transform .2s ease;
}

.sightseeing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .14);
}

.sightseeing-card > img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.sightseeing-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 22px 25px;
}

.sightseeing-card h2 {
  margin: 0 0 14px;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
}

.sightseeing-card p {
  margin: 0;
}

.hiking-list {
  margin: 0;
  padding-left: 2em;
}

.spot-actions {
  display: flex;
  justify-content: center;
  margin-top: auto;
  padding-top: 24px;
}

.spot-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 7px 17px;
  border: 1px solid #ddd;
  background: #fff;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.4;
  transition: background-color .2s ease, color .2s ease;
}

.spot-button + .spot-button {
  border-left: 0;
}

.spot-button.primary {
  border-color: #804e3d;
  background: #804e3d;
  color: #fff;
}

.spot-button:hover {
  background: #222;
  color: #fff;
}

@media (max-width: 900px) {
  .sightseeing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .sightseeing-intro {
    padding: 38px 24px 42px;
  }

  .sightseeing-intro h1 {
    margin-bottom: 22px;
    font-size: 26px;
  }

  .sightseeing-intro p {
    text-align: left;
  }

  .sightseeing-spots {
    padding: 48px 20px 65px;
  }

  .sightseeing-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .sightseeing-card-body {
    padding: 22px 20px 25px;
  }

  .sightseeing-card h2 {
    font-size: 19px;
  }

  .spot-button {
    flex: 1 1 50%;
    padding-inline: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sightseeing-card {
    transition: none;
  }
}
