body {
  margin: 0;
  font-family: "Noto Serif KR", serif;
}

.ja {
  font-family: "Noto Serif JP", serif;
}

p {
  font-weight: 600;
  font-size: 1.2rem;
}

.stations_container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  padding: 10px;
}

.stations_photo:hover {
  transform: translateY(-2px);
}

.stations_photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  /* 長方形，豎著 */
  overflow: hidden;
  border-radius: 10px;
  background-color: #ddd;
}

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

#ncr_logo {

  border-radius: 10px;
  width: 50px;

}

.sans {
  font-family: "Lexend Deca", sans-serif;
  font-weight: 500;
}

.sans_light {
  font-family: "Lexend Deca", sans-serif;
  font-weight: 400;
  font-size: 1rem;
}

#stations-header-title {
  color: black;
}



.route-map-button {
  display: inline-block;
  background-color: white;
  color: black;
  text-align: center;
  text-decoration: none;
  border: 1px solid black;
  padding: 5px 5px;
  border-radius: 10px;
  font-family: "Noto Serif KR", serif;
  transition: background-color 0.2s ease, transform 0.2s ease;
}


.route-map-button .zh {
  font-weight: 600;
  font-size: 1rem;
}

.route-map-button .en {
  font-family: "Lexend Deca", sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
}

.route-map-button:hover {
  background-color: #222;
  transform: scale(1.03);
}


@media (max-width: 760px) {
  h1 {
    font-size: 1.4rem;
  }

  .stations_container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    padding: 10px;
  }

  .stations_photo {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    /* 長方形，豎著 */
    overflow: hidden;
    border-radius: 10px;
    background-color: #ddd;

  }
}