:root {
  --snow: #fbfaf7;
  --paper: #ffffff;
  --ink: #111f34;
  --navy: #10233a;
  --navy-deep: #09182b;
  --river: #1b6887;
  --canyon: #20a9b5;
  --aurora: #2eac77;
  --aurora-glow: #51d99b;
  --mist: #edf5f7;
  --muted: #556274;
  --border: #d9e0e6;
  --danger: #a32a2a;
  --radius: 18px;
  --shadow-card: 0 1px 2px rgba(16, 35, 58, .06), 0 12px 28px -12px rgba(16, 35, 58, .2);
  --shadow-raised: 0 6px 18px rgba(16, 35, 58, .1), 0 28px 54px -22px rgba(16, 35, 58, .28);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-height: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--snow);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-is-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  letter-spacing: -.018em;
  line-height: 1.08;
}
h1 { font-size: clamp(2.7rem, 5.1vw, 4.75rem); }
h2 { font-size: clamp(2.05rem, 3.25vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }
p { margin: 0; }
::selection { background: rgba(46, 172, 119, .28); }
:focus-visible { outline: 3px solid var(--aurora); outline-offset: 3px; }

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  clip: auto;
  margin: 0;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--navy);
  box-shadow: var(--shadow-raised);
}
.wide-container { width: min(100% - 48px, 1280px); margin-inline: auto; }
.prose-container { width: min(100% - 40px, 760px); margin-inline: auto; }
.section { padding-block: 88px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--river);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 18px; height: 1px; background: currentColor; }
.eyebrow--light { color: var(--aurora-glow); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.3;
  transition: background-color .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}
.button:hover { transform: translateY(-1px); }
.button--aurora { background: var(--aurora); color: var(--navy-deep); }
.button--aurora:hover { background: var(--aurora-glow); }
.button--navy { background: var(--navy); color: var(--snow); }
.button--navy:hover { background: var(--river); }
.button--outline { border-color: rgba(16, 35, 58, .3); color: var(--navy); }
.button--outline:hover { border-color: var(--river); color: var(--river); }
.button--glass { border-color: rgba(255, 255, 255, .5); background: rgba(255, 255, 255, .1); color: var(--snow); backdrop-filter: blur(8px); }
.button--glass:hover { background: rgba(255, 255, 255, .2); }
.button--outline-light { border-color: rgba(255, 255, 255, .5); color: var(--snow); }

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(217, 224, 230, .72);
  background: rgba(251, 250, 247, .9);
  backdrop-filter: blur(16px);
}
.site-header__inner { display: flex; min-height: var(--header-height); align-items: center; gap: 24px; }
.site-brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 10px; }
.site-brand__mark,
.site-footer__brand > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--snow);
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
}
.site-brand__custom-logo img { width: auto; max-width: 150px; max-height: 42px; }
.site-brand__name { color: var(--navy); font-family: var(--font-display); font-size: 1.08rem; font-weight: 650; line-height: 1; }
.site-brand__name span { display: block; margin-top: 5px; color: var(--river); font-family: var(--font-body); font-size: .58rem; font-weight: 650; letter-spacing: .21em; text-transform: uppercase; }
.desktop-navigation { min-width: 0; margin-left: auto; }
.primary-menu, .mobile-menu { padding: 0; margin: 0; list-style: none; }
.primary-menu { display: flex; align-items: center; gap: clamp(14px, 1.55vw, 26px); }
.primary-menu a { display: inline-flex; padding-block: 21px; color: rgba(17, 31, 52, .78); font-size: .8rem; font-weight: 600; white-space: nowrap; }
.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current-category-ancestor > a { color: var(--river); }
.site-header__cta { flex: 0 0 auto; padding-inline: 17px; white-space: nowrap; }
.menu-toggle { display: none; width: 42px; height: 42px; place-items: center; padding: 0; border: 0; border-radius: 8px; background: transparent; color: var(--navy); }
.menu-toggle svg { width: 24px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 2; }
.menu-toggle__close { display: none; }
.menu-toggle[aria-expanded="true"] .menu-toggle__open { display: none; }
.menu-toggle[aria-expanded="true"] .menu-toggle__close { display: block; }
.mobile-navigation { border-top: 1px solid var(--border); background: var(--snow); }
.mobile-navigation[hidden] { display: none; }
.mobile-navigation nav { max-height: calc(100vh - var(--header-height)); overflow-y: auto; padding-block: 14px 22px; }
.mobile-menu a { display: block; padding: 9px 2px; color: rgba(17, 31, 52, .8); font-size: .9rem; font-weight: 600; }
.mobile-navigation__cta { width: 100%; margin-top: 10px; }

/* Homepage */
.home-hero { position: relative; isolation: isolate; min-height: calc(88vh - var(--header-height)); display: flex; align-items: flex-end; overflow: hidden; background: var(--navy-deep); }
.home-hero__image, .home-hero__overlay { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.home-hero__overlay { z-index: -1; background: linear-gradient(180deg, rgba(9, 24, 43, .03), rgba(9, 24, 43, .52) 58%, rgba(9, 24, 43, .9)); }
.home-hero__content { padding-block: 128px 80px; color: var(--snow); }
.home-hero h1 { max-width: 810px; margin-top: 16px; color: var(--snow); font-size: clamp(3.3rem, 6.1vw, 5.8rem); }
.home-hero__intro { max-width: 715px; margin-top: 22px; color: rgba(251, 250, 247, .86); font-size: 1.1rem; line-height: 1.75; }
.home-hero__intro p + p { margin-top: 14px; }
.section-intro--split { display: grid; grid-template-columns: minmax(260px, .8fr) minmax(0, 1.45fr); align-items: end; gap: 72px; }
.section-intro h2, .section-heading h2 { margin-top: 10px; }
.section-intro--split > p { color: var(--muted); font-size: 1.08rem; line-height: 1.8; }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 25px; margin-top: 48px; }
.feature-card, .post-card, .tour-card {
  overflow: hidden;
  border: 1px solid rgba(217, 224, 230, .75);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-card);
  transition: transform .32s ease, box-shadow .32s ease;
}
.feature-card:hover, .post-card:hover, .tour-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-raised); }
.feature-card > img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .65s ease; }
.feature-card:hover > img { transform: scale(1.035); }
.feature-card__body { display: flex; flex-direction: column; align-items: flex-start; padding: 24px; }
.feature-card__icon { color: var(--river); font-size: 1.2rem; }
.feature-card strong { margin-top: 7px; color: var(--navy); font-family: var(--font-display); font-size: 1.28rem; line-height: 1.25; }
.feature-card__body > span:not(.feature-card__icon) { margin-top: 9px; color: var(--muted); font-size: .875rem; line-height: 1.65; }
.feature-card em { margin-top: 16px; color: var(--river); font-size: .82rem; font-style: normal; font-weight: 700; }
.river-feature, .latest-guides, .related-guides { background: var(--mist); }
.river-feature__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; padding-block: 88px; }
.river-feature__grid > img { width: 100%; height: 430px; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow-card); }
.river-feature h2 { margin-top: 12px; }
.river-feature p:not(.eyebrow) { margin-top: 22px; color: var(--muted); line-height: 1.8; }
.aurora-feature { position: relative; isolation: isolate; overflow: hidden; background: var(--navy-deep); color: var(--snow); }
.aurora-feature > img, .aurora-feature__overlay { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.aurora-feature__overlay { z-index: -1; background: linear-gradient(180deg, rgba(9, 24, 43, .76), rgba(9, 24, 43, .55), rgba(9, 24, 43, .96)); opacity: 1; }
.aurora-feature__content { padding-block: 98px; }
.aurora-feature h2 { max-width: 760px; margin-top: 12px; color: var(--snow); }
.aurora-feature p:not(.eyebrow) { max-width: 700px; margin-top: 20px; color: rgba(251, 250, 247, .82); font-size: 1.05rem; line-height: 1.8; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.section-heading > a { color: var(--river); font-size: .87rem; font-weight: 700; }
.topic-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 40px; }
.topic-card { position: relative; isolation: isolate; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius); color: var(--snow); }
.topic-card > img, .topic-card__overlay { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.topic-card__overlay { z-index: -1; background: linear-gradient(0deg, rgba(9, 24, 43, .9), rgba(9, 24, 43, .22) 70%, transparent); }
.topic-card:hover > img { transform: scale(1.045); }
.topic-card__content { position: absolute; inset: auto 0 0; display: flex; flex-direction: column; padding: 24px; }
.topic-card strong { font-family: var(--font-display); font-size: 1.45rem; line-height: 1.2; }
.topic-card__content > span { margin-top: 5px; color: rgba(251, 250, 247, .82); font-size: .8rem; line-height: 1.5; }
.latest-guides .section-heading + .post-grid { margin-top: 40px; }

/* Cards and archives */
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.post-card { display: flex; min-width: 0; flex-direction: column; }
.post-card__image { display: block; overflow: hidden; aspect-ratio: 16 / 10; background: var(--mist); }
.post-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.post-card:hover .post-card__image img { transform: scale(1.04); }
.post-card__body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 25px; }
.post-card__title { margin-top: 12px; font-size: 1.3rem; line-height: 1.28; }
.post-card__title a:hover { color: var(--river); }
.post-card__excerpt { display: -webkit-box; overflow: hidden; margin-top: 12px; color: var(--muted); font-size: .88rem; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.post-card__meta { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 15px; margin-top: auto; padding-top: 22px; color: var(--muted); font-size: .75rem; }
.post-card__meta a { color: var(--river); font-weight: 700; }
.archive-intro { padding-block: 72px 42px; }
.archive-intro h1 { margin-top: 11px; }
.archive-intro > p:not(.eyebrow), .archive-intro__description { max-width: 740px; margin-top: 20px; color: var(--muted); font-size: 1.05rem; line-height: 1.8; }
.category-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.category-chips a { padding: 6px 15px; border: 1px solid var(--border); border-radius: 999px; background: var(--paper); font-size: .8rem; }
.category-chips a:hover { border-color: var(--river); color: var(--river); }
.archive-content { padding-block: 10px 90px; }
.archive-content--category { padding-top: 72px; }
.pagination, .navigation.pagination { margin-top: 52px; }
.pagination .nav-links, .pagination .page-numbers { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; padding: 0; list-style: none; }
.pagination a, .pagination span, .pagination .page-numbers a, .pagination .page-numbers span { display: inline-flex; min-width: 40px; height: 40px; align-items: center; justify-content: center; padding-inline: 13px; border: 1px solid var(--border); border-radius: 999px; background: var(--paper); font-size: .82rem; }
.pagination .current { border-color: var(--navy); background: var(--navy); color: var(--snow); }
.empty-state { grid-column: 1 / -1; padding: 32px; border: 1px dashed var(--border); border-radius: var(--radius); color: var(--muted); text-align: center; }
.featured-guide { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 55px; margin-bottom: 64px; }
.featured-guide__image { overflow: hidden; border-radius: 28px; box-shadow: var(--shadow-card); }
.featured-guide__image img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.featured-guide h2 { margin-top: 12px; font-size: clamp(2rem, 3vw, 2.8rem); }
.featured-guide h2 a:hover { color: var(--river); }
.featured-guide p:not(.eyebrow) { margin-top: 18px; color: var(--muted); }
.featured-guide .button { margin-top: 24px; }

/* Image hero */
.image-hero { position: relative; isolation: isolate; overflow: hidden; background: var(--navy-deep); color: var(--snow); }
.image-hero > img, .image-hero__overlay { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.image-hero__overlay { z-index: -1; background: linear-gradient(180deg, rgba(9, 24, 43, .5), rgba(9, 24, 43, .9)); }
.image-hero__content { padding-block: 88px; }
.image-hero h1 { max-width: 1040px; margin-top: 12px; color: var(--snow); }
.image-hero__description { max-width: 760px; margin-top: 20px; color: rgba(251, 250, 247, .85); font-size: 1.04rem; }
.image-hero__description p + p { margin-top: 12px; }
.image-hero--single .image-hero__content { padding-block: 88px 96px; }
.image-hero--single .image-hero__overlay { background: linear-gradient(180deg, rgba(9, 24, 43, .35), rgba(9, 24, 43, .9)); }
.image-hero--single h1 { margin-top: 15px; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-bottom: 20px; font-size: .74rem; }
.breadcrumbs--light { color: rgba(251, 250, 247, .72); }
.breadcrumbs a:hover { color: var(--aurora-glow); }
.single-guide__meta { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 22px; color: rgba(251, 250, 247, .78); font-size: .83rem; }

/* Prose and single guides */
.prose-page { padding-block: 72px 92px; }
.prose-page > h1 { margin-top: 10px; }
.prose-page__image { margin: 38px 0; }
.prose-page__image img { width: 100%; max-height: 480px; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow-card); }
.prose-content { color: rgba(17, 31, 52, .9); font-size: 1.01rem; line-height: 1.82; }
.prose-content > *:first-child { margin-top: 0; }
.prose-content p { margin: 0 0 24px; }
.prose-content h2 { margin: 46px 0 16px; font-size: 2rem; }
.prose-content h3 { margin: 36px 0 13px; font-size: 1.5rem; }
.prose-content ul, .prose-content ol { margin: 0 0 26px; padding-left: 25px; }
.prose-content li + li { margin-top: 7px; }
.prose-content a { color: var(--river); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.prose-content a:hover { color: var(--aurora); }
.prose-content blockquote { margin: 34px 0; padding: 2px 0 2px 23px; border-left: 4px solid var(--aurora); color: rgba(17, 31, 52, .8); font-family: var(--font-display); font-size: 1.15rem; font-style: italic; }
.prose-content .callout { margin: 34px 0; padding: 24px; border: 1px solid rgba(46, 172, 119, .35); border-radius: var(--radius); background: rgba(46, 172, 119, .06); }
.prose-content .callout p:last-child { margin-bottom: 0; }
.prose-content figure { margin: 34px 0; }
.prose-content figure img { width: 100%; border-radius: 15px; }
.prose-content figcaption { margin-top: 8px; color: var(--muted); font-size: .78rem; text-align: center; }
.prose-content table { width: 100%; margin: 32px 0; border-collapse: collapse; border: 1px solid var(--border); background: var(--paper); font-size: .88rem; }
.prose-content th, .prose-content td { padding: 12px 14px; border: 1px solid var(--border); text-align: left; vertical-align: top; }
.prose-content th { background: var(--mist); color: var(--navy); font-weight: 700; }
.single-guide__layout { display: grid; grid-template-columns: minmax(0, 760px) minmax(240px, 310px); justify-content: center; gap: 74px; padding-block: 72px 88px; }
.integration-slot { margin: 34px 0; padding: 23px; border: 1px dashed #d9e0e6; border-radius: var(--radius); background: rgba(237, 245, 247, .7); color: var(--muted); text-align: center; }
.integration-slot__eyebrow { margin-bottom: 5px !important; color: var(--river); font-size: .65rem !important; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.integration-slot h2 { margin: 0 !important; font-size: 1.08rem !important; }
.integration-slot p:last-child { margin: 8px 0 0 !important; font-size: .78rem !important; line-height: 1.55; }
.hotel-info { margin-bottom: 36px; padding: 25px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-card); }
.hotel-info h2 { margin-top: 6px; font-size: 1.65rem; }
.hotel-info > p:not(.eyebrow) { margin-top: 5px; color: var(--muted); font-size: .85rem; }
.hotel-info ul { margin: 17px 0 0; font-size: .88rem; }
.hotel-info .integration-slot { margin-bottom: 0; }
.guide-sidebar { min-width: 0; }
.guide-sidebar,
.guide-sidebar > *,
.guide-sidebar .wp-block-group,
.guide-sidebar .wp-block-group__inner-container { max-width: 100%; min-width: 0; overflow-wrap: anywhere; }
.guide-sidebar > * { position: relative; }
.guide-widget, .guide-sidebar > .integration-slot { margin: 0 0 24px; padding: 22px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-card); text-align: left; }
.guide-widget__title { margin-top: 8px; font-size: 1.35rem; }
.guide-widget ul { padding: 0; margin: 18px 0 0; list-style: none; }
.guide-widget li + li { margin-top: 8px; }
.guide-widget a { color: var(--river); font-size: .84rem; font-weight: 600; }
.guide-sidebar > .integration-slot h2 { font-size: 1.1rem !important; }
.share-tools { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-top: 46px; padding-top: 27px; border-top: 1px solid var(--border); }
.share-tools > span:first-child { margin-right: 4px; color: var(--muted); font-size: .82rem; font-weight: 600; }
.share-tools a, .share-tools button { padding: 7px 12px; border: 1px solid var(--border); border-radius: 999px; background: transparent; color: var(--ink); font-size: .73rem; text-decoration: none; }
.share-tools a:hover, .share-tools button:hover { border-color: var(--river); color: var(--river); }
.share-tools__status { flex-basis: 100%; min-height: 1.3em; color: var(--river); font-size: .75rem; }
.post-navigation { margin-top: 34px; }
.post-navigation .nav-links { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.post-navigation a { display: flex; height: 100%; flex-direction: column; padding: 17px; border: 1px solid var(--border); border-radius: 14px; background: var(--paper); text-decoration: none; }
.post-navigation .nav-next { text-align: right; }
.post-navigation span { color: var(--muted); font-size: .7rem; }
.post-navigation strong { margin-top: 4px; color: var(--navy); font-family: var(--font-display); font-size: 1rem; line-height: 1.35; }
.related-guides h2 { margin-top: 10px; }
.related-guides .post-grid { margin-top: 34px; }

/* Newsletter, tours, contact */
.newsletter { border-block: 1px solid rgba(217, 224, 230, .8); background: var(--mist); }
.newsletter__inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; padding-block: 58px; }
.newsletter h2 { margin-top: 10px; font-size: 2.2rem; }
.newsletter h2 + p { max-width: 520px; margin-top: 12px; color: var(--muted); }
.newsletter__form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
.newsletter__form input, .newsletter__form button { min-height: 46px; border-radius: 999px; }
.newsletter__form input { width: 100%; padding: 10px 18px; border: 1px solid var(--border); background: rgba(255, 255, 255, .72); }
.newsletter__form button { padding: 10px 22px; border: 0; background: #556274; color: var(--snow); font-weight: 700; cursor: not-allowed; }
.newsletter__status { grid-column: 1 / -1; color: var(--muted); font-size: .73rem; }
.tour-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.tour-card { display: flex; flex-direction: column; }
.tour-card > img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.tour-card > div { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.tour-card h2 { font-size: 1.4rem; }
.tour-card h2 + p { margin-top: 10px; color: var(--muted); font-size: .87rem; }
.tour-card .integration-slot { margin: auto 0 0; margin-top: 22px; }
.contact-page { max-width: 760px; padding-block: 72px 94px; }
.contact-page h1 { margin-top: 10px; }
.contact-page__intro { margin-top: 18px; }
.contact-form { display: grid; gap: 18px; margin-top: 34px; }
.contact-form > div { display: grid; gap: 6px; }
.contact-form label { color: var(--navy); font-size: .82rem; font-weight: 700; }
.contact-form input, .contact-form textarea { width: 100%; padding: 11px 13px; border: 1px solid var(--border); border-radius: 9px; background: var(--paper); color: var(--ink); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--river); outline: 3px solid rgba(27, 104, 135, .15); }
.contact-form__honeypot { position: absolute; left: -10000px; }
.contact-form .button { justify-self: start; }
.form-unconfigured, .form-notice { margin-top: 28px; padding: 20px; border-radius: 13px; }
.form-unconfigured { border: 1px dashed #d9e0e6; background: var(--mist); }
.form-unconfigured h2 { font-size: 1.25rem; }
.form-unconfigured p { margin-top: 7px; color: var(--muted); font-size: .85rem; }
.form-notice--success { border: 1px solid rgba(46, 172, 119, .4); background: rgba(46, 172, 119, .08); }
.form-notice--error { border: 1px solid rgba(163, 42, 42, .35); background: rgba(163, 42, 42, .07); color: var(--danger); }

/* 404 */
.not-found { position: relative; isolation: isolate; display: grid; min-height: calc(75vh - var(--header-height)); place-items: center; overflow: hidden; background: var(--navy-deep); color: var(--snow); }
.not-found__aurora { position: absolute; z-index: -1; inset: -30%; background: radial-gradient(ellipse at 30% 45%, rgba(46, 172, 119, .45), transparent 42%), radial-gradient(ellipse at 70% 30%, rgba(32, 169, 181, .34), transparent 40%); filter: blur(30px); }
.not-found__content { width: min(100% - 40px, 700px); padding-block: 80px; text-align: center; }
.not-found h1 { margin-top: 10px; color: var(--snow); font-size: clamp(5.5rem, 16vw, 10rem); }
.not-found p:not(.eyebrow) { max-width: 530px; margin: 13px auto 0; color: rgba(251, 250, 247, .78); }
.not-found .button-row { justify-content: center; }

/* Footer */
.site-footer { margin-top: 0; background: var(--navy-deep); color: rgba(251, 250, 247, .7); }
.site-footer__grid { display: grid; grid-template-columns: 1.15fr .8fr .8fr 1.25fr; gap: 55px; padding-block: 68px; }
.site-footer__brand { display: flex; align-items: center; gap: 10px; color: var(--snow); }
.site-footer__brand > span { background: var(--aurora); color: var(--navy-deep); }
.site-footer__brand strong { font-family: var(--font-display); font-size: 1.1rem; }
.site-footer__grid p { margin-top: 16px; font-size: .8rem; line-height: 1.75; }
.site-footer h2 { color: var(--aurora-glow); font-family: var(--font-body); font-size: .68rem; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.site-footer ul { padding: 0; margin: 17px 0 0; list-style: none; }
.site-footer li + li { margin-top: 7px; }
.site-footer li a { font-size: .78rem; }
.site-footer a:hover { color: var(--aurora-glow); }
.site-footer__lower { border-top: 1px solid rgba(251, 250, 247, .1); }
.site-footer__legal { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-block: 23px; font-size: .68rem; }
.site-footer__legal > p { max-width: 580px; }
.site-footer__legal > div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.site-footer__slogan { padding: 0 24px 30px; color: var(--aurora-glow); font-family: var(--font-display); font-size: 1.5rem; text-align: center; }

@media (max-width: 1180px) {
  .desktop-navigation, .site-header__cta { display: none; }
  .menu-toggle { display: grid; margin-left: auto; }
  .single-guide__layout { gap: 45px; }
}

@media (max-width: 900px) {
  .feature-grid, .topic-grid, .post-grid, .tour-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-intro--split, .river-feature__grid, .featured-guide { grid-template-columns: 1fr; gap: 35px; }
  .river-feature__grid > img { height: min(55vw, 430px); }
  .single-guide__layout { grid-template-columns: minmax(0, 760px); }
  .guide-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .guide-sidebar > * { margin-bottom: 0; }
  .newsletter__inner { grid-template-columns: 1fr; gap: 28px; }
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .wide-container { width: min(100% - 32px, 1280px); }
  .section { padding-block: 64px; }
  .site-brand__name { font-size: 1rem; }
  .home-hero { min-height: 740px; }
  .home-hero__content { padding-block: 100px 58px; }
  .home-hero h1 { font-size: clamp(3rem, 14vw, 4.4rem); }
  .home-hero__intro { font-size: 1rem; }
  .home-hero .button-row .button { flex: 1 1 160px; }
  .feature-grid, .topic-grid, .post-grid, .tour-grid { grid-template-columns: 1fr; }
  .section-intro--split { gap: 20px; }
  .river-feature__grid { padding-block: 64px; }
  .river-feature__grid > img { height: 310px; }
  .aurora-feature__content { padding-block: 74px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 13px; }
  .topic-card { aspect-ratio: 5 / 4; }
  .archive-intro { padding-block: 55px 34px; }
  .archive-content { padding-bottom: 70px; }
  .archive-content--category { padding-top: 52px; }
  .image-hero__content, .image-hero--single .image-hero__content { padding-block: 64px; }
  .image-hero--single h1 { font-size: 2.7rem; }
  .single-guide__layout { padding-block: 55px 68px; }
  .guide-sidebar { grid-template-columns: 1fr; }
  .guide-sidebar .wp-block-search__inside-wrapper { flex-wrap: wrap; }
  .guide-sidebar .wp-block-search__input { width: 100%; min-width: 0; flex: 1 1 100%; }
  .guide-sidebar .wp-block-search__button { width: 100%; margin: 8px 0 0; }
  .prose-content { font-size: .98rem; }
  .prose-content h2 { font-size: 1.75rem; }
  .prose-content table { display: block; max-width: 100%; overflow-x: auto; }
  .post-navigation .nav-links { grid-template-columns: 1fr; }
  .newsletter__inner { padding-block: 50px; }
  .newsletter__form { grid-template-columns: 1fr; }
  .newsletter__status { grid-column: 1; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 38px; padding-block: 55px; }
  .site-footer__legal { align-items: flex-start; flex-direction: column; }
  .site-footer__legal > div { justify-content: flex-start; }
  .featured-guide { margin-bottom: 50px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}


/* Visit Whitehorse deployment refinements, 2026-08-22 */
.category-deep-dive {
  padding-block: clamp(64px, 8vw, 96px);
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--mist), var(--snow));
}
.category-deep-dive h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
}
.category-deep-dive p:last-child { margin-bottom: 0; }

.not-found__image,
.not-found__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.not-found__image {
  z-index: -3;
  object-fit: cover;
}
.not-found__shade {
  z-index: -2;
  background: linear-gradient(180deg, rgba(9, 24, 43, .62), rgba(9, 24, 43, .92));
}
.not-found__topics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 28px;
}
.not-found__topics a {
  color: var(--snow);
  font-size: .82rem;
  font-weight: 700;
  text-underline-offset: 4px;
}
.not-found__topics a:hover { color: var(--aurora-glow); }

body.wp-theme-visit-whitehorse .travelspark-surface {
  --ts-primary-color: #10233a;
  --ts-accent-color: #2eac77;
  --ts-button-bg: #2eac77;
  --ts-button-text: #09182b;
  --ts-card-bg: #ffffff;
  --ts-card-border: #d9e0e6;
  --ts-card-radius: 18px;
  --ts-card-shadow: var(--shadow-card);
}
body.wp-theme-visit-whitehorse .travelspark-surface h1,
body.wp-theme-visit-whitehorse .travelspark-surface h2,
body.wp-theme-visit-whitehorse .travelspark-surface h3 {
  font-family: var(--font-display);
}
body.wp-theme-visit-whitehorse .travelspark-surface .travelspark-card__button,
body.wp-theme-visit-whitehorse .travelspark-surface .travelspark-live-search__form button {
  border-color: transparent;
  background: var(--aurora);
  color: var(--navy-deep);
}
body.wp-theme-visit-whitehorse .travelspark-surface .travelspark-card__button:hover,
body.wp-theme-visit-whitehorse .travelspark-surface .travelspark-live-search__form button:hover {
  background: var(--aurora-glow);
}

@media (max-width: 600px) {
  .not-found__content { padding-block: 64px; }
  .not-found .button-row { display: grid; }
  .not-found__topics { gap: 10px 16px; }
}


/* Visit Whitehorse graphical logo placements, 2026-08-22 */
.site-brand__emblem,
.site-footer__brand > img {
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
}
.site-brand__emblem img,
.site-footer__brand > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 480px) {
  .site-brand__emblem { width: 38px; height: 38px; }
}


/* Footer emblem size correction */
.site-footer__brand > img {
  width: 42px;
  height: 42px;
}


/* Self-hosted site typography */
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}


/* Keep the TravelSpark Tours headline within two lines at the acceptance viewport. */
@media (max-width: 600px) {
  body.wp-theme-visit-whitehorse .travelspark-tours-index__hero h1 {
    font-size: 31px;
    line-height: 1.05;
    letter-spacing: -.03em;
  }
}


/* Readable mobile scale for long editorial titles. */
@media (max-width: 600px) {
  .image-hero--single h1 {
    font-size: 34px;
    line-height: 1.08;
  }
}


/* Approved Brevo signup and retained Gutenberg layout minimums, 2026-08-22 */
.wp-element-button { cursor: pointer; }
.aligncenter { clear: both; }
html :where(img[class*="wp-image-"]) { height: auto; max-width: 100%; }
body .is-layout-flex { display: flex; }
.is-layout-flex { flex-wrap: wrap; align-items: center; gap: .5em; }
body .is-layout-grid { display: grid; }
.is-layout-grid { gap: .5em; }

.newsletter__form--live { display: block; }
.newsletter__form--live .sib_signup_form,
.newsletter__form--live .sib_signup_box_inside_1 { margin: 0; }
.newsletter__form--live .sib_signup_box_inside_1 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
}
.newsletter__form--live .visit-whitehorse-newsletter-email,
.newsletter__form--live .visit-whitehorse-newsletter-submit { margin: 0; }
.newsletter__form--live .visit-whitehorse-newsletter-email label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-deep);
  font-size: .78rem;
  font-weight: 700;
}
.newsletter__form--live input[type="email"] {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--snow);
  color: var(--navy-deep);
}
.newsletter__form--live input[type="submit"] {
  min-height: 48px;
  padding: 10px 22px;
  border: 0;
  border-radius: 8px;
  background: var(--aurora);
  color: var(--navy-deep);
  font-weight: 800;
  cursor: pointer;
}
.newsletter__form--live input[type="submit"]:hover,
.newsletter__form--live input[type="submit"]:focus-visible { background: var(--aurora-glow); }
.newsletter__form--live .visit-whitehorse-newsletter-honeypot { display: none !important; }
.newsletter__form--live .sib_loader,
.newsletter__form--live .sib_msg_disp,
.newsletter__form--live .newsletter__status { grid-column: 1 / -1; }
.newsletter__form--live .sib_msg_disp:empty { display: none; }
.newsletter__form--live .newsletter__status { margin: 10px 0 0; }

@media (max-width: 600px) {
  .newsletter__form--live .sib_signup_box_inside_1 { grid-template-columns: 1fr; }
  .newsletter__form--live input[type="submit"] { width: 100%; }
}

/* Visit Whitehorse visual review refinements, 2026-08-22 */
.site-header__inner { gap: clamp(18px, 1.6vw, 26px); }
.site-brand { gap: 13px; }
.site-brand__emblem { width: 52px; height: 52px; }
.site-brand__emblem img { width: 100%; height: 100%; }
.site-brand__name { line-height: 1; }
.site-brand__wordmark {
  display: block;
  color: var(--navy);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 1.6vw, 1.48rem);
  font-weight: 700;
  letter-spacing: -.025em;
  white-space: nowrap;
}
.site-brand__name .site-brand__location {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 7px;
  color: var(--river);
  font-family: var(--font-body);
  font-size: .61rem;
  font-weight: 750;
  letter-spacing: .19em;
  line-height: 1;
  text-transform: uppercase;
}
.site-brand__name .site-brand__location > span {
  display: inline;
  margin: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}
.site-brand__leaf { display: block; flex: 0 0 auto; width: 13px; height: 13px; fill: var(--danger); }
.site-footer__brand { gap: 15px; }
.site-footer__brand > img { width: 58px; height: 58px; }
.site-footer__brand strong {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 1.48rem;
  font-weight: 700;
  letter-spacing: -.02em;
}
.button--aurora,
.button--aurora:visited { color: #fff; text-shadow: 0 1px 1px rgba(0, 0, 0, .16); }
.button--aurora:hover,
.button--aurora:focus-visible { color: #fff; }
body.wp-theme-visit-whitehorse .travelspark-surface { --ts-button-text: #ffffff; }
body.wp-theme-visit-whitehorse .travelspark-surface .travelspark-card__button,
body.wp-theme-visit-whitehorse .travelspark-surface .travelspark-live-search__form button,
body.wp-theme-visit-whitehorse .travelspark-surface .travelspark-card__button:visited { color: #fff; }
.newsletter__form--live input[type="submit"] { color: #fff; }

.single-guide__layout {
  grid-template-columns: minmax(0, 760px) minmax(286px, 330px);
  gap: clamp(52px, 5.5vw, 78px);
}
.guide-sidebar--northern { min-width: 0; align-self: start; }
.northern-sidebar__intro,
.northern-sidebar__fallback {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  padding: 27px;
  border: 1px solid rgba(81, 217, 155, .24);
  border-radius: 24px;
  background: radial-gradient(circle at 88% 5%, rgba(81, 217, 155, .22), transparent 33%), linear-gradient(155deg, #071b31 0%, #0d304a 62%, #0b3d45 100%);
  box-shadow: 0 24px 50px -32px rgba(7, 27, 49, .9);
  color: #fff;
}
.northern-sidebar__intro::after {
  position: absolute;
  right: -42px;
  bottom: -66px;
  width: 180px;
  height: 120px;
  border: 1px solid rgba(81, 217, 155, .16);
  border-radius: 50%;
  content: "";
  transform: rotate(-12deg);
}
.northern-sidebar__sky-mark { display: block; width: 80px; height: 42px; margin-bottom: 17px; fill: var(--aurora-glow); }
.northern-sidebar__aurora-line,
.northern-sidebar__river-line { fill: none; stroke-linecap: round; }
.northern-sidebar__aurora-line { stroke: var(--aurora-glow); stroke-width: 2.4; }
.northern-sidebar__river-line { stroke: rgba(255, 255, 255, .45); stroke-width: 1.4; }
.northern-sidebar__intro .eyebrow,
.northern-sidebar__fallback .eyebrow,
.northern-stay-card .eyebrow { color: var(--aurora-glow); }
.northern-sidebar__intro h2,
.northern-sidebar__fallback h2 {
  position: relative;
  z-index: 1;
  margin: 8px 0 12px;
  color: #fff;
  font-size: clamp(1.55rem, 2.3vw, 2rem);
  line-height: 1.05;
}
.northern-sidebar__intro p:last-child,
.northern-sidebar__fallback p:last-of-type {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: .84rem;
  line-height: 1.7;
}
.northern-sidebar__tours { margin-bottom: 24px; }
.guide-sidebar--northern .travelspark-surface--tour-sidebar-widget {
  overflow: hidden;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(81, 217, 155, .2);
  border-radius: 24px;
  background: #071b31;
  box-shadow: 0 24px 50px -32px rgba(7, 27, 49, .9);
}
.guide-sidebar--northern .travelspark-widget__header { padding: 0 0 17px; }
.guide-sidebar--northern .travelspark-widget__title { color: #fff; font-size: 1.38rem; }
.guide-sidebar--northern .travelspark-widget__grid--sidebar { display: grid; grid-template-columns: 1fr; gap: 15px; }
.guide-sidebar--northern .travelspark-card {
  overflow: hidden;
  border: 1px solid rgba(217, 224, 230, .9);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 14px 34px -24px rgba(7, 27, 49, .75);
}
.guide-sidebar--northern .travelspark-card__media,
.guide-sidebar--northern .travelspark-card__image-link { display: block; aspect-ratio: 16 / 10; }
.guide-sidebar--northern .travelspark-card__image { width: 100%; height: 100%; object-fit: cover; }
.guide-sidebar--northern .travelspark-card__content { padding: 15px; }
.guide-sidebar--northern .travelspark-card__title {
  color: var(--navy);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 1.04rem;
  line-height: 1.22;
}
.guide-sidebar--northern .travelspark-card__description { display: none; }
.guide-sidebar--northern .travelspark-card__button {
  width: 100%;
  justify-content: center;
  border-radius: 999px;
  background: var(--aurora);
  color: #fff;
}
.guide-sidebar--northern .travelspark-card__button:hover { background: var(--aurora-glow); color: #fff; }
.northern-sidebar__hotels { margin-bottom: 24px; }
.northern-stay-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--navy-deep);
  box-shadow: 0 24px 52px -30px rgba(7, 27, 49, .85);
  color: #fff;
}
.northern-stay-card > img,
.northern-stay-card__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.northern-stay-card > img { object-fit: cover; }
.northern-stay-card__shade { background: linear-gradient(180deg, rgba(7, 27, 49, .08), rgba(7, 27, 49, .92) 66%, #071b31 100%); }
.northern-stay-card__content { position: absolute; z-index: 1; right: 0; bottom: 0; left: 0; padding: 27px; }
.northern-stay-card h2 { margin: 8px 0 11px; color: #fff; font-size: 1.75rem; line-height: 1.05; }
.northern-stay-card p:not(.eyebrow) { margin: 0 0 18px; color: rgba(255, 255, 255, .78); font-size: .83rem; line-height: 1.65; }
.northern-stay-card .button { width: 100%; }

.prose-content .wp-block-table {
  max-width: 100%;
  margin: 36px 0;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 18px 42px -30px rgba(16, 35, 58, .55);
}
.prose-content table {
  width: 100%;
  min-width: 600px;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 18px;
  background: var(--paper);
  font-size: .88rem;
}
.prose-content th,
.prose-content td {
  padding: 14px 16px;
  border: 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  line-height: 1.55;
}
.prose-content tr > *:last-child { border-right: 0; }
.prose-content tbody tr:last-child > * { border-bottom: 0; }
.prose-content th {
  background: var(--navy);
  color: #fff;
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.prose-content tbody tr:nth-child(even) td { background: rgba(237, 245, 247, .62); }
.prose-content tbody tr:hover td { background: rgba(46, 172, 119, .08); }

@media (max-width: 1180px) {
  .site-brand__wordmark { font-size: 1.25rem; }
  .site-brand__emblem { width: 48px; height: 48px; }
}
@media (max-width: 900px) {
  .single-guide__layout { grid-template-columns: minmax(0, 760px); }
  .guide-sidebar--northern { width: 100%; max-width: 760px; margin-inline: auto; }
}
@media (max-width: 600px) {
  .site-brand { gap: 10px; }
  .site-brand__emblem { width: 46px; height: 46px; }
  .site-brand__wordmark { font-size: 1.13rem; }
  .site-brand__name .site-brand__location { gap: 5px; margin-top: 5px; font-size: .53rem; letter-spacing: .14em; }
  .site-brand__leaf { width: 11px; height: 11px; }
  .northern-sidebar__intro,
  .northern-sidebar__fallback,
  .guide-sidebar--northern .travelspark-surface--tour-sidebar-widget,
  .northern-stay-card__content { padding: 22px; }
  .northern-stay-card { min-height: 350px; }
  .prose-content .wp-block-table { border-radius: 14px; }
  .prose-content table { display: table; min-width: 560px; border-radius: 14px; }
}


/* Recognizable maple leaf glyph, 2026-08-22 */
.site-brand__leaf { width: auto; height: auto; fill: none; font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif; font-size: 13px; font-weight: 400; letter-spacing: 0; line-height: 1; }
@media (max-width: 600px) { .site-brand__leaf { width: auto; height: auto; font-size: 11px; } }


/* Visible maple leaf size correction */
.site-brand__name .site-brand__location .site-brand__leaf { display: inline-flex; width: auto; height: auto; margin: 0; color: inherit; font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif; font-size: 14px; font-weight: 400; letter-spacing: 0; line-height: 1; text-transform: none; }
@media (max-width: 600px) { .site-brand__name .site-brand__location .site-brand__leaf { font-size: 12px; } }

/* Full-detail northern Viator sidebar cards, 2026-08-22 */
.guide-sidebar--northern .travelspark-widget__header {
  margin: 0 0 12px;
  padding: 0 0 11px;
  border-bottom: 1px solid rgba(81, 217, 155, .34);
}
.guide-sidebar--northern .travelspark-widget__title,
.guide-sidebar--northern .travelspark-widget__header .travelspark-widget__title {
  color: #fff !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .22);
}
.guide-sidebar--northern .travelspark-component--cards {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.guide-sidebar--northern .travelspark-widget__grid--sidebar {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.guide-sidebar--northern .travelspark-card {
  display: flex !important;
  width: 100%;
  flex-direction: column;
  grid-template-columns: 1fr !important;
}
.guide-sidebar--northern .travelspark-card__media,
.guide-sidebar--northern .travelspark-card__image-link {
  width: 100%;
  min-width: 0;
}
.guide-sidebar--northern .travelspark-card__content {
  display: flex;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: stretch;
  padding: 16px;
}
.guide-sidebar--northern .travelspark-card__rating {
  display: block;
  margin: 0 0 7px;
  color: var(--river);
  font-size: .76rem;
  font-weight: 750;
  line-height: 1.35;
}
.guide-sidebar--northern .travelspark-card__title {
  display: block;
  margin: 0;
}
.guide-sidebar--northern .travelspark-card__title a {
  color: var(--navy);
  text-decoration: none;
}
.guide-sidebar--northern .travelspark-card__description {
  display: -webkit-box !important;
  margin: 9px 0 13px;
  overflow: hidden;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.guide-sidebar--northern .travelspark-card__footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 0;
}
.guide-sidebar--northern .travelspark-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: var(--muted);
  font-size: .7rem;
}
.guide-sidebar--northern .travelspark-card__price {
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
}
.guide-sidebar--northern .travelspark-card__button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
}


/* Compact Featured Excursions divider gap */
.guide-sidebar--northern .travelspark-widget__header { margin-bottom: 0 !important; }


/* Logical Featured Excursions gap correction */
.guide-sidebar--northern .travelspark-widget__header { margin-bottom: 0 !important; margin-block-end: 0 !important; }


/* Specificity-safe Featured Excursions gap */
.guide-sidebar--northern .travelspark-widget.travelspark-widget .travelspark-widget__header { margin: 0 0 0 !important; margin-block-end: 0 !important; }
