.travel-map-page {
  width: 100%;
  overflow: hidden;
  color: #fff;
  font-family: inherit;
}

.travel-map-section {
  position: relative;
  width: 100%;
}

.travel-map-inner {
  position: relative;
  z-index: 2;
  width: min(1080px, calc(100% - 72px));
  margin: 0 auto;
}

/* =========================
   Hero
========================= */

.travel-map-hero {
  height: 45vh;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.travel-map-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.travel-map-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(37, 138, 204, 0.08) 0%,
      rgba(37, 102, 145, 0.18) 46%,
      rgba(37, 77, 98, 0.38) 100%
    );
}

.travel-map-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 70px;
}

.travel-map-hero-en {
  margin-bottom: 6px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.travel-map-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 5.8vw, 82px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.05em;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.22);
}

/* =========================
   Common Background
========================= */

.travel-map-main-bg {
  position: relative;
  overflow: hidden;
  background: #39556b;
  isolation: isolate;
}

.travel-map-bg-waves {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.72;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.travel-map-bg-waves img {
  display: block;
  width: 100%;
  height: auto;
  flex: 0 0 auto;
}

/* =========================
   Section 2：周邊景點地圖
========================= */

.travel-map-nearby {
  padding: 92px 0 82px;
}

.travel-map-nearby-head {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 62px;
}

.travel-map-section-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5.4vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.22);
}

.travel-map-section-heading p {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(15px, 1.4vw, 22px);
  font-weight: 800;
  line-height: 1.25;
}

.travel-map-info-bubble {
  width: 100%;
  padding: 28px 38px;
  border-radius: 2px;
  background: rgba(205, 226, 235, 0.78);
  color: #31546a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 12px 28px rgba(0, 0, 0, 0.08);
}

.travel-map-info-bubble p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.95;
  letter-spacing: 0.045em;
}

.travel-map-main-image {
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
}

.travel-map-main-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================
   Section 3：漫步在澳底
========================= */

.travel-map-walk {
  padding: 34px 0 112px;
}

.travel-map-lined-title {
  position: relative;
  width: 100%;
  margin: 0 auto 42px;
  padding-bottom: 16px;
}

/* 連續底線：寬度會跟下方兩欄圖片區塊一樣，因為都在 travel-map-inner 裡 */
.travel-map-lined-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.82);
}

.travel-map-lined-title-text h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.18);
}

.travel-map-attraction-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.travel-map-attraction-col {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.travel-map-attraction-col-right {
  padding-top: 0;
}

.travel-map-attraction-title-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.travel-map-attraction-title-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 6vw, 86px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.22);
}

.travel-map-attraction-title-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

/* 所有景點卡片拿掉外框與背景，只保留圖片本身 */
.travel-map-attraction-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  min-height: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.travel-map-attraction-card img {
  display: block;
  width: 100%;
  height: auto;
}

.travel-map-card-soft,
.travel-map-card-blue,
.travel-map-card-orange,
.travel-map-card-gold {
  border-color: transparent;
  background: transparent;
}

.travel-map-boat-deco {
  min-height: 180px;
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.travel-map-boat-deco img {
  width: 78%;
  margin: 0 auto;
}

/* =========================
   Section 4：自行車路線推薦
========================= */

.travel-map-bike {
  padding: 36px 0 126px;
}

.travel-map-bike-title {
  margin-bottom: 52px;
  text-align: center;
}

.travel-map-bike-title h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.travel-map-bike-title span {
  display: block;
  width: 180px;
  height: 1px;
  margin: 14px auto 0;
  background: rgba(255, 255, 255, 0.82);
}

.travel-map-bike-single {
  width: 118%;
  margin-left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}

.travel-map-bike-single img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================
   RWD
========================= */

@media (max-width: 1024px) {
  .travel-map-inner {
    width: min(900px, calc(100% - 56px));
  }

  .travel-map-nearby-head {
    gap: 32px;
  }

  .travel-map-attraction-grid {
    gap: 34px;
  }
}

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

  .travel-map-hero-content {
    padding-top: 76px;
  }

  .travel-map-hero-en {
    font-size: 15px;
  }

  .travel-map-inner {
    width: calc(100% - 36px);
  }

  .travel-map-bg-waves {
    opacity: 0.62;
  }

  .travel-map-bg-waves img {
    width: 180%;
    max-width: none;
    margin-left: -40%;
  }

  .travel-map-nearby {
    padding: 68px 0 66px;
  }

  .travel-map-nearby-head {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 36px;
  }

  .travel-map-info-bubble {
    padding: 24px 22px;
  }

  .travel-map-info-bubble p {
    font-size: 15px;
    line-height: 1.85;
  }

  .travel-map-walk {
    padding: 24px 0 80px;
  }

  .travel-map-lined-title {
    margin-bottom: 34px;
    padding-bottom: 14px;
    text-align: left;
  }

  .travel-map-lined-title-text h2 {
    font-size: 28px;
  }

  .travel-map-attraction-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .travel-map-attraction-col {
    gap: 30px;
  }

  .travel-map-attraction-col-right {
    padding-top: 0;
  }

  .travel-map-attraction-title-card {
    min-height: auto;
    padding: 0 0 8px;
    text-align: left;
  }

  .travel-map-attraction-title-card h3 {
    font-size: 42px;
  }

  .travel-map-attraction-title-card p {
    font-size: 20px;
  }

  .travel-map-attraction-card {
    min-height: auto;
    border-radius: 0;
  }

  .travel-map-bike {
    padding: 24px 0 90px;
  }
}

@media (max-width: 480px) {
  .travel-map-hero h1,
  .travel-map-section-heading h2 {
    font-size: 42px;
  }

  .travel-map-section-heading p {
    font-size: 15px;
  }

  .travel-map-lined-title-text h2 {
    font-size: 24px;
  }

  .travel-map-attraction-title-card h3 {
    font-size: 36px;
  }

  .travel-map-attraction-title-card p {
    font-size: 18px;
  }

  .travel-map-bike-title h2 {
    font-size: 26px;
  }

  .travel-map-bike-title span {
    width: 140px;
  }
}