.guide-home {
  --gh-ink: #171a1d;
  --gh-muted: #687078;
  --gh-paper: #f4f5f3;
  --gh-surface: #ffffff;
  --gh-soft: #e9eeec;
  --gh-line: #d9ddda;
  --gh-accent: #bd3c2e;
  --gh-accent-dark: #942b22;
  --gh-green: #173f36;
  --gh-radius: 14px;
  color: var(--gh-ink);
  background: var(--gh-paper);
  font-family: "Inter", Arial, sans-serif;
}

.guide-home *,
.guide-home *::before,
.guide-home *::after {
  box-sizing: border-box;
}

.guide-home a {
  color: inherit;
}

.gh-hero {
  padding: clamp(1rem, 2vw, 1.5rem) 0 2rem;
}

.gh-hero__shell {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.76fr);
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--gh-line);
  border-radius: 18px 18px 0 0;
  background: var(--gh-surface);
}

.gh-hero__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.25rem, 5vw, 5.4rem);
}

.gh-eyebrow,
.gh-kicker {
  margin: 0 0 0.85rem;
  color: var(--gh-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.gh-hero h1 {
  width: min(100%, 11ch);
  margin: 0;
  color: var(--gh-ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(2.9rem, 5.25vw, 5.55rem);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.96;
  text-wrap: balance;
}

.gh-hero h1 span {
  display: block;
  color: var(--gh-accent);
}

.gh-hero__lead {
  max-width: 36rem;
  margin: 1.45rem 0 1.65rem;
  color: #545c62;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.62;
}

.gh-search {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.7rem;
  width: min(100%, 38rem);
  min-height: 58px;
  padding: 0.4rem 0.4rem 0.4rem 1rem;
  border: 1px solid #cfd4d1;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(25, 32, 29, 0.07);
}

.gh-search svg {
  color: #788078;
}

.gh-search input[type="search"] {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--gh-ink);
  font: inherit;
}

.gh-search input[type="search"]::placeholder {
  color: #8a918d;
}

.gh-search button,
.gh-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 7px;
  background: var(--gh-accent);
  color: #fff;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.gh-search button {
  padding-inline: 1.35rem;
}

.gh-search button:hover,
.gh-button:hover {
  background: var(--gh-accent-dark);
}

.gh-search button:active,
.gh-button:active {
  transform: translateY(1px);
}

.gh-search .search-suggestions {
  position: absolute;
  z-index: 20;
  top: calc(100% + 0.5rem);
  right: 0;
  left: 0;
  overflow: hidden;
  border: 1px solid var(--gh-line);
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(22, 30, 27, 0.16);
}

.gh-hero__visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: #d8ddda;
  text-decoration: none;
}

.gh-hero__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(10, 18, 20, 0.04) 45%, rgba(10, 18, 20, 0.78) 100%);
}

.gh-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}

.gh-hero__visual:hover img {
  transform: scale(1.025);
}

.gh-hero__visual-label {
  position: absolute;
  z-index: 2;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.55rem 0.72rem;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--gh-ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gh-hero__caption {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: grid;
  gap: 0.25rem;
  color: #fff;
}

.gh-hero__caption strong {
  max-width: 18ch;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.06;
}

.gh-hero__caption span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.gh-hero__caption b {
  margin-left: 0.25rem;
}

.gh-intents {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--gh-line);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  background: #fff;
}

.gh-intents > a {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  min-height: 88px;
  padding: 1rem 1.15rem;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.gh-intents > a + a {
  border-left: 1px solid var(--gh-line);
}

.gh-intents > a:hover {
  background: #f7f8f6;
  color: var(--gh-accent);
}

.gh-intents__icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: #f0e8e5;
  color: var(--gh-accent);
}

.gh-intents__icon svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gh-intents strong,
.gh-intents small {
  display: block;
}

.gh-intents strong {
  color: var(--gh-ink);
  font-size: 0.9rem;
}

.gh-intents small {
  margin-top: 0.18rem;
  overflow: hidden;
  color: var(--gh-muted);
  font-size: 0.73rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gh-intents b {
  color: #9ca29f;
  font-weight: 500;
}

.gh-section {
  padding: clamp(3.8rem, 7vw, 7rem) 0;
}

.gh-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 27rem);
  align-items: end;
  gap: 2rem;
  margin-bottom: 2rem;
}

.gh-section-head--action {
  grid-template-columns: minmax(0, 1fr) auto;
}

.gh-section-head h2,
.gh-routes__intro h2,
.gh-afisha__heading h2 {
  max-width: 17ch;
  margin: 0;
  color: var(--gh-ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(2.25rem, 4.15vw, 4rem);
  font-weight: 750;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.gh-section-head > p,
.gh-routes__intro > p:not(.gh-kicker) {
  margin: 0;
  color: var(--gh-muted);
  line-height: 1.65;
}

.gh-text-link,
.gh-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gh-accent);
  font-size: 0.86rem;
  font-weight: 760;
  text-decoration: none;
}

.gh-text-link:hover,
.gh-card-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.gh-plan-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 0.85rem;
}

.gh-plan-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: var(--gh-radius);
  background: #26302d;
  color: #fff;
  text-decoration: none;
}

.gh-plan-card--wide {
  grid-row: 1 / span 2;
}

.gh-plan-card img,
.gh-story__image img,
.gh-pick-card__media img,
.gh-route-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gh-plan-card img {
  position: absolute;
  inset: 0;
  transition: transform 450ms cubic-bezier(.2,.7,.2,1);
}

.gh-plan-card:hover img {
  transform: scale(1.035);
}

.gh-plan-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 17, 0.02) 28%, rgba(12, 18, 17, 0.42) 63%, rgba(12, 18, 17, 0.94) 100%);
}

.gh-plan-card__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 0.35rem;
  padding: clamp(1.25rem, 3vw, 2.1rem);
  background: linear-gradient(180deg, transparent 0%, rgba(10, 16, 14, 0.3) 38%, rgba(10, 16, 14, 0.72) 100%);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.58);
}

.gh-plan-card__number {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.gh-plan-card strong {
  max-width: 18ch;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 2.25rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: #fff !important;
}

.gh-plan-card small {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.8rem;
}

.gh-plan-card__action {
  margin-top: 0.65rem;
  color: #fff !important;
  font-size: 0.8rem;
  font-weight: 760;
}

.gh-plan-card--paper {
  border: 1px solid #ccd5d1;
  background: #e5ebe8;
  color: var(--gh-green);
}

.gh-plan-card--paper .gh-plan-card__content {
  position: relative;
  min-height: 100%;
  background: transparent;
  text-shadow: none;
}

.gh-plan-card--paper .gh-plan-card__number,
.gh-plan-card--paper small {
  color: #66736d !important;
}

.gh-plan-card--paper strong,
.gh-plan-card--paper .gh-plan-card__action {
  color: var(--gh-green) !important;
}

.gh-plan-card__line-art {
  position: absolute;
  right: -1.5rem;
  bottom: -1rem;
  width: min(80%, 18rem);
  color: rgba(23, 63, 54, 0.22);
}

.gh-plan-card__line-art svg {
  display: block;
  width: 100%;
}

.gh-picks {
  border-block: 1px solid var(--gh-line);
  background: #fff;
}

.gh-picks-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.9fr);
  grid-template-rows: repeat(2, minmax(220px, auto));
  gap: 1rem 2.25rem;
}

.gh-pick-card {
  min-width: 0;
  border-top: 1px solid var(--gh-line);
  padding-top: 1rem;
}

.gh-pick-card:first-child {
  grid-row: 1 / span 2;
  border-top: 0;
  padding-top: 0;
}

.gh-pick-card:not(:first-child) {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 1.15rem;
}

.gh-pick-card__media {
  display: block;
  min-height: 160px;
  overflow: hidden;
  border-radius: 9px;
  background: var(--gh-soft);
}

.gh-pick-card:first-child .gh-pick-card__media {
  height: clamp(320px, 37vw, 500px);
}

.gh-pick-card__media img {
  transition: transform 400ms ease;
}

.gh-pick-card:hover .gh-pick-card__media img {
  transform: scale(1.025);
}

.gh-pick-card__body {
  padding-top: 1rem;
}

.gh-pick-card:not(:first-child) .gh-pick-card__body {
  padding-top: 0.25rem;
}

.gh-pick-card__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  color: var(--gh-accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gh-pick-card h3,
.gh-story h3 {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 720;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.gh-pick-card h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.gh-pick-card h3 a,
.gh-story h3 a {
  text-decoration: none;
}

.gh-pick-card h3 a:hover,
.gh-story h3 a:hover {
  color: var(--gh-accent);
}

.gh-pick-card p,
.gh-story p {
  margin: 0.7rem 0 1rem;
  color: var(--gh-muted);
  font-size: 0.87rem;
  line-height: 1.58;
}

.gh-pick-card:not(:first-child) p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.gh-media-empty {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #dce3df, #cbd5d0);
}

.gh-routes {
  padding-block: clamp(3.5rem, 6vw, 6rem);
  background: #fff;
}

.gh-routes > .container {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(2rem, 5vw, 4.25rem);
  border-radius: 18px;
  background: var(--gh-green);
  color: #fff;
}

.gh-routes__intro {
  align-self: start;
}

.gh-routes .gh-kicker {
  color: #ff9a82;
}

.gh-routes__intro h2 {
  color: #fff;
  font-size: clamp(2.25rem, 4vw, 3.7rem);
}

.gh-routes__intro > p:not(.gh-kicker) {
  margin: 1.25rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.gh-button--light {
  min-height: 44px;
  padding-inline: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: transparent;
}

.gh-button--light:hover {
  background: #fff;
  color: var(--gh-green);
}

.gh-route-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.gh-route-row {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
}

.gh-route-row__image {
  display: block;
  height: 88px;
  overflow: hidden;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
}

.gh-route-row__body {
  display: grid;
  gap: 0.5rem;
}

.gh-route-row__body strong {
  max-width: 30ch;
  font-size: 1.1rem;
  line-height: 1.2;
}

.gh-route-row__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.74rem;
}

.gh-route-row__arrow {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  transition: background 160ms ease, color 160ms ease;
}

.gh-route-row:hover .gh-route-row__arrow {
  background: #fff;
  color: var(--gh-green);
}

.gh-afisha {
  border-block: 1px solid var(--gh-line);
  background: #edf1ef;
}

.gh-afisha__heading {
  margin-bottom: 1.5rem;
}

.gh-stories {
  background: #fff;
}

.gh-stories-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.72fr);
  gap: 1rem 2.2rem;
}

.gh-story {
  min-width: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--gh-line);
}

.gh-story--lead {
  grid-row: 1 / span 3;
  padding-top: 0;
  border-top: 0;
}

.gh-story__image {
  display: block;
  min-height: 150px;
  overflow: hidden;
  border-radius: 9px;
  background: var(--gh-soft);
}

.gh-story--lead .gh-story__image {
  height: clamp(330px, 39vw, 520px);
}

.gh-story:not(.gh-story--lead) {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 1.1rem;
}

.gh-story:not(.gh-story--lead) .gh-story__image {
  min-height: 148px;
}

.gh-story__body {
  padding-top: 1rem;
}

.gh-story:not(.gh-story--lead) .gh-story__body {
  padding-top: 0.2rem;
}

.gh-story__label {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--gh-accent);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gh-story h3 {
  font-size: clamp(1.2rem, 2vw, 1.85rem);
}

.gh-story:not(.gh-story--lead) h3 {
  font-size: 1.08rem;
}

.gh-story:not(.gh-story--lead) p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (max-width: 1240px) {
  .gh-hero__shell {
    grid-template-columns: 1fr;
  }

  .gh-hero__content {
    padding: clamp(2.5rem, 6vw, 4.5rem);
  }

  .gh-hero h1 {
    width: min(100%, 12ch);
  }

  .gh-hero__visual {
    min-height: 0;
    aspect-ratio: 16 / 7;
  }

  .gh-hero__visual img {
    object-position: center 56%;
  }

  .gh-intents {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gh-intents > a:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--gh-line);
  }

  .gh-intents > a:nth-child(4) {
    border-top: 1px solid var(--gh-line);
  }

  .gh-picks-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap-inline: 1.5rem;
  }

  .gh-pick-card:not(:first-child),
  .gh-story:not(.gh-story--lead) {
    grid-template-columns: 125px minmax(0, 1fr);
  }
}

@media (max-width: 820px) {
  .gh-hero__content {
    padding: 3rem 2rem;
  }

  .gh-hero h1 {
    width: min(100%, 12ch);
    font-size: clamp(2.8rem, 8.5vw, 4.35rem);
  }

  .gh-hero__visual {
    aspect-ratio: 16 / 8.5;
  }

  .gh-section-head,
  .gh-section-head--action {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.85rem;
  }

  .gh-plan-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(360px, 1fr) minmax(240px, auto);
  }

  .gh-plan-card--wide {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .gh-picks-grid,
  .gh-stories-grid,
  .gh-routes > .container {
    grid-template-columns: 1fr;
  }

  .gh-pick-card:first-child,
  .gh-story--lead {
    grid-row: auto;
  }

  .gh-pick-card:not(:first-child),
  .gh-story:not(.gh-story--lead) {
    grid-template-columns: 190px minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .gh-hero {
    padding-top: 0.75rem;
  }

  .gh-hero .container {
    width: min(100% - 1.25rem, 1240px);
  }

  .gh-hero__shell {
    min-height: 0;
    border-radius: 12px 12px 0 0;
  }

  .gh-hero__content {
    padding: 2rem 1.1rem 1.35rem;
  }

  .gh-eyebrow {
    margin-bottom: 0.7rem;
    font-size: 0.63rem;
  }

  .gh-hero h1 {
    width: 100%;
    font-size: clamp(2.45rem, 12vw, 3.4rem);
    letter-spacing: -0.045em;
    line-height: 0.98;
  }

  .gh-hero__lead {
    margin: 1rem 0 1.15rem;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .gh-search {
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 52px;
    gap: 0.45rem;
    padding: 0.3rem 0.3rem 0.3rem 0.7rem;
  }

  .gh-search button {
    min-height: 42px;
    padding-inline: 0.9rem;
  }

  .gh-hero__visual {
    min-height: 230px;
    aspect-ratio: 4 / 3;
  }

  .gh-hero__visual-label {
    top: 0.8rem;
    left: 0.8rem;
  }

  .gh-hero__caption {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }

  .gh-hero__caption strong {
    font-size: 1.3rem;
  }

  .gh-intents {
    grid-template-columns: 1fr 1fr;
    border-radius: 0 0 12px 12px;
  }

  .gh-intents > a {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 0.6rem;
    min-height: 76px;
    padding: 0.75rem;
  }

  .gh-intents__icon {
    width: 34px;
    height: 34px;
  }

  .gh-intents__icon svg {
    width: 18px;
    height: 18px;
  }

  .gh-intents strong {
    font-size: 0.8rem;
    line-height: 1.15;
  }

  .gh-intents small,
  .gh-intents b {
    display: none;
  }

  .gh-section {
    padding-block: 3.25rem;
  }

  .gh-section-head {
    margin-bottom: 1.4rem;
  }

  .gh-section-head h2,
  .gh-routes__intro h2,
  .gh-afisha__heading h2 {
    max-width: 100%;
    font-size: clamp(1.9rem, 8.8vw, 2.65rem);
    line-height: 1.02;
  }

  .gh-plan-grid,
  .gh-picks-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    margin-inline: 0;
    padding-inline: 0;
    overflow: visible;
  }

  .gh-plan-card,
  .gh-plan-card--wide {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    min-width: 0;
    min-height: clamp(280px, 82vw, 360px);
  }

  .gh-plan-card--paper .gh-plan-card__content {
    position: absolute;
  }

  .gh-pick-card,
  .gh-pick-card:first-child,
  .gh-pick-card:not(:first-child) {
    display: block;
    width: 100%;
    min-width: 0;
    padding-top: 1rem;
    border-top: 1px solid var(--gh-line);
  }

  .gh-pick-card:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .gh-pick-card:first-child .gh-pick-card__media,
  .gh-pick-card__media {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .gh-pick-card:not(:first-child) .gh-pick-card__body {
    padding-top: 1rem;
  }

  .gh-routes > .container {
    width: calc(100% - 1.25rem);
    padding: 2rem 1rem;
    border-radius: 12px;
  }

  .gh-route-row {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 0.75rem;
  }

  .gh-route-row__image {
    height: 76px;
  }

  .gh-route-row__arrow {
    display: none;
  }

  .gh-route-row__body strong {
    font-size: 0.98rem;
  }

  .gh-stories-grid {
    gap: 0;
  }

  .gh-story--lead .gh-story__image {
    height: 260px;
  }

  .gh-story:not(.gh-story--lead) {
    grid-template-columns: minmax(96px, 30vw) minmax(0, 1fr);
    gap: 0.85rem;
    padding-block: 1rem;
  }

  .gh-story:not(.gh-story--lead) .gh-story__image {
    min-height: 112px;
  }

  .gh-story:not(.gh-story--lead) .gh-story__body {
    padding-top: 0;
  }

  .gh-story:not(.gh-story--lead) p,
  .gh-story:not(.gh-story--lead) .gh-card-link {
    display: none;
  }
}

html.font-size-large .gh-hero__content,
html.font-size-extra-large .gh-hero__content {
  min-width: 0;
}

@media (min-width: 1241px) and (max-width: 1440px) {
  html.font-size-extra-large .gh-hero__shell {
    grid-template-columns: 1fr;
  }

  html.font-size-extra-large .gh-hero__visual {
    min-height: 0;
    aspect-ratio: 16 / 7;
  }
}

@media (max-width: 360px) {
  .gh-search svg {
    display: none;
  }

  .gh-search {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .gh-intents > a {
    grid-template-columns: 1fr;
  }

  .gh-intents__icon {
    display: none;
  }
}

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