/* Site-specific layout and components. Bulma base lives in critical.css. */
:root {
  --alsnuff-forest: #1a3d32;
  --alsnuff-surface: #f7f8f6;
  --alsnuff-accent: #3d7a5c;
  --alsnuff-label-accent: #4a5d23;
  --alsnuff-border: #e6e9e4;
  --alsnuff-muted: #3a4f47;
  /* Bulma's $navbar-height, see .navbar min-height in critical.css */
  --alsnuff-header-height: 3.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: min(100%, 14rem);
  max-width: 100%;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  box-sizing: border-box;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  text-wrap: balance;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background: var(--alsnuff-accent);
  color: #fff;
}

.btn--primary:hover {
  background: #35704f;
  color: #fff;
}

.btn--white {
  background: #fff;
  color: var(--alsnuff-forest);
}

.btn--white:hover {
  background: #f4f7f4;
  color: var(--alsnuff-forest);
}

.btn__icon {
  width: 1.1rem;
  height: 1.1rem;
}

.columns {
  display: flex;
  flex-wrap: wrap;
}

.columns.is-mobile {
  display: flex;
}

.columns.is-mobile > .column:not(.is-narrow) {
  flex: none;
}

.columns.is-multiline {
  flex-wrap: wrap;
}

.column.is-half-mobile {
  flex: none;
  width: 50%;
}

@media screen and (min-width: 769px) {
  .column.is-one-quarter-tablet {
    flex: none;
    width: 25%;
  }

  .column.is-one-third-tablet {
    flex: none;
    width: 33.3333%;
  }
}

.image.is-4by3 {
  position: relative;
  display: block;
}

.image.is-4by3 img,
.image.is-4by3 picture {
  display: block;
  width: 100%;
  height: auto;
}

.image.is-4by3::before {
  content: '';
  display: block;
  padding-top: 75%;
}

.image.is-4by3 img,
.image.is-4by3 picture img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile navbar */
@media screen and (max-width: 1023px) {
  .navbar-brand {
    flex: 1;
    max-width: 100%;
    align-items: center;
    height: var(--alsnuff-header-height);
    min-height: var(--alsnuff-header-height);
  }

  .navbar-brand > .navbar-item.logo {
    height: var(--alsnuff-header-height);
    padding-top: 0;
    padding-bottom: 0;
    line-height: var(--alsnuff-header-height);
  }

  .navbar-burger {
    margin-left: 0;
    flex: 0 0 auto;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: var(--alsnuff-header-height);
    height: var(--alsnuff-header-height);
  }

  .navbar-burger span {
    position: static;
    left: auto;
    top: auto;
    display: block;
    width: 18px;
    height: 2px;
    margin: 0;
  }

  .navbar-menu.is-active {
    display: block;
  }

  .navbar-burger.is-active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .navbar-burger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .navbar-burger.is-active span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }
}

/* Navbar search trigger — mobile-first: sits with the burger on the right */
.navbar-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: var(--alsnuff-header-height);
  height: var(--alsnuff-header-height);
  min-width: var(--alsnuff-header-height);
  min-height: var(--alsnuff-header-height);
  margin: 0 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.navbar-search:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.navbar-search:active {
  opacity: 0.7;
}

.navbar-search__icon {
  display: block;
}

/* Desktop: search on the far right of the full navbar, nav links keep room */
@media screen and (min-width: 1024px) {
  .navbar-brand > .navbar-item.logo {
    height: var(--alsnuff-header-height);
    padding-top: 0;
    padding-bottom: 0;
    line-height: var(--alsnuff-header-height);
  }

  .navbar-search {
    position: absolute;
    top: 0;
    right: 0.5rem;
    margin-left: 0;
    z-index: 1;
  }

  .navbar-menu {
    padding-right: calc(var(--alsnuff-header-height) + 0.5rem);
  }
}

/* Search dialog — mobile-first full-screen sheet */
.search-dialog {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #2c3328;
}

.search-dialog::backdrop {
  background: rgba(18, 18, 18, 0.55);
}

.search-dialog__panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: env(safe-area-inset-top, 0);
  padding-right: env(safe-area-inset-right, 0);
  padding-bottom: env(safe-area-inset-bottom, 0);
  padding-left: env(safe-area-inset-left, 0);
}

.search-dialog__bar {
  position: sticky;
  top: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    'title close'
    'label label'
    'input input';
  gap: 0.5rem 0.75rem;
  padding: 0.85rem 1rem 0.75rem;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.search-dialog__title {
  grid-area: title;
  margin: 0;
  align-self: center;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
}

.search-dialog__close {
  grid-area: close;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0.35rem;
  background: transparent;
  color: #2c3328;
  cursor: pointer;
}

.search-dialog__close:focus-visible {
  outline: 2px solid #2c3328;
  outline-offset: 2px;
}

.search-dialog__close:active {
  background: rgba(0, 0, 0, 0.06);
}

.search-dialog__label {
  grid-area: label;
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.search-dialog__input {
  grid-area: input;
  width: 100%;
  min-height: 2.75rem;
  margin: 0;
  padding: 0.65rem 0.85rem;
  border: 1px solid #dbdbdb;
  border-radius: 0.4rem;
  font-size: 16px;
  line-height: 1.3;
  color: #2c3328;
  background: #fff;
  -webkit-appearance: none;
  appearance: none;
}

.search-dialog__input:focus {
  outline: 2px solid #2c3328;
  outline-offset: 1px;
  border-color: #2c3328;
}

.search-dialog__status {
  margin: 0;
  padding: 0.75rem 1rem 0;
  min-height: 1.25rem;
  font-size: 0.9rem;
  color: #5a6356;
}

.search-dialog__results {
  flex: 1;
  margin: 0;
  padding: 0.5rem 0 1rem;
  list-style: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.search-dialog__hit {
  display: block;
  min-height: 2.75rem;
  padding: 0.85rem 1rem;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.search-dialog__hit:active,
.search-dialog__hit.is-active,
.search-dialog__hit:focus-visible {
  background: rgba(26, 61, 50, 0.08);
  outline: none;
}

.search-dialog__hit-title {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.search-dialog__hit-place {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.85rem;
  color: #5a6356;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-dialog__hit-desc {
  display: -webkit-box;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  line-height: 1.35;
  color: #5a6356;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  .search-dialog {
    position: fixed;
    inset: 0;
    width: calc(100% - 2rem);
    height: auto;
    max-width: 36rem;
    max-height: min(70vh, 36rem);
    margin: auto;
    border-radius: 0.75rem;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  }

  .search-dialog__panel {
    max-height: min(70vh, 36rem);
  }

  .search-dialog__hit {
    padding: 0.7rem 1rem;
  }
}

/* Site shell */
.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
}

main.site-main {
  padding: 0 !important;
}

.static-page__header {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 0;
}

.static-page__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #2c3328;
}

@media screen and (min-width: 769px) {
  .static-page__title {
    font-size: 2.5rem;
  }
}

.static-page .post-body {
  padding-top: 1.25rem;
}

.static-page--editorial .post-body {
  padding-top: 1.75rem;
}

.page-lead {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.page-lead__text {
  max-width: min(92vw, 52rem);
  margin: 0 auto;
  padding: clamp(1.5rem, 3.5vw, 2.35rem) clamp(1.25rem, 4vw, 2rem);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.45;
  color: #1a2e28;
}

/* Contact form */
.contact-form {
  margin: 1.75rem 0 2.5rem;
  max-width: 36rem;
}

.contact-form__field {
  margin-bottom: 1.15rem;
}

.contact-form__label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2c3328;
}

.contact-form__input,
.contact-form__textarea {
  display: block;
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid #cfd5c6;
  border-radius: 0.5rem;
  background: #fff;
  color: #2c3328;
  font: inherit;
  line-height: 1.4;
  box-sizing: border-box;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: #4a5d23;
  box-shadow: 0 0 0 3px rgba(74, 93, 35, 0.18);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 8rem;
}

.contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 1.25rem 0 1.5rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #3a3f34;
  cursor: pointer;
}

.contact-form__consent input {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  accent-color: #4a5d23;
}

.contact-form__consent a {
  color: #4a5d23;
  text-decoration: underline;
}

.contact-form__actions {
  margin-top: 0.25rem;
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border: none;
  border-radius: 999px;
  background: #4a5d23;
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
}

.contact-form__submit:hover {
  background: #3a4b1b;
}

.contact-form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.contact-form__status {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  color: #3a3f34;
}

.contact-form__status--error {
  color: #9b2c2c;
}

.contact-form__success {
  margin: 1.5rem 0;
  padding: 1rem 1.15rem;
  border-radius: 0.5rem;
  background: rgba(74, 93, 35, 0.1);
  color: #2c3328;
  font-weight: 600;
}

.contact-form__success.is-hidden {
  display: none;
}

.contact-form__success p {
  margin: 0;
}

.site-footer {
  --footer-bg: #f9f9f7;
  --footer-surface: #eef0ea;
  --footer-accent: #4a5d23;
  --footer-text: #3a3f34;
  --footer-muted: #6b7264;
  --footer-border: #dde2d4;
  margin-top: 3rem;
  background: var(--footer-bg);
  color: var(--footer-text);
  border-top: 1px solid var(--footer-border);
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 1.25rem;
}

.site-footer__logo {
  color: var(--footer-accent);
  text-decoration: none;
  line-height: 1.1;
}

.site-footer__logo--large {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 2rem;
}

.site-footer__icon,
.site-footer__stat-icon,
.site-footer__heading-icon-svg,
.site-footer__social-icon,
.site-footer__tour-type-icon,
.site-footer__region-chevron,
.site-footer__newsletter-check-icon,
.site-footer__newsletter-envelope-icon,
.site-footer__bottom-mountain-icon,
.site-footer__back-to-top-icon {
  display: block;
  width: 1.1rem;
  height: 1.1rem;
}

.site-footer__inner > .site-footer__brand {
  margin-bottom: 2rem;
}

.site-footer__stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: 14px;
  background: var(--footer-surface);
}

.site-footer__stats-tagline {
  width: 100%;
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--footer-muted);
  font-weight: 600;
}

.site-footer__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  width: 100%;
}

.site-footer__stat {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.55rem;
  align-items: center;
}

.site-footer__stat-icon-wrap {
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--footer-accent);
}

.site-footer__stat-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.site-footer__stat-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--footer-accent);
  line-height: 1.1;
}

.site-footer__stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--footer-muted);
  font-weight: 600;
}

.site-footer__main {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 1.5rem;
  margin-bottom: 2rem;
}

.site-footer__about {
  margin-bottom: 2rem;
}

.site-footer__description {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--footer-muted);
}

.site-footer__social {
  display: flex;
  gap: 0.65rem;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--footer-border);
  border-radius: 999px;
  color: var(--footer-accent);
  text-decoration: none;
}

.site-footer__social-link:hover {
  background: rgba(74, 93, 35, 0.08);
}

.site-footer__social-icon {
  width: 1rem;
  height: 1rem;
}

.site-footer__heading {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--footer-accent);
  font-weight: 700;
}

.site-footer__heading-icon {
  display: inline-flex;
  color: var(--footer-accent);
}

.site-footer__heading-icon-svg {
  width: 0.95rem;
  height: 0.95rem;
}

.site-footer__region-list,
.site-footer__recent-list,
.site-footer__newsletter-perks {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__region-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-footer__region-list > li {
  border-bottom: 1px solid var(--footer-border);
}

.site-footer__region-list > li:last-child {
  border-bottom: none;
}

.site-footer__region-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0;
  color: var(--footer-text);
  text-decoration: none;
  font-size: 0.92rem;
}

.site-footer__region-link:hover {
  color: var(--footer-accent);
}

.site-footer__region-chevron {
  width: 0.85rem;
  height: 0.85rem;
  color: var(--footer-muted);
  flex-shrink: 0;
}

.site-footer__tour-type-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.site-footer__tour-type {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--footer-border);
  background: #fff;
  color: var(--footer-text);
  text-decoration: none;
  font-size: 0.78rem;
  line-height: 1.2;
}

.site-footer__tour-type:hover {
  border-color: rgba(74, 93, 35, 0.35);
  color: var(--footer-accent);
}

.site-footer__tour-type-icon {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
  color: var(--footer-accent);
}

.site-footer__recent-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-footer__recent-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
}

.site-footer__recent-link:hover .site-footer__recent-title {
  color: var(--footer-accent);
}

.site-footer__recent-thumb {
  width: 4.5rem;
  height: 3.25rem;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: #dde2d4;
}

.site-footer__recent-thumb--placeholder {
  display: block;
}

.site-footer__recent-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.site-footer__recent-title {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
}

.site-footer__recent-more {
  display: block;
  margin-top: 0.25rem;
  padding: 0.65rem 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--footer-accent);
  text-decoration: none;
  border-top: 1px solid var(--footer-border);
}

.site-footer__recent-more:hover {
  color: var(--footer-accent);
  background: rgba(74, 93, 35, 0.06);
  text-decoration: none;
}

.site-footer__newsletter {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--footer-border);
  margin-bottom: 1.5rem;
}

.site-footer__newsletter-visual {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.25rem 1.35rem;
  color: #f4f7ef;
  background:
    linear-gradient(135deg, rgba(29, 49, 29, 0.72), rgba(74, 93, 35, 0.82)),
    linear-gradient(160deg, #6f7f4f, #3f4f22);
}

.site-footer__newsletter-envelope {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
}

.site-footer__newsletter-envelope-icon {
  width: 1.2rem;
  height: 1.2rem;
}

.site-footer__newsletter-copy strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.site-footer__newsletter-copy p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.45;
  opacity: 0.92;
}

.site-footer__newsletter-form-wrap {
  padding: 1.15rem 1.35rem;
  background: #fff;
}

.site-footer__newsletter-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer__newsletter-row {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}

.site-footer__newsletter-input {
  flex: 1;
  min-width: 0;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--footer-border);
  border-radius: 8px;
  font: inherit;
  background: #fafaf8;
}

.site-footer__newsletter-button {
  padding: 0.65rem 1rem;
  border: 0;
  border-radius: 8px;
  background: var(--footer-accent);
  color: #fff;
  font: inherit;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}

.site-footer__newsletter-button:hover {
  filter: brightness(1.05);
}

.site-footer__newsletter-button:disabled {
  cursor: wait;
  opacity: 0.75;
}

.site-footer__newsletter-status {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
}

.site-footer__newsletter-status--success {
  color: #2f6b3f;
}

.site-footer__newsletter-status--error {
  color: #a33;
}

.site-footer__newsletter-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
}

.site-footer__newsletter-perks li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--footer-muted);
}

.site-footer__newsletter-check-icon {
  width: 0.9rem;
  height: 0.9rem;
  color: var(--footer-accent);
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--footer-border);
}

.site-footer__copyright {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.82rem;
  color: var(--footer-muted);
}

.site-footer__bottom-mountain-icon {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--footer-accent);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.site-footer__legal a {
  font-size: 0.82rem;
  color: var(--footer-muted);
  text-decoration: none;
}

.site-footer__legal a:hover {
  color: var(--footer-accent);
}

.site-footer__back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--footer-border);
  border-radius: 999px;
  background: #fff;
  color: var(--footer-accent);
  cursor: pointer;
}

.site-footer__back-to-top:hover {
  background: rgba(74, 93, 35, 0.08);
}

.site-footer__back-to-top-icon {
  width: 1rem;
  height: 1rem;
}

@media (max-width: 1024px) {
  .site-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .site-footer__inner {
    padding: 1.5rem 1rem 1rem;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .site-footer__newsletter {
    grid-template-columns: 1fr;
  }

  .site-footer__newsletter-row {
    flex-direction: column;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      'copyright back'
      'legal legal';
  }

  .site-footer__copyright {
    grid-area: copyright;
  }

  .site-footer__legal {
    grid-area: legal;
  }

  .site-footer__back-to-top {
    grid-area: back;
    justify-self: end;
  }

  .site-footer__tour-type-list {
    gap: 0.55rem;
  }

  .site-footer__tour-type {
    font-size: 1.05rem;
    padding: 0.55rem 0.9rem;
    gap: 0.5rem;
  }

  .site-footer__tour-type-icon {
    width: 1.35rem;
    height: 1.35rem;
  }

  .site-footer__heading {
    font-size: 1rem;
    gap: 0.55rem;
  }

  .site-footer__heading-icon-svg {
    width: 1.2rem;
    height: 1.2rem;
  }

  .site-footer__region-link {
    padding: 0.7rem 0;
  }

  .site-footer__recent-more {
    margin-top: 0.15rem;
    padding: 0.85rem 0;
    font-size: 1.05rem;
  }
}


.meta {
  color: #666;
  font-size: 0.9rem;
  margin: 0.5rem 0 1.5rem 0;
}

.is-pulled-right {
  float: right;
}

.pre-card-container {
  margin-bottom: 1rem;
}

.three-posts {
  margin: 2rem 0 6em;
}

.mentioned-hikes {
  margin: 2rem 0 3rem;
}

.three-posts .title,
.mentioned-hikes .title {
  margin-top: 0;
}

.three-posts .pre-card-container {
  margin-bottom: 1em;
}

.three-posts .card {
  margin-bottom: 1em;
}

@media screen and (min-width: 640px) {
  .mentioned-hikes .home-hike-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

#trackmap {
  border-radius: 8px;
  border: 1px solid #dbdbdb;
}

/* Full-viewport post hero */
body:has(.post-page),
body:has(.home-page),
body:has(.archive-page),
body:has(.static-page--editorial) {
  position: relative;
}

body:has(.post-page) .navbar,
body:has(.home-page) .navbar,
body:has(.archive-page) .navbar,
body:has(.static-page--editorial) .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent !important;
  box-shadow: none;
  z-index: 40;
}

body:has(.post-page) .navbar.navbar--solid,
body:has(.home-page) .navbar.navbar--solid,
body:has(.archive-page) .navbar.navbar--solid,
body:has(.static-page--editorial) .navbar.navbar--solid {
  background: #fff !important;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

body:has(.post-page) .navbar.navbar--solid .navbar-brand > .navbar-item,
body:has(.post-page) .navbar.navbar--solid .navbar-start > .navbar-item,
body:has(.post-page) .navbar.navbar--solid .navbar-start .navbar-link,
body:has(.home-page) .navbar.navbar--solid .navbar-brand > .navbar-item,
body:has(.home-page) .navbar.navbar--solid .navbar-start > .navbar-item,
body:has(.home-page) .navbar.navbar--solid .navbar-start .navbar-link,
body:has(.archive-page) .navbar.navbar--solid .navbar-brand > .navbar-item,
body:has(.archive-page) .navbar.navbar--solid .navbar-start > .navbar-item,
body:has(.archive-page) .navbar.navbar--solid .navbar-start .navbar-link,
body:has(.static-page--editorial) .navbar.navbar--solid .navbar-brand > .navbar-item,
body:has(.static-page--editorial) .navbar.navbar--solid .navbar-start > .navbar-item,
body:has(.static-page--editorial) .navbar.navbar--solid .navbar-start .navbar-link {
  color: #0a0a0a !important;
  text-shadow: none;
}

body:has(.post-page) .navbar.navbar--solid .navbar-burger,
body:has(.home-page) .navbar.navbar--solid .navbar-burger,
body:has(.archive-page) .navbar.navbar--solid .navbar-burger,
body:has(.post-page) .navbar.navbar--solid .navbar-search,
body:has(.home-page) .navbar.navbar--solid .navbar-search,
body:has(.archive-page) .navbar.navbar--solid .navbar-search,
body:has(.static-page--editorial) .navbar.navbar--solid .navbar-burger,
body:has(.static-page--editorial) .navbar.navbar--solid .navbar-search {
  color: #0a0a0a;
}

body:has(.post-page) .navbar .navbar-brand > .navbar-item,
body:has(.post-page) .navbar .navbar-start > .navbar-item,
body:has(.post-page) .navbar .navbar-start .navbar-link,
body:has(.home-page) .navbar .navbar-brand > .navbar-item,
body:has(.home-page) .navbar .navbar-start > .navbar-item,
body:has(.home-page) .navbar .navbar-start .navbar-link,
body:has(.archive-page) .navbar .navbar-brand > .navbar-item,
body:has(.archive-page) .navbar .navbar-start > .navbar-item,
body:has(.archive-page) .navbar .navbar-start .navbar-link,
body:has(.static-page--editorial) .navbar .navbar-brand > .navbar-item,
body:has(.static-page--editorial) .navbar .navbar-start > .navbar-item,
body:has(.static-page--editorial) .navbar .navbar-start .navbar-link {
  color: #fff !important;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

body:has(.post-page) .navbar .navbar-burger,
body:has(.home-page) .navbar .navbar-burger,
body:has(.archive-page) .navbar .navbar-burger,
body:has(.post-page) .navbar .navbar-search,
body:has(.home-page) .navbar .navbar-search,
body:has(.archive-page) .navbar .navbar-search,
body:has(.static-page--editorial) .navbar .navbar-burger,
body:has(.static-page--editorial) .navbar .navbar-search {
  color: #fff;
}

body:has(.post-page) .navbar-menu.is-active,
body:has(.home-page) .navbar-menu.is-active,
body:has(.archive-page) .navbar-menu.is-active,
body:has(.static-page--editorial) .navbar-menu.is-active {
  background: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(8px);
}

main.site-main:has(.post-page),
main.site-main:has(.home-page),
main.site-main:has(.archive-page) {
  padding: 0;
}

.post-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 100svh;
  min-height: 22rem;
  overflow: hidden;
  background: #1a3d32;
}

.post-hero-addendum {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #1a3d32;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.post-hero-addendum__inner {
  max-width: min(92vw, 52rem);
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 1.75rem) clamp(1.25rem, 4vw, 3rem) clamp(1.35rem, 3.5vw, 2rem);
}

.post-hero-addendum__label {
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.post-hero-addendum__text {
  margin: 0;
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

.post-hero__media {
  position: absolute;
  inset: 0;
}

.post-hero__media picture,
.post-hero__img {
  display: block;
  width: 100%;
  height: 100%;
}

.post-hero__img {
  object-fit: cover;
  object-position: center;
}

.post-hero__carousel {
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.post-hero__carousel::-webkit-scrollbar {
  display: none;
}

.post-hero__track {
  display: flex;
  height: 100%;
}

.post-hero__slide {
  flex: 0 0 100%;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.post-hero[data-gallery] .post-hero__slide {
  flex: 0 0 auto;
  min-width: 100%;
  display: flex;
  align-items: stretch;
}

.post-hero[data-gallery] .post-hero__slide picture {
  display: block;
  height: 100%;
  width: auto;
}

.post-hero[data-gallery] .post-hero__slide .post-hero__img {
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.post-hero[data-gallery] .post-hero__slide--wide:first-child {
  scroll-snap-align: center;
}

.post-hero[data-gallery] .post-hero__slide--fit-width picture,
.post-hero[data-gallery] .post-hero__slide--fit-width .post-hero__img {
  width: 100%;
}

.post-hero[data-gallery] .post-hero__slide--fit-width .post-hero__img {
  object-fit: cover;
  object-position: center;
}

.post-hero__slide picture,
.post-hero__slide .post-hero__img {
  width: 100%;
  height: 100%;
}

.post-hero__gallery-open {
  position: absolute;
  top: calc(max(0px, env(safe-area-inset-top, 0px)) + 3.25rem + 0.5rem);
  right: max(0.75rem, env(safe-area-inset-right, 0px));
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: opacity 0.2s ease, visibility 0.2s ease, background-color 0.2s ease;
}

.post-hero__gallery-open:hover {
  background: rgba(0, 0, 0, 0.62);
}

.post-hero--gallery-active .post-hero__gallery-open {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.post-hero__gallery-controls,
.post-hero__dots {
  position: fixed;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.post-hero__gallery-controls {
  top: max(0.85rem, env(safe-area-inset-top, 0px));
  right: max(0.85rem, env(safe-area-inset-right, 0px));
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.post-hero__close,
.post-hero__fit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.post-hero__close:hover,
.post-hero__fit:hover {
  background: rgba(0, 0, 0, 0.62);
}

.post-hero__fit[aria-pressed='true'] {
  background: rgba(255, 255, 255, 0.22);
}

.post-hero__fit[aria-pressed='true']:hover {
  background: rgba(255, 255, 255, 0.32);
}

.post-hero__dots {
  left: 50%;
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(6px);
}

.post-hero__dot {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.post-hero__dot.is-active {
  transform: scale(1.35);
  background: #fff;
}

.post-hero__scrim,
.post-hero__footer {
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.post-hero--gallery-active .post-hero__scrim,
.post-hero--gallery-active .post-hero__footer {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.post-hero--gallery-fit[data-gallery] .post-hero__slide picture,
.post-hero--gallery-fit[data-gallery] .post-hero__slide .post-hero__img {
  width: 100%;
}

.post-hero--gallery-fit[data-gallery] .post-hero__slide .post-hero__img {
  object-fit: contain;
  object-position: center center;
}

.post-hero--gallery-active .post-hero__gallery-controls,
.post-hero--gallery-active .post-hero__dots {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.post-hero-gallery-active:has(.post-page) .navbar {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.post-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.12) 18%, transparent 36%),
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.28) 38%,
      rgba(0, 0, 0, 0.05) 68%,
      transparent 100%
    );
}

.post-hero--no-image .post-hero__scrim {
  background: linear-gradient(135deg, rgba(45, 90, 74, 0.95), rgba(26, 61, 50, 0.85));
}

.post-hero__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.post-hero__content {
  padding: clamp(1.25rem, 4vw, 3rem);
  padding-bottom: 0;
  max-width: min(92vw, 52rem);
}

/* Without a tour-stat bar below it the title needs its own bottom padding. */
.post-hero__content:last-child {
  padding-bottom: clamp(1.25rem, 4vw, 3rem);
}

.post-hero__meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
}

.post-hero__flags,
.post-hero__difficulty-row,
.post-hero__theme-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.post-hero__flag {
  display: inline-flex;
  line-height: 0;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.15s ease;
}

.post-hero__flag:hover {
  transform: translateY(-1px);
}

.post-hero__flag-icon {
  display: block;
  width: 1.75rem;
  height: auto;
}

.post-hero__flag-icon--square {
  width: 1.75rem;
  height: 1.75rem;
}

.post-hero__difficulty {
  display: inline-flex;
  line-height: 0;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.15s ease;
}

.post-hero__difficulty:hover {
  transform: translateY(-1px);
}

.post-hero__difficulty-icon {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
}

.post-hero__theme {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.post-hero__theme:hover {
  transform: translateY(-1px);
}

.post-hero--light-text .post-hero__theme,
.post-hero--no-image .post-hero__theme {
  background: #1a2e28;
  color: #fff;
}

.post-hero--light-text .post-hero__theme:hover,
.post-hero--no-image .post-hero__theme:hover {
  background: #243d34;
}

.post-hero--dark-text .post-hero__theme {
  background: #f2f5f3;
  color: #1a2e28;
}

.post-hero--dark-text .post-hero__theme:hover {
  background: #e4ebe7;
}

.post-hero__title {
  margin: 0;
  font-size: clamp(1.85rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.post-hero__tour-stats {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 100%;
  padding: 0 clamp(1.25rem, 4vw, 3rem) clamp(1.25rem, 4vw, 3rem);
  box-sizing: border-box;
}

.post-hero__tour-stat {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.post-hero__tour-stat:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.32);
}

.post-hero__tour-stat--link {
  transition: opacity 0.15s ease;
}

.post-hero__tour-stat--link:hover {
  opacity: 0.88;
}

.post-hero__tour-stat-icon-wrap {
  display: flex;
  line-height: 0;
  margin-bottom: 0.15rem;
}

.post-hero__tour-stat-icon {
  display: block;
  width: clamp(0.95rem, 3.5vw, 1.35rem);
  height: clamp(0.95rem, 3.5vw, 1.35rem);
  color: #fff;
}

.post-hero__tour-value {
  font-size: clamp(0.8rem, 3.2vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  white-space: nowrap;
}

.post-hero__tour-label {
  font-size: clamp(0.55rem, 2vw, 0.72rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.78;
  white-space: nowrap;
}

.post-hero__meta {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.post-hero--light-text .post-hero__title,
.post-hero--light-text .post-hero__meta,
.post-hero--light-text .post-hero__tour-value,
.post-hero--light-text .post-hero__tour-label,
.post-hero--light-text .post-hero__tour-stat-icon {
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
}

.post-hero--dark-text .post-hero__title,
.post-hero--dark-text .post-hero__meta,
.post-hero--dark-text .post-hero__tour-value,
.post-hero--dark-text .post-hero__tour-label,
.post-hero--dark-text .post-hero__tour-stat-icon {
  color: #111;
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.85);
}

.post-hero--dark-text .post-hero__tour-stat:not(:last-child) {
  border-right-color: rgba(0, 0, 0, 0.18);
}

.post-hero--no-image .post-hero__title,
.post-hero--no-image .post-hero__meta,
.post-hero--no-image .post-hero__tour-value,
.post-hero--no-image .post-hero__tour-label,
.post-hero--no-image .post-hero__tour-stat-icon {
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.post-body {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 0;
}

.post-highlight {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.post-highlight__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  align-items: center;
}

@media screen and (min-width: 769px) {
  .post-highlight__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 3rem;
    padding: 3rem 2rem;
  }
}

.post-highlight__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.post-highlight__icon {
  flex-shrink: 0;
  color: #7b4fa3;
}

.post-highlight__label-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7b4fa3;
  white-space: nowrap;
}

.post-highlight__label-line {
  flex: 1;
  height: 1px;
  background: #7b4fa3;
  opacity: 0.35;
  min-width: 2rem;
}

.post-highlight__title {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.45;
  color: #1a2e28;
}

.post-highlight__media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.post-highlight__media picture,
.post-highlight__media img {
  display: block;
  width: 100%;
  max-width: 22rem;
  height: auto;
  margin: 0 auto;
  -webkit-mask-image: radial-gradient(ellipse 85% 80% at 50% 50%, #000 55%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 80% at 50% 50%, #000 55%, transparent 100%);
}

.post-waypoints {
  background: #f7f8f6;
  border-bottom: 1px solid #e6e9e4;
}

.post-waypoints__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 0.5rem;
}

.post-waypoints__title {
  margin: 0 0 2rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #1d311d;
}

.post-waypoints__track {
  --waypoint-connector-gap: 0.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--waypoint-connector-gap);
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.post-waypoints__step {
  flex: 1 1 0;
  min-width: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.post-waypoints__step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 3rem;
  left: 50%;
  width: calc(100% + var(--waypoint-connector-gap));
  border-top: 2px dashed #c5ccc5;
  z-index: 0;
  pointer-events: none;
}

.post-waypoints__name {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.35;
  color: #1d311d;
}

.post-waypoints__number {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.35rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #3d7a5c;
  color: #1d311d;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(29, 49, 29, 0.18);
}

.post-waypoints__node {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 6rem;
  height: 6rem;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #1d311d;
  box-shadow: 0 2px 10px rgba(29, 49, 29, 0.08);
}

.post-waypoints__icon {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
}

@media screen and (max-width: 640px) {
  .post-waypoints__inner {
    padding-bottom: 0.5rem;
  }

  .post-waypoints__track {
    --waypoint-connector-gap: 1.25rem;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .post-waypoints__step {
    flex: 0 0 auto;
    min-width: 6.5rem;
  }
}

.post-track {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #fff;
  border-bottom: 1px solid #e6e9e4;
}

.post-track__visuals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 769px) {
  .post-track__visuals {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }
}

.post-track__map {
  width: 100%;
  min-height: min(360px, 50vh);
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #f0f4f1;
  box-shadow: none;
  /* own stacking context so Leaflet's pane/control z-indexes stay below the fixed navbar */
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.hike-waypoint-marker {
  background: transparent;
  border: 0;
  line-height: 0;
}

.hike-waypoint-marker__badge {
  box-sizing: border-box;
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #3d7a5c;
  color: #1d311d;
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  padding: 0;
  box-shadow: 0 2px 6px rgba(29, 49, 29, 0.18);
}

.hike-waypoint-marker--combined .hike-waypoint-marker__badge {
  width: auto;
  min-width: 1.75rem;
  padding: 0 0.12rem;
  border-radius: 999px;
}

.post-track__profile {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #f7f8f6;
  box-shadow: none;
  min-height: min(280px, 45vh);
  cursor: crosshair;
  touch-action: none;
}

/* Per-leg map of a multi-day tour, sitting between paragraphs rather than
   directly under the hero, so it needs its own vertical rhythm. */
.post-track--leg {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  border-top: 1px solid #e6e9e4;
}

.post-track__download {
  margin: 0;
  padding: clamp(0.9rem, 2.5vw, 1.25rem);
  background: #f7f8f6;
  border-top: 1px solid #e6e9e4;
  text-align: center;
}

/* In-body call to action, converted from the old wp-block-button markup. */
.post-body__cta {
  margin: clamp(1.25rem, 3vw, 1.75rem) 0;
  text-align: center;
}

.wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.wp-block-embed__wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.post-gpx-download {
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem);
  background: #f7f8f6;
  border-top: 1px solid #e6e9e4;
}

.post-gpx-download__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  max-width: min(92vw, 72rem);
  margin: 0 auto;
  padding: clamp(1.1rem, 2.5vw, 1.5rem) clamp(1.1rem, 2.5vw, 1.75rem);
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 18px rgba(29, 49, 29, 0.08);
}

.post-gpx-download__text {
  flex: 1 1 14rem;
  min-width: 0;
}

.post-gpx-download__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 700;
  line-height: 1.3;
  color: #1a2e28;
}

.post-gpx-download__description {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #3a4f47;
}

.post-gpx-download__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex-shrink: 0;
  padding: 0.85rem 1.25rem;
  border-radius: 0.5rem;
  background: #1d4d3a;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.15s ease;
}

.post-gpx-download__button:hover {
  background: #163d2e;
  color: #fff;
}

.post-gpx-download__button-icon {
  display: flex;
  width: 1rem;
  height: 1rem;
}

.post-gpx-download__button-icon svg {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .post-gpx-download__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 0.65rem;
  }

  .post-gpx-download__text {
    flex: 0 0 auto;
  }

  .post-gpx-download__button {
    width: 100%;
  }
}

.post-body--intro {
  padding-bottom: 0;
}

.post-body__content {
  font-size: 1.125rem;
}

.text.post-body__content :is(h1, h2, h3, h4, h5, h6) {
  text-align: start;
  clear: both;
  color: var(--alsnuff-forest);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
  line-height: 1.2;
}

.text.post-body__content h1 {
  margin: 2rem 0 0.85rem;
  font-size: clamp(1.7rem, 3.2vw, 2.15rem);
}

.text.post-body__content h2 {
  margin: 2.35rem 0 0.85rem;
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
}

.text.post-body__content h2::after {
  content: '';
  display: block;
  width: 2.25rem;
  height: 3px;
  margin-top: 0.5rem;
  background: var(--alsnuff-accent);
  border-radius: 999px;
}

.text.post-body__content h3 {
  margin: 1.75rem 0 0.55rem;
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
}

.text.post-body__content :is(h4, h5, h6) {
  margin: 1.35rem 0 0.4rem;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.text.post-body__content > :is(h1, h2, h3, h4, h5, h6):first-child {
  margin-top: 0.35rem;
}

.post-body__content figure {
  display: block;
  width: 100vw;
  max-width: 100vw;
  max-height: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  outline: none;
  border-radius: 0;
  background: transparent;
}

/* Card photos live inside the article column. The full-bleed figure rule above
   would otherwise stretch them to the viewport and blow the card open. */
.post-body__content .card figure.image,
.post-body__content .home-hike-card figure.image {
  width: 100%;
  max-width: 100%;
  margin: 0;
  /* Bulma already pads .image.is-4by3 to 75%. The ::before spacer would stack on top. */
  padding-top: 0;
}

.post-body__content figure.image--aside {
  float: left;
  width: 16rem;
  max-width: 40%;
  max-height: none;
  margin: 0.25rem 1.5rem 1rem 0;
}

.post-body__content figure.image--aside img,
.post-body__content figure.image--aside picture,
.post-body__content figure.image--aside picture img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

@media screen and (max-width: 600px) {
  .post-body__content figure.image--aside {
    float: none;
    width: 100%;
    max-width: 16rem;
    margin: 0 auto 1.25rem;
  }
}

/* Full-bleed photos sit in a wide column on desktop; give the text room. */
@media screen and (min-width: 769px) {
  .post-body__content figure.image:not(.image--aside) {
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }
}

.post-body__content figure figcaption,
.post-body__content figure .wp-element-caption {
  position: static;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.75rem 1rem;
  box-sizing: border-box;
  max-width: none;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #3a4f47;
  background: rgba(239, 239, 239, 0.95);
  border-top: 0;
}

.post-body__content figure img,
.post-body__content figure picture,
.post-body__content figure picture img {
  display: block;
  width: 100% !important;
  max-width: 100%;
  max-height: none;
  height: auto;
  margin: 0;
  object-fit: cover;
}

/*
 * Pullquotes used to inherit the full-bleed figure layout plus a generic
 * centered blockquote, so they read as body copy. Keep them in the column
 * as a branded callout instead.
 */
.post-body__content figure.wp-block-pullquote {
  width: 100%;
  max-width: 100%;
  margin: clamp(1.5rem, 3.5vw, 2.25rem) 0;
  padding: 0;
  border-radius: 0.75rem;
  background: #eef0ea;
  border: 1px solid var(--alsnuff-border);
  border-left: 4px solid var(--alsnuff-accent);
  box-shadow: 0 8px 24px rgba(26, 61, 50, 0.06);
  overflow: hidden;
}

.wp-block-pullquote blockquote {
  position: relative;
  margin: 0;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3.5vw, 1.85rem)
    clamp(1.25rem, 3vw, 1.75rem) clamp(3.15rem, 6vw, 3.6rem);
  border: 0;
  text-align: start;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.15rem, 2.1vw, 1.35rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.5;
  color: var(--alsnuff-forest);
}

.wp-block-pullquote blockquote::before {
  content: '“';
  position: absolute;
  left: 1.05rem;
  top: 0.85rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.15rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  color: var(--alsnuff-accent);
  pointer-events: none;
}

.wp-block-pullquote blockquote p {
  margin: 0;
}

.wp-block-pullquote blockquote p + p {
  margin-top: 0.7rem;
}

.wp-block-pullquote cite {
  display: block;
  margin-top: 0.85rem;
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--alsnuff-label-accent);
}

.wp-block-pullquote a {
  color: var(--alsnuff-accent);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.wp-block-pullquote a:hover {
  color: var(--alsnuff-forest);
}

/*
 * Region/category tiles ship as Gutenberg HTML. Their <figure> would otherwise
 * inherit the full-bleed post photo layout, so the image blows out to the
 * viewport and the title sits underneath as a plain link.
 */
.post-body__content .wp-block-alsnuff-alsnuff-tiles {
  margin: 1.15rem 0 0.35rem;
}

.static-page--editorial .post-body__content .wp-block-alsnuff-alsnuff-tiles {
  width: min(72rem, calc(100vw - 2rem));
  max-width: none;
  margin-left: calc((100% - min(72rem, 100vw - 2rem)) / 2);
  margin-right: calc((100% - min(72rem, 100vw - 2rem)) / 2);
}

.post-body__content .wp-block-alsnuff-alsnuff-tiles > .columns {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  max-width: 100%;
}

.post-body__content .wp-block-alsnuff-alsnuff-tiles > .columns > .column:only-child {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .post-body__content .wp-block-alsnuff-alsnuff-tiles > .columns > .column:only-child {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}

.post-body__content .wp-block-alsnuff-alsnuff-tiles > .columns > .column {
  min-width: 0;
  box-sizing: border-box;
  padding: 0.4rem;
}

.post-body__content .wp-block-alsnuff-alsnuff-tiles .columns.is-centered,
.post-body__content .wp-block-alsnuff-alsnuff-tiles .columns.is-centered > .column {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  flex: none;
}

.post-body__content .wp-block-alsnuff-alsnuff-tiles a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 0.85rem;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 4px 18px rgba(29, 49, 29, 0.08);
}

.post-body__content .wp-block-alsnuff-alsnuff-tiles a:hover {
  text-decoration: none;
  color: #fff;
  box-shadow: 0 8px 24px rgba(29, 49, 29, 0.16);
}

.post-body__content .wp-block-alsnuff-alsnuff-tiles a:hover img {
  transform: scale(1.04);
}

.post-body__content .wp-block-alsnuff-alsnuff-tiles .card-overlay-container {
  position: relative;
  aspect-ratio: 4 / 3;
}

.post-body__content .wp-block-alsnuff-alsnuff-tiles figure,
.post-body__content .wp-block-alsnuff-alsnuff-tiles .image-gradient-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
  background: #d5ddd6;
}

.post-body__content .wp-block-alsnuff-alsnuff-tiles figure picture,
.post-body__content .wp-block-alsnuff-alsnuff-tiles figure img {
  display: block;
  width: 100% !important;
  max-width: none;
  height: 100% !important;
  max-height: none;
  margin: 0;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.post-body__content .wp-block-alsnuff-alsnuff-tiles .image-gradient-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 20, 16, 0.78) 100%);
  pointer-events: none;
}

.post-body__content .wp-block-alsnuff-alsnuff-tiles .card-overlay-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: 0;
  padding: 0.7rem 0.5rem;
  color: #fff;
  font-weight: 700;
  font-size: clamp(0.82rem, 1.5vw, 1rem);
  line-height: 1.25;
  text-align: center;
  text-wrap: balance;
}

/*
 * GFM tables used to arrive as leftover Gutenberg `wp-block-table` figures,
 * which inherited the full-bleed image layout. Keep them in the column.
 */
.post-body__table {
  width: 100%;
  max-width: 100%;
  margin: 1.5rem 0;
  overflow-x: auto;
  border: 1px solid var(--alsnuff-border);
  border-radius: 0.75rem;
  background: #fff;
}

.text.post-body__content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  line-height: 1.45;
}

.text.post-body__content th,
.text.post-body__content td {
  padding: 0.7rem 0.9rem;
  text-align: start;
  vertical-align: top;
  border-bottom: 1px solid var(--alsnuff-border);
}

.text.post-body__content th {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--alsnuff-label-accent);
  background: #eef0ea;
}

.text.post-body__content tbody tr:nth-child(even) {
  background: #eef0ea;
}

.text.post-body__content tbody tr:last-child :is(th, td) {
  border-bottom: 0;
}

.text.post-body__content table a {
  color: var(--alsnuff-accent);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.text.post-body__content table a:hover {
  color: var(--alsnuff-forest);
}

.text.post-body__content :is(th, td)[align='right'] {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Homepage */
.home-page {
  color: var(--alsnuff-muted);
}

.home-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-bottom: 1px solid var(--alsnuff-border);
}

.home-section:nth-of-type(even) {
  background: var(--alsnuff-surface);
}

.home-section__inner {
  max-width: min(92vw, 72rem);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.25rem) clamp(1.25rem, 4vw, 2rem);
}

.home-section__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
}

.home-section__label-icon {
  display: inline-flex;
  color: var(--alsnuff-label-accent);
}

.home-section__label-icon-svg {
  width: 1.1rem;
  height: 1.1rem;
}

.home-section__label-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--alsnuff-label-accent);
  white-space: nowrap;
}

.home-section__label-line {
  flex: 1;
  height: 1px;
  background: var(--alsnuff-label-accent);
  opacity: 0.35;
  min-width: 2rem;
}

.home-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 100svh;
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--alsnuff-forest);
  border-bottom: 1px solid var(--alsnuff-border);
}

.home-hero__media {
  position: absolute;
  inset: 0;
}

.home-hero__media picture,
.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10, 20, 16, 0.35) 0%, rgba(10, 20, 16, 0.12) 18%, transparent 36%),
    linear-gradient(
      to top,
      rgba(10, 20, 16, 0.78) 0%,
      rgba(10, 20, 16, 0.32) 38%,
      rgba(10, 20, 16, 0.05) 68%,
      transparent 100%
    );
}

.home-hero__content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: min(92vw, 52rem);
  margin: 0 auto;
  padding: clamp(5rem, 14vw, 7rem) clamp(1.25rem, 4vw, 2rem) clamp(2rem, 6vw, 3rem);
  color: #fff;
}

.home-hero__title {
  margin: 0 0 0.75rem;
  font-size: clamp(4.4rem, 10vw, 6rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.home-hero__subtitle {
  margin: 0;
  max-width: 38rem;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.home-hero--summer .home-hero__title,
.home-hero--summer .home-hero__subtitle {
  text-align: center;
}

.home-hero--summer .home-hero__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home-hero--summer .home-hero__subtitle {
  margin-inline: auto;
}

.home-hero--summer .home-hero__ctas {
  margin-top: 0;
  justify-content: center;
}

.home-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.home-category__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.home-category__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
  border-radius: 0.85rem;
  text-decoration: none;
  min-height: 8.5rem;
  box-shadow: 0 4px 18px rgba(29, 49, 29, 0.08);
}

.home-category__media {
  position: absolute;
  inset: 0;
}

.home-category__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-category__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 75%, rgba(10, 20, 16, 0.78) 100%);
}

.home-category__title {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0.85rem;
  color: #fff;
  font-weight: 700;
  font-size: clamp(0.92rem, 2vw, 1.02rem);
  text-align: center;
}

.home-category__more-wrap {
  margin: 1.1rem 0 0;
  text-align: center;
}

.home-category__more {
  font-weight: 700;
  color: var(--alsnuff-label-accent);
  text-decoration: none;
}

.home-category__more:hover {
  text-decoration: underline;
}

.home-map__canvas {
  /* own stacking context so Leaflet's pane/control z-indexes stay below the fixed navbar */
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: clamp(22rem, 55vh, 36rem);
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid var(--alsnuff-border);
  box-shadow: 0 8px 28px rgba(29, 49, 29, 0.08);
  background: #e8ece8;
}

.map-attribution-info {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  margin: 0;
  pointer-events: auto;
}

.map-attribution-info__btn {
  box-sizing: border-box;
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  border: 1px solid rgba(26, 61, 50, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--alsnuff-forest);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.82rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(29, 49, 29, 0.12);
}

.map-attribution-info__btn:hover,
.map-attribution-info.is-open .map-attribution-info__btn {
  background: #fff;
  border-color: var(--alsnuff-accent);
  color: var(--alsnuff-accent);
}

.map-attribution-info__panel {
  max-width: min(16rem, calc(100vw - 4rem));
  padding: 0.3rem 0.5rem;
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(26, 61, 50, 0.12);
  color: var(--alsnuff-muted);
  font: 400 0.68rem/1.35 system-ui, -apple-system, 'Segoe UI', sans-serif;
  box-shadow: 0 1px 4px rgba(29, 49, 29, 0.1);
  order: -1;
}

.map-attribution-info__panel a {
  color: var(--alsnuff-forest);
  text-decoration: none;
}

.map-attribution-info__panel a:hover {
  text-decoration: underline;
}

.home-map-marker {
  background: transparent;
  border: 0;
  line-height: 0;
}

.home-map-marker__badge {
  box-sizing: border-box;
  display: grid;
  place-items: center;
  min-width: 1.65rem;
  height: 1.65rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: #1a3d32;
  border: 2px solid #fff;
  color: #fff;
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(29, 49, 29, 0.28);
}

.home-map-marker--cluster .home-map-marker__badge {
  min-width: 1.85rem;
  height: 1.85rem;
  font-size: 0.78rem;
}

.home-map-marker__pin {
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  background: grey;
  position: absolute;
  transform: rotate(-45deg);
  left: 50%;
  top: 50%;
  margin: -15px 0 0 -15px;
}

.home-map-marker__pin::after {
  content: '';
  width: 24px;
  height: 24px;
  margin: 3px 0 0 3px;
  background: #fff;
  position: absolute;
  border-radius: 50%;
}

.home-map-marker__icon {
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  right: 0;
  margin: 12px auto;
  color: #18171c;
  display: block;
}

.home-map-marker__custom {
  position: absolute;
  width: 100%;
  top: 30%;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.home-map-marker__custom img {
  width: 16px;
  height: 20px;
  display: block;
  object-fit: contain;
}

.home-collection + .home-collection {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--alsnuff-border);
}

.home-collection__more-wrap {
  margin: 0.85rem 0 0;
  text-align: right;
}

.home-collection__more {
  font-weight: 600;
  color: var(--alsnuff-label-accent);
  text-decoration: none;
}

.home-hike-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.home-hike-card {
  min-width: 0;
}

.home-hike-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.home-hike-card__link:hover {
  text-decoration: none;
}

.home-hike-card .card {
  margin-bottom: 0;
  height: 100%;
}

.card-info-box-container {
  display: flex;
  justify-content: center;
}

.card-info-box {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto auto;
  gap: 0.2rem 1rem;
  width: fit-content;
  max-width: calc(100% - 2rem);
  margin-top: -3.5rem;
  padding: 1rem;
  background-color: rgb(69, 69, 69);
}

.card-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #fff;
  background-color: rgb(69, 69, 69);
  white-space: nowrap;
}

.card-info-item.difficulty {
  grid-area: 2 / 1 / 3 / 4;
}

.card-info-item-value {
  font-size: 1.2rem;
  white-space: nowrap;
}

.hike-summary-data .title {
  text-align: center;
  font-size: 1.75rem;
}

.hike-summary-data .content {
  color: var(--alsnuff-muted);
  text-align: left;
}

.hike-summary-data .content p {
  font-size: 1rem;
  width: 100% !important;
  text-align: left;
}

.hike-summary-data a,
.home-hike-card__link {
  color: inherit;
}

.hike-summary-data .more-link {
  font-weight: 600;
  white-space: nowrap;
}

.home-about__inner {
  text-align: center;
}

.home-about__tagline {
  margin: 0 0 1.25rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--alsnuff-label-accent);
}

.home-about__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.home-about__stat {
  display: grid;
  gap: 0.2rem;
  justify-items: center;
  padding: 1rem 0.75rem;
  border-radius: 0.85rem;
  background: #fff;
  border: 1px solid var(--alsnuff-border);
}

.home-about__stat-icon-wrap {
  color: var(--alsnuff-accent);
}

.home-about__stat-icon {
  width: 1.35rem;
  height: 1.35rem;
}

.home-about__stat-value {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--alsnuff-forest);
}

.home-about__stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--alsnuff-muted);
}

.home-about__description {
  max-width: 40rem;
  margin: 0 auto 1rem;
  line-height: 1.55;
}

.home-about__link {
  font-weight: 700;
  color: var(--alsnuff-label-accent);
  text-decoration: none;
}

@media screen and (min-width: 640px) {
  .home-hike-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (min-width: 769px) {
  .home-category__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home-category__card {
    min-height: 10rem;
  }

  .home-hike-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-about__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media screen and (max-width: 768px) {
  /* title-winter.webp focal point: 850px / 2400px */
  .home-hero--winter .home-hero__media img {
    object-position: 35.42% center;
  }

  .home-hero--summer .home-hero__media img {
    object-position: 25% center;
  }

  .home-hero__ctas {
    flex-direction: column;
  }

  .home-hero__ctas .btn {
    width: 100%;
  }

  .home-map__canvas {
    width: 100vw;
    min-height: calc(100vh - var(--alsnuff-header-height));
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
}

/* Tag & category archives */
.archive-page {
  color: var(--alsnuff-muted);
}

/*
 * The archive hero duplicates the full-bleed/cover primitives instead of joining the
 * .post-hero selector lists: .post-hero is entangled with the gallery, the JS-set
 * --dark-text variant and the tour-stat bar, none of which apply here.
 */
.archive-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  /* Deliberately not 100svh like the post hero - the card grid must stay reachable. */
  height: clamp(19rem, 52svh, 30rem);
  overflow: hidden;
  background: var(--alsnuff-forest);
  border-bottom: 1px solid var(--alsnuff-border);
}

.archive-hero__media {
  position: absolute;
  inset: 0;
}

.archive-hero__media picture,
.archive-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(10, 20, 16, 0.42) 0%, rgba(10, 20, 16, 0.12) 20%, transparent 40%),
    linear-gradient(
      to top,
      rgba(10, 20, 16, 0.82) 0%,
      rgba(10, 20, 16, 0.38) 42%,
      rgba(10, 20, 16, 0.06) 72%,
      transparent 100%
    );
}

.archive-hero--no-image .archive-hero__scrim {
  background: linear-gradient(135deg, rgba(45, 90, 74, 0.95), rgba(26, 61, 50, 0.85));
}

.archive-hero__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.archive-hero__content {
  max-width: min(92vw, 72rem);
  margin: 0 auto;
  padding: clamp(1.25rem, 4vw, 2rem);
  color: #fff;
}

.archive-hero__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.archive-hero__heading {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.archive-hero__badge {
  flex: none;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

/* The icon helpers emit their own post-hero__* classes; size them by scope, not by rename. */
.archive-hero__badge svg {
  width: 1.45rem;
  height: 1.45rem;
  color: #fff;
}

.archive-hero__badge .post-hero__flag-icon {
  width: 1.6rem;
  height: auto;
}

.archive-hero__badge .post-hero__flag-icon--square {
  width: 1.45rem;
  height: 1.45rem;
}

/* Never .title.is-2 here: that is pinned to 1.5rem !important below 769px. */
.archive-hero__title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 5vw, 3.1rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
}

.archive-hero__count {
  margin: 0.55rem 0 0;
  font-size: clamp(0.9rem, 2.2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.9);
}

.archive-hero__credit {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
}

.archive-hero__credit:hover {
  color: #fff;
  text-decoration: underline;
}

/* Striping is set per section, not by :nth-of-type - the section count varies per term. */
.archive-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-bottom: 1px solid var(--alsnuff-border);
}

.archive-section--surface {
  background: var(--alsnuff-surface);
}

.archive-section__inner {
  max-width: min(92vw, 72rem);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.25rem) clamp(1.25rem, 4vw, 2rem);
}

.archive-section__inner--narrow {
  max-width: min(92vw, 46rem);
}

.archive-section__inner--slim {
  padding-top: clamp(1.1rem, 3vw, 1.6rem);
  padding-bottom: clamp(1.1rem, 3vw, 1.6rem);
}

.archive-intro__text {
  margin: 0 0 0.9rem;
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  line-height: 1.65;
}

.archive-intro__text:last-child {
  margin-bottom: 0;
}

.archive-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.archive-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--alsnuff-border);
  background: #fff;
  color: var(--alsnuff-forest);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.archive-chip:hover {
  transform: translateY(-1px);
  border-color: var(--alsnuff-accent);
  color: var(--alsnuff-accent);
  text-decoration: none;
}

.archive-chip__icon {
  display: inline-flex;
  line-height: 0;
  color: var(--alsnuff-label-accent);
}

.archive-chip__icon svg {
  width: 1rem;
  height: 1rem;
}

.archive-chip__icon .post-hero__flag-icon {
  width: 1.1rem;
  height: auto;
}

.archive-chip__icon .post-hero__flag-icon--square {
  width: 1rem;
  height: 1rem;
}

.archive-chip__count {
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.65;
}

.archive-posts__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.archive-posts__head .home-section__label {
  flex: 1;
  margin-bottom: 0;
}

.archive-posts__map-link {
  margin-left: auto;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--alsnuff-label-accent);
  text-decoration: none;
}

/* Keeps a 200-card archive cheap to lay out. */
.archive-posts .home-hike-card {
  content-visibility: auto;
  contain-intrinsic-size: 420px;
}

.archive-empty {
  margin: 0;
  font-size: 1.05rem;
}

.archive-empty__link {
  color: var(--alsnuff-accent);
  font-weight: 600;
}

/* Not .home-map__canvas: that one goes full-screen on mobile, far too tall here. */
.archive-map__canvas {
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: clamp(20rem, 50vh, 32rem);
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid var(--alsnuff-border);
  box-shadow: 0 8px 28px rgba(29, 49, 29, 0.08);
  background: #e8ece8;
}

@media screen and (max-width: 768px) {
  .archive-hero {
    height: clamp(17rem, 46svh, 24rem);
  }

  .archive-hero__badge {
    width: 2.2rem;
    height: 2.2rem;
  }

  .archive-hero__badge svg {
    width: 1.2rem;
    height: 1.2rem;
  }

  .archive-posts__head {
    flex-wrap: wrap;
  }

  .archive-map__canvas {
    min-height: clamp(18rem, 55vh, 26rem);
  }
}

/* Legacy WordPress theme styles (formerly alsnuff-styles.css). */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif,
    'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
}

.single-related-posts {
  display: block;
}

.sidebar-related-posts {
  display: none;
}

@media screen and (max-width: 769px) {
  .ordered-mobile {
    display: flex !important;
    flex-flow: column;
  }

  .sidebar-hike-summary {
    order: 1;
  }

  .sidebar-related-posts {
    order: 3;
    display: block;
  }

  .single-related-posts {
    display: none;
  }

  .sidebar-welcome {
    order: 4;
  }

  .sidebar-ad {
    order: 2;
  }

  .sidebar-awards {
    order: 5;
  }
}

.header-image-index {
  background-image: linear-gradient(rgba(0, 0, 0, 0.29), rgba(0, 0, 0, 0.49)),
    url('https://image-service.azureedge.net/from/alsnuff/resize-to/960/2022/11/Bachalpsee.jpg');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.header-image-post {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.is-outlined {
  background-color: transparent;
  color: #fff;
}

.hero-cta {
  padding: 30px 0;
}

.panel-block.section p {
  font-size: 17px;
  line-height: 1.4;
  color: #95a5a6;
}

.section.main {
  background-color: #f0f0f0;
}

.icon-block {
  font-size: 5em;
}

@font-face {
  font-family: 'Pacifico';
  font-style: normal;
  font-weight: 400;
  src: url('/assets/fonts/pacifico-v22-latin-regular.woff2') format('woff2'),
    url('/assets/fonts/pacifico-v22-latin-regular.woff') format('woff');
  font-display: swap;
}

.logo {
  font-size: 30px;
  font-family: 'Pacifico', cursive;
}

.card {
  margin-bottom: 5em;
}

.related-post {
  margin-bottom: 1em;
}

#subscribe-button {
  background-color: #8d4a59;
}

#mufflons {
  margin-top: 1em;
  left: 20%;
  width: 60%;
}

.navbar {
  background-color: transparent;
}

.nav-item {
  align-items: center;
  display: flex;
  padding: 0.5rem 0.75rem;
}

.nav-item img {
  max-height: 1.75rem;
}

.submenu {
  background-color: beige;
}

.footer a {
  color: #8d4a59;
}

.tag:not(body) {
  background-color: #8d864a;
  color: white;
  margin-right: 0.5em;
}

.title-container {
  position: relative;
  line-height: 0;
}

.title-container .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.title-container .image img {
  max-height: unset;
}

.title-desktop a {
  color: white !important;
}

.title-desktop.gradient {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.29), rgba(0, 0, 0, 0.49));
}

.title.is-1 a {
  color: inherit;
}

.title-small-device {
  display: none;
}

.text h1 {
  margin-top: 1em;
}

.text h2 {
  margin-top: 1.5em;
}

.text h3 {
  margin-top: 1em;
}

.text h4 {
  margin-top: 0.5em;
}

.text p {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

figure {
  position: relative;
  margin-bottom: 0.5em;
  max-height: 768px;
}

figure img {
  display: block;
  max-height: 768px;
  max-width: 100%;
  margin: auto;
  width: auto !important;
}

figcaption {
  background: rgba(239, 239, 239, 0.7);
  color: #000;
}

blockquote {
  text-align: center;
  font-size: 1.25em;
}

.statistic {
  font-size: 0.75em;
  margin-bottom: 0.5em;
}

.outfit-filter {
  text-align: center;
  background-color: white;
  border: 1px solid lightgrey;
  padding: 0 0 1em;
  margin: 1em 0 0;
}

.outfit-prompt {
  margin: 1em 0;
}

.outfit-card {
  margin: 0.5em 0;
}

.outfit-card-content {
  padding: 0 1rem;
}

.outfit {
  width: auto !important;
  margin: auto;
  padding: 1em;
}

.outfit-title {
  margin-bottom: 0.5em !important;
}

.outfit-content {
  font-size: 0.8em;
  padding-bottom: 0.5em !important;
}

.outfit-card-footer {
  background-color: floralwhite;
}

#instafeed img {
  margin: 0.5em;
}

.browser-default-uls ul {
  padding-left: 30px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.browser-default-uls ul li {
  list-style-type: disc !important;
}

.browser-default-uls ul li ul li {
  list-style-type: circle !important;
}

@media screen and (max-width: 769px) {
  .title.is-1 {
    font-size: 1.5rem !important;
    margin: 2rem 0;
  }

  .title.is-2 {
    font-size: 1.5rem !important;
  }

  .title.is-3 {
    font-size: 1rem !important;
  }

  .title-desktop {
    display: none !important;
  }

  .title-small-device {
    display: block !important;
  }

  .section {
    padding: 0 1rem !important;
  }

  .is-size-5 {
    font-size: 1rem !important;
  }

  figcaption {
    text-align: center;
    margin: 0 0.5rem 1.5rem;
    font-size: 0.8rem;
    color: #555d66;
  }
}

@media screen and (min-width: 769px) {
  figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.75em;
  }
}
