/* ICELAVI entry pages — image-led, decision-first, HK Chinese primary */
.entry-page {
  background: #fff;
}
.entry-hero {
  position: relative;
  overflow: hidden;
  background: var(--ice-navy);
  color: #fff;
}
.entry-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  min-height: 520px;
  align-items: stretch;
}
.entry-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 40px 68px 0;
  position: relative;
  z-index: 2;
}
.entry-hero .breadcrumbs {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}
.entry-hero .breadcrumbs a {
  color: #fff;
}
.entry-hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.07;
  letter-spacing: -0.05em;
  font-weight: 900;
}
.entry-hero-copy > p:not(.breadcrumbs) {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: 17px;
  line-height: 1.8;
}
.entry-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.entry-hero-media {
  position: relative;
  min-height: 100%;
  background-size: cover;
  background-position: center;
}
.entry-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--ice-navy) 0%,
    rgba(11, 34, 48, 0.18) 34%,
    rgba(11, 34, 48, 0.03) 100%
  );
}
.entry-hero-media::after {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 90px;
  background: linear-gradient(90deg, var(--ice-navy), transparent);
}
.entry-section {
  padding: 68px 0;
}
.entry-section-soft {
  background: var(--ice-snow);
}
.entry-section-dark {
  background: #0b2230;
  color: #fff;
}
.entry-section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}
.entry-section-head h2 {
  margin: 0;
  font-size: clamp(27px, 3.5vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.entry-section-head p {
  max-width: 650px;
  margin: 8px 0 0;
  color: var(--ice-muted);
}
.entry-section-dark .entry-section-head p {
  color: rgba(255, 255, 255, 0.68);
}
.priority-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.priority-card {
  position: relative;
  display: flex;
  min-height: 300px;
  overflow: hidden;
  border-radius: 18px;
  background: #173747;
  color: #fff;
  isolation: isolate;
  box-shadow: 0 12px 32px rgba(8, 30, 39, 0.12);
}
.priority-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--photo);
  background-size: cover;
  background-position: center;
  z-index: -2;
  transition: transform 0.35s ease;
}
.priority-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 24, 32, 0.02) 18%,
    rgba(7, 24, 32, 0.82) 100%
  );
  z-index: -1;
}
.priority-card:hover::before {
  transform: scale(1.035);
}
.priority-card-copy {
  align-self: end;
  padding: 22px 22px 24px;
}
.priority-card small {
  display: block;
  margin-bottom: 7px;
  color: #bdebf4;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.priority-card h3 {
  margin: 0 0 7px;
  font-size: 23px;
  line-height: 1.18;
}
.priority-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.55;
}
.decision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.decision-card {
  position: relative;
  display: block;
  padding: 24px 26px 25px;
  border: 1px solid var(--ice-line);
  border-radius: 16px;
  background: #fff;
}
.decision-card .decision-no {
  display: block;
  margin-bottom: 14px;
  color: var(--ice-lava);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.decision-card h3 {
  margin: 0 0 9px;
  font-size: 22px;
  line-height: 1.25;
}
.decision-card p {
  margin: 0;
  color: var(--ice-muted);
  font-size: 14px;
  line-height: 1.7;
}
.decision-card:hover {
  border-color: #9bc4cf;
  box-shadow: 0 12px 30px rgba(11, 34, 48, 0.08);
}
.decision-card.is-current {
  border-color: #9bc4cf;
  background: var(--ice-snow);
  cursor: default;
}
.decision-card.is-current:hover {
  box-shadow: none;
}
.route-list {
  border-top: 1px solid var(--ice-line);
}
.route-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--ice-line);
}
.route-row strong {
  font-size: 18px;
}
.route-row p {
  margin: 4px 0 0;
  color: var(--ice-muted);
  font-size: 13px;
}
.route-row .route-tag {
  color: var(--ice-blue-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.route-row .route-arrow {
  font-size: 22px;
  color: var(--ice-lava);
}
.money-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  padding: 34px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0b2230, #17465a);
  color: #fff;
}
.money-band h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.035em;
}
.money-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}
.money-band-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
}
.money-band .btn {
  width: 100%;
  justify-content: center;
}
.entry-jump {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 13px 0 2px;
  scrollbar-width: none;
}
.entry-jump::-webkit-scrollbar {
  display: none;
}
.entry-jump a {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid var(--ice-line);
  border-radius: 999px;
  background: #fff;
  color: var(--ice-navy);
  font-size: 12px;
  font-weight: 800;
}
.entry-jump a:hover {
  border-color: var(--ice-blue-deep);
  color: var(--ice-blue-deep);
}
.compact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.compact-card {
  padding: 20px;
  border-top: 4px solid var(--ice-blue);
  background: #fff;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 24px rgba(11, 34, 48, 0.07);
}
.compact-card h3 {
  margin: 0 0 7px;
  font-size: 19px;
}
.compact-card p {
  margin: 0;
  color: var(--ice-muted);
  font-size: 13px;
}
.compact-card:nth-child(2n) {
  border-top-color: var(--ice-moss);
}
.compact-card:nth-child(3n) {
  border-top-color: var(--ice-lava);
}
.preview-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.preview-tile {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.preview-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 15%,
    rgba(7, 24, 32, 0.88) 100%
  );
}
.preview-tile > div {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 16px;
}
.preview-tile h3 {
  margin: 0 0 5px;
  font-size: 19px;
}
.preview-tile p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}
.entry-footer {
  margin-top: 0;
}
.entry-support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.entry-support-links a,
.entry-support-links .support-current {
  padding: 8px 11px;
  border: 1px solid var(--ice-line);
  border-radius: 999px;
  color: var(--ice-blue-deep);
  font-size: 12px;
  font-weight: 800;
}
.entry-support-links a:hover {
  border-color: var(--ice-blue-deep);
  background: var(--ice-snow);
}
.entry-support-links .support-current {
  background: var(--ice-snow);
  cursor: default;
}
.locale-switcher {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}
.locale-switcher a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hotel-evidence {
  position: relative;
  margin: 18px 0 20px;
  border: 1px solid var(--ice-line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--ice-snow);
}
.hotel-evidence[data-brand-label]::before {
  content: attr(data-brand-label);
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  padding: 7px 11px;
  border-left: 2px solid #d7b06a;
  background: rgba(8, 19, 23, 0.86);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.06em;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 0 100%);
  backdrop-filter: blur(5px);
}
.hotel-evidence img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  background: #dfe9ed;
}
.hotel-evidence figcaption {
  padding: 10px 13px;
  color: var(--ice-muted);
  font-size: 12px;
  line-height: 1.55;
}
.alternative-box {
  margin: 38px 0;
  padding: 25px 26px;
  border: 1px solid rgba(18, 47, 59, 0.18);
  border-left: 4px solid #b49369;
  background: linear-gradient(135deg, #fff, #f4f1e9);
  box-shadow: 0 12px 30px rgba(8, 19, 23, 0.055);
}
.alternative-box h2 {
  margin-top: 0;
}
.alternative-box p:last-child {
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .alternative-box {
    padding: 22px 19px;
  }
}
.winter-direction-board {
  margin: 34px 0 42px;
  overflow: hidden;
  border: 1px solid #254a59;
  background: linear-gradient(145deg, #0d2c39, #163e4d);
  box-shadow: 0 18px 42px rgba(8, 19, 23, 0.12);
  color: #fff;
}
.winter-direction-board__head {
  padding: 26px 28px 18px;
}
.winter-direction-board__head .eyebrow {
  margin: 0 0 8px;
  color: #8eddeb;
}
.winter-direction-board__head h2 {
  margin: 0;
  color: #fff;
}
.winter-direction-board__head > p:last-child {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}
.winter-direction-board__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.17);
}
.winter-direction-board__item {
  min-width: 0;
  padding: 22px 20px;
  background: rgba(8, 29, 38, 0.86);
}
.winter-direction-board__grid span {
  color: #d8b372;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.winter-direction-board__grid h3 {
  margin: 7px 0 9px;
  color: #fff;
  font-size: 19px;
  line-height: 1.3;
}
.winter-direction-board__grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.65;
}
.winter-direction-board__note {
  margin: 0;
  padding: 17px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.7;
}
@media (max-width: 760px) {
  .winter-direction-board__head {
    padding: 23px 20px 17px;
  }
  .winter-direction-board__grid {
    grid-template-columns: 1fr;
  }
  .winter-direction-board__item {
    padding: 19px 20px;
  }
  .winter-direction-board__note {
    padding: 16px 20px;
  }
}
.category-library {
  padding: 72px 0 84px;
  background: #f7fafb;
}
.category-library .section-head {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  max-width: none;
  margin-bottom: 38px;
}
.category-library .section-head__title {
  min-width: 0;
  max-width: 520px;
}
.category-library .section-head__title .eyebrow {
  margin: 0 0 12px;
}
.category-library .section-head h2 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.12;
  text-wrap: balance;
}
.category-library .section-head__copy {
  max-width: 680px;
  margin: 0;
  color: var(--ice-muted);
  line-height: 1.7;
}
.category-cluster {
  padding: 34px 0 46px;
  border-top: 1px solid rgba(18, 47, 59, 0.13);
}
.category-cluster:first-of-type {
  padding-top: 8px;
  border-top: 0;
}
.category-cluster__head {
  display: grid;
  grid-template-columns: 58px minmax(0, 720px);
  gap: 18px;
  align-items: start;
  margin: 0 0 24px;
}
.category-cluster__number {
  margin: 2px 0 0;
  padding: 7px 0;
  border-top: 2px solid #76bfd0;
  color: #876b42;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.category-cluster__head h2 {
  margin: 0 0 8px;
  color: var(--ice-navy);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}
.category-cluster__head div > p {
  margin: 0;
  color: var(--ice-muted);
  line-height: 1.7;
}
.category-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
/* A two-article decision branch is a deliberate pair, not an unfinished
   three-column row. Keep it at the same readable measure as the single
   feature card so the blank third track never looks like missing content. */
.category-article-grid:has(> .article-preview-card:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
}
/* Four articles are a complete comparison set, not a three-card row plus a
   stranded afterthought.  On wide screens give this exact count two balanced
   rows; the normal two-column tablet and one-column phone rules remain the
   more useful reading measures below. */
@media (min-width: 981px) {
  .category-article-grid:has(> .article-preview-card:nth-child(4):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 920px;
  }
}
.article-preview-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(18, 47, 59, 0.14);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 11px 30px rgba(8, 19, 23, 0.06);
  color: var(--ice-navy);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.article-preview-card:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 47, 59, 0.28);
  box-shadow: 0 18px 38px rgba(8, 19, 23, 0.1);
}
.article-preview-card__media {
  aspect-ratio: 16/10;
  margin: 0;
  overflow: hidden;
  background: #dfe9ed;
}
.article-preview-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-preview-card__body {
  display: flex;
  min-height: 275px;
  flex: 1;
  flex-direction: column;
  padding: 22px 21px;
}
.article-preview-card__kicker {
  margin: 0 0 8px;
  color: #876b42;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.article-preview-card h2 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.3;
}
.article-preview-card__body > p:not(.article-preview-card__kicker) {
  margin: 0;
  color: var(--ice-muted);
  font-size: 14px;
  line-height: 1.7;
}
.article-preview-card__body span {
  margin-top: auto;
  padding-top: 20px;
  color: var(--ice-blue-deep);
  font-size: 13px;
  font-weight: 900;
}
.category-article-grid--single {
  grid-template-columns: minmax(0, 920px);
}
.category-article-grid--single .article-preview-card {
  display: grid;
  grid-template-columns: minmax(300px, 42%) minmax(0, 1fr);
}
.category-article-grid--single .article-preview-card__media {
  height: 100%;
  min-height: 320px;
  aspect-ratio: auto;
}
.category-article-grid--single .article-preview-card__body {
  min-height: 320px;
  padding: 30px 31px;
}
.category-article-grid--single .article-preview-card h2 {
  font-size: 28px;
}
.category-next {
  padding: 0 0 72px;
  background: #f7fafb;
}
.category-index .entry-hero-actions .btn-primary {
  max-width: 100%;
  white-space: normal;
  text-align: left;
}
.category-index .entry-hero-copy h1 {
  font-size: clamp(36px, 5.2vw, 64px);
}
@media (max-width: 980px) {
  .category-article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .category-article-grid:has(> .article-preview-card:nth-child(2):last-child) {
    max-width: none;
  }
  .category-article-grid--single {
    grid-template-columns: minmax(0, 1fr);
  }
  .category-article-grid--single .article-preview-card {
    grid-template-columns: minmax(260px, 42%) minmax(0, 1fr);
  }
}
@media (max-width: 640px) {
  /* Category hubs still need to show their place/activity signal on phones.
     Hiding the media made the first screen look like a generic text landing
     page and removed the only visual proof that the entry matched its topic. */
  .category-index .entry-hero-media {
    display: block;
    min-height: 220px;
  }
  .category-library {
    padding: 46px 0 62px;
  }
  .category-library .section-head {
    display: block;
    margin-bottom: 30px;
  }
  .category-library .section-head__title,
  .category-library .section-head h2,
  .category-library .section-head__copy {
    max-width: none;
  }
  .category-library .section-head__copy {
    margin-top: 14px;
  }
  .category-library .section-head h2 {
    font-size: 30px;
    line-height: 1.18;
  }
  .category-cluster {
    padding: 28px 0 34px;
  }
  .category-cluster__head {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 18px;
  }
  .category-cluster__head h2 {
    font-size: 23px;
  }
  .category-cluster__head div > p {
    font-size: 14px;
  }
  .category-article-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  /* The two-card desktop branch uses :has(), whose specificity otherwise
     defeats the phone layout and creates unreadable half-width cards. */
  .category-article-grid:has(> .article-preview-card:nth-child(2):last-child) {
    grid-template-columns: 1fr;
  }
  .category-article-grid--single .article-preview-card {
    display: flex;
  }
  .category-article-grid--single .article-preview-card__media {
    min-height: 0;
    aspect-ratio: 16/10;
  }
  .category-article-grid--single .article-preview-card__body {
    min-height: 0;
    padding: 19px;
  }
  .category-article-grid--single .article-preview-card h2 {
    font-size: 20px;
  }
  .article-preview-card__body {
    min-height: 0;
    padding: 19px;
  }
  .article-preview-card h2 {
    font-size: 20px;
  }
  .article-preview-card__body span {
    padding-top: 16px;
  }
  .category-index .entry-hero-copy h1 {
    font-size: clamp(29px, 9.2vw, 38px);
  }
}
.arrival-decision {
  margin: 34px 0 42px;
  padding: 26px 28px;
  border: 1px solid #b7dbe5;
  border-radius: 18px;
  background: linear-gradient(135deg, #effaff, #fff 58%);
  box-shadow: 0 12px 30px rgba(11, 34, 48, 0.06);
}
.arrival-decision .eyebrow {
  margin: 0 0 8px;
  color: var(--ice-blue-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.arrival-decision h2 {
  margin: 0 0 18px;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.16;
}
.arrival-decision ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: arrival;
}
.arrival-decision li {
  counter-increment: arrival;
  position: relative;
  min-height: 110px;
  padding: 17px 16px 16px 52px;
  border-radius: 12px;
  background: #fff;
  color: var(--ice-navy);
}
.arrival-decision li::before {
  content: counter(arrival);
  position: absolute;
  top: 17px;
  left: 16px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--ice-blue-deep);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.arrival-decision strong,
.arrival-decision span {
  display: block;
}
.arrival-decision span {
  margin-top: 5px;
  color: var(--ice-muted);
  font-size: 14px;
  line-height: 1.55;
}
.arrival-decision > p:last-child {
  margin: 17px 0 0;
  color: var(--ice-muted);
  font-size: 14px;
  line-height: 1.7;
}
.winter-five-hero {
  background: linear-gradient(135deg, #0a2735, #123e51);
}
.winter-five-graphic {
  display: grid;
  align-content: center;
  gap: 13px;
  padding: 42px;
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(127, 211, 232, 0.22),
      transparent 28%
    ),
    linear-gradient(145deg, #123e51, #0b2230);
}
.winter-five-graphic div {
  padding: 20px 22px;
  border: 1px solid rgba(190, 237, 247, 0.28);
  border-radius: 15px;
  background: rgba(7, 24, 32, 0.28);
  backdrop-filter: blur(4px);
}
.winter-five-graphic span,
.winter-five-graphic strong,
.winter-five-graphic small {
  display: block;
}
.winter-five-graphic span {
  color: #8eddeb;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
}
.winter-five-graphic strong {
  margin-top: 6px;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
}
.winter-five-graphic small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}
.winter-drive-hero {
  background: linear-gradient(135deg, #0a2735, #123e51);
}
.winter-drive-photo {
  background-image: url("/assets/images/photography/photo-1585949795030-5dcd40fb331f.jpg") !important;
  background-position: center 57% !important;
}
.photo-kef-flight {
  background-image: url("/assets/images/photography/photo-1543910600-e22fd404a35a.jpg") !important;
  background-position: center 57% !important;
}
.photo-golden-hero {
  background-image: url("/assets/images/photography/photo-1670594394299-dc622accade7.webp") !important;
  background-position: center 54% !important;
}
.photo-blue-lagoon {
  background-image: url("/assets/images/experiences/blue-lagoon-real.webp") !important;
  background-position: center 57% !important;
}

.entry-hero-itinerary .entry-hero-media.photo-blue-lagoon {
  background-image: url("/assets/images/experiences/blue-lagoon-real.webp") !important;
}
.photo-reykjavik-harbour {
  background-image: url("/assets/images/photography/photo-1640881941956-02e826fc998d.jpg") !important;
  background-position: center 54% !important;
}
.photo-sand-hotel {
  background-image: url("/assets/images/stay/reykjavik-laugavegur-skolavordustigur-apk.webp") !important;
  background-position: center 54% !important;
}
.photo-aurora-hero {
  background-image: url("/assets/images/photography/photo-1635680038146-fb1d28f43e48.webp") !important;
  background-position: center 55% !important;
}
.photo-highlands-hero {
  background-image: url("/assets/images/photography/photo-1575621205435-1f88289dcc4d.webp") !important;
  background-position: center 54% !important;
}
.photo-ring-road {
  background-image: url("/assets/images/photography/photo-1772547038845-2bb6d93d0e22.webp") !important;
  background-position: center 56% !important;
}
.photo-south-coast {
  background-image: url("/assets/images/photography/photo-1508407728267-5dda0f8e9085.webp") !important;
  background-position: center 54% !important;
}
.winter-five-photo {
  background-image: url("/assets/images/photography/photo-1640006696099-52894fede26f.jpg") !important;
  background-position: center 58% !important;
}
.photo-hotel-vik {
  background-image: url("/assets/images/destinations/vik-church-landscape.webp") !important;
  background-position: center 54% !important;
}
@media (max-width: 980px) {
  .entry-hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    min-width: 0;
    max-width: 100%;
  }
  .entry-hero-copy {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    padding: 52px 0 36px;
  }
  .entry-hero-copy > p:not(.breadcrumbs),
  .entry-hero-copy h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .entry-hero-media {
    min-width: 0;
    max-width: 100%;
    min-height: 330px;
  }
  .entry-hero-media::after {
    display: none;
  }
  .entry-hero-media::before {
    background: linear-gradient(
      180deg,
      var(--ice-navy) 0,
      rgba(11, 34, 48, 0.08) 35%,
      transparent 75%
    );
  }
  .priority-grid,
  .preview-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .money-band {
    grid-template-columns: 1fr;
  }
  .route-row {
    grid-template-columns: 90px minmax(0, 1fr) auto;
  }
}
@media (max-width: 640px) {
  .entry-section {
    padding: 48px 0;
  }
  .entry-hero-copy {
    padding: 38px 0 28px;
  }
  .entry-hero h1 {
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -0.045em;
  }
  .entry-hero-copy > p:not(.breadcrumbs) {
    font-size: 15px;
  }
  .entry-hero-media {
    min-height: 245px;
  }
  .entry-section-head {
    display: block;
  }
  .priority-grid,
  .decision-grid,
  .compact-grid,
  .preview-strip,
  .arrival-decision ol {
    grid-template-columns: 1fr;
  }
  .priority-card {
    min-height: 245px;
  }
  .preview-tile {
    min-height: 190px;
  }
  .route-row {
    grid-template-columns: 1fr auto;
    gap: 4px 12px;
  }
  .route-row .route-tag {
    grid-column: 1/-1;
  }
  .money-band {
    padding: 26px 22px;
  }
  .arrival-decision {
    margin-left: -2px;
    margin-right: -2px;
    padding: 22px 18px;
  }
  .arrival-decision li {
    min-height: 0;
  }
  .entry-jump {
    margin-right: -14px;
    padding-right: 14px;
  }
}
