.guide-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #071a2e;
}

.guide-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.guide-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 15, 29, .9) 0%, rgba(2, 15, 29, .64) 50%, rgba(2, 15, 29, .24) 100%);
}

.guide-hub-hero::after {
    display: none;
}

.guide-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 74px 0 58px;
  color: #fff;
}

.guide-hero-copy h1 {
  margin: .3rem 0 .75rem;
  font-size: var(--fs-hero);
  line-height: .98;
  letter-spacing: -.045em;
}

.guide-hero-copy > p:last-child {
  max-width: 680px;
  margin: 0;
  font-size: var(--fs-lead);
  line-height: 1.55;
}

.guide-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(250px, .6fr);
  gap: 44px;
  align-items: start;
}

.guide-intro h2,
.guide-heading h2 {
  margin-top: 0;
}

.guide-note {
  padding: 25px;
  border-top: 5px solid #f7931e;
  border-radius: 8px;
  background: #eef8ff;
  box-shadow: 0 14px 34px rgba(7, 36, 62, .1);
}

.guide-note strong {
  display: block;
  margin-bottom: .45rem;
  color: #08243d;
  font-size: var(--fs-card-sm);
}

.guide-note p {
  margin: 0;
}

.guide-heading {
  max-width: 800px;
  margin-bottom: 30px;
}

.attraction-list {
  display: grid;
  gap: 34px;
}

.attraction-card {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  overflow: hidden;
  border: 1px solid #dbe7f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(7, 36, 62, .09);
}

.attraction-media {
  position: relative;
  min-height: 100%;
  background: #dceaf3;
}

.attraction-media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.attraction-number {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #f7931e;
  box-shadow: 0 7px 18px rgba(0, 0, 0, .2);
  font-weight: 800;
}

.attraction-body {
  padding: clamp(25px, 4vw, 42px);
}

.attraction-body h3 {
  margin: 0 0 .75rem;
  color: #08243d;
  font-size: var(--fs-content);
}

.attraction-body > p {
  font-size: var(--fs-body);
  line-height: 1.7;
}

.attraction-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 22px;
  margin: 24px 0;
  padding: 20px;
  border-radius: 10px;
  background: #f4f8fb;
}

.attraction-facts div {
  min-width: 0;
}

.attraction-facts dt {
  margin-bottom: 3px;
  color: #34759f;
  font-size: var(--fs-caption);
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.attraction-facts dd {
  font-size: var(--fs-body);
  margin: 0;
  color: #183247;
  line-height: 1.45;
}

.why-visit {
  margin: 0 0 22px;
  padding-left: 16px;
  border-left: 4px solid #67c6ef;
}

.why-visit strong {
  color: #08243d;
}

.attraction-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.attraction-actions .official-link {
  color: #146792;
  font-weight: 750;
}

.guide-bottom-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #08243d, #0b4267);
}

.guide-bottom-cta h2 {
  font-size: var(--fs-block);
  margin: 0 0 .5rem;
  color: #fff;
}

.guide-bottom-cta p {
  font-size: var(--fs-lead);
  margin: 0;
  color: #d9edf8;
}

.guide-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.photo-credits {
  margin-top: 32px;
  color: #5a6c79;
  font-size: var(--fs-caption);
  line-height: 1.65;
}

.photo-credits summary {
  cursor: pointer;
  color: #24465e;
  font-weight: 750;
}

.guide-index-grid { display: grid; gap: 28px; margin-top: 30px; }
.guide-index-card { display: grid; grid-template-columns: minmax(300px,.8fr) 1fr; overflow: hidden; border: 1px solid #dce2e9; border-radius: 22px; background: #fff; box-shadow: 0 14px 36px rgba(19,34,55,.08); }
.guide-index-card > a { min-height: 360px; }
.guide-index-card img { width: 100%; height: 100%; object-fit: cover; }
.guide-index-card > div { padding: clamp(28px,5vw,58px); align-self: center; }
.guide-index-card h2 { font-size: var(--fs-content); line-height: 1.15; margin: 6px 0 14px; }
.guide-index-card > div > p { font-size: var(--fs-body); }
.guide-index-card h2 a { color: inherit; text-decoration: none; }
.guide-index-card .btn { margin-top: 12px; }

@media (max-width: 850px) {
  .guide-intro,
  .attraction-card,
  .guide-bottom-cta {
    grid-template-columns: 1fr;
  }

  .guide-index-card { grid-template-columns: 1fr; }
  .guide-index-card > a { min-height: 260px; }

  .attraction-media img {
    min-height: 260px;
    max-height: 420px;
  }
}

@media (max-width: 560px) {
  .guide-hero {
    min-height: 390px;
  }

  .guide-hero::after {
    background: linear-gradient(0deg, rgba(2, 15, 29, .94) 0%, rgba(2, 15, 29, .38) 100%);
  }

  .guide-hero-copy {
    padding: 92px 0 36px;
  }

  .attraction-facts {
    grid-template-columns: 1fr;
  }

  .attraction-actions .btn,
  .guide-bottom-actions .btn {
    width: 100%;
    text-align: center;
  }
}

.hero-badge{position:absolute !important;top:50% !important;left:auto !important;right:auto !important;bottom:auto !important;transform:translateY(-50%) !important;height:clamp(54px,10.6vw,142px) !important;width:auto !important;max-width:none !important;max-height:none !important;object-fit:contain !important;z-index:5}
.hero-badge-left{left:2% !important}
.hero-badge-right{right:2% !important}

/* Area guide heroes on phones: photo fits its frame (no navy bands, no dark tint); guide title and text sit below the photo */
@media (max-width: 720px) {
  .guide-hero {
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
    display: block !important;
  }
  .guide-hero::before,
  .guide-hero::after { display: none !important; }
  .guide-hero > img:first-child {
    position: static !important;
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    inset: auto !important;
    transform: none !important;
    object-fit: initial !important;
    opacity: 1 !important;
    filter: none !important;
  }
  .guide-hero .guide-hero-copy {
    position: static !important;
    transform: none !important;
    padding: 18px 16px 22px !important;
    margin: 0 !important;
  }
}
