/* Things To Do page */
.things-hero .hero-content {
  text-align: left;
}

.things-hero .hero-subtitle {
  margin-left: 0;
}

.things-hero .hero-stamp {
  margin-right: auto;
}

.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 34px 24px 80px 24px;
  position: relative;
  z-index: 2;
  background: var(--surface-soft);
}

.intro-card p,
.section-card p,
.stay-card p {
  font-size: 1.06rem;
  line-height: 1.85;
  color: #2f2f2f;
  margin-bottom: 18px;
}

.intro-card,
.section-card,
.stay-card {
  background: rgba(245, 242, 236, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.intro-card {
  max-width: 1000px;
  margin: 0 auto 36px auto;
  padding: 42px 36px;
}

.intro-card p:last-child,
.section-card p:last-child,
.stay-card p:last-child {
  margin-bottom: 0;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.highlight {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  line-height: 1.6;
  color: #2f2f2f;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 32px;
}

.section-card {
  padding: 0 28px 30px;
}

.section-card h2 {
  margin-top: 24px;
}

.activity-card-image {
  display: block;
  width: calc(100% + 56px);
  height: 220px;
  margin: 0 -28px 0;
  object-fit: cover;
}

.page-wrap > .section-card {
  max-width: 1000px;
  margin: 0 auto 36px auto;
  padding: 38px 32px;
}

.stay-card {
  max-width: 1000px;
  margin: 0 auto;
  padding: 38px 32px;
  text-align: center;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cta-row .btn {
  margin-top: 0;
  border-radius: var(--radius-lg);
  padding: 12px 22px;
  font-weight: 600;
}

@media (max-width: 860px) {
  .section-grid,
  .highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .page-wrap {
    padding: 28px 18px 64px;
  }

  .intro-card,
  .page-wrap > .section-card,
  .stay-card {
    padding: 28px 20px;
  }

  .section-card {
    padding: 0 20px 26px;
  }

  .activity-card-image {
    width: calc(100% + 40px);
    height: 190px;
    margin-left: -20px;
    margin-right: -20px;
  }
}
