:root {
  --gs-ink: #17231f;
  --gs-forest: #145c4b;
  --gs-forest-dark: #0c3d33;
  --gs-cream: #f5f1e8;
  --gs-paper: #fffdf8;
  --gs-coral: #f16f51;
  --gs-coral-text: #a43e27;
  --gs-coral-on-dark: #ff9b82;
  --gs-mint: #cde7da;
  --gs-sky: #c9dbed;
  --gs-line: #d8d9d0;
  --gs-muted: #65706b;
  --gs-shell: 1240px;
  --gs-radius: 1.5rem;
  --gs-shadow: 0 24px 70px rgba(16, 46, 38, 0.12);
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body.gs-site {
  margin: 0;
  padding: 0 !important;
  overflow-x: hidden;
  background: var(--gs-cream);
  color: var(--gs-ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.gs-site :where(.wp-site-blocks) {
  padding: 0;
}

.gs-site :where(.wp-site-blocks) > * {
  margin-block-start: 0;
}

.gs-site a {
  color: inherit;
  text-decoration: none;
}

.gs-site :focus-visible {
  outline: 3px solid var(--gs-forest);
  outline-offset: 3px;
}

.gs-discovery :focus-visible,
.gs-footer :focus-visible {
  outline-color: var(--gs-coral-on-dark);
}

.gs-site img {
  display: block;
  max-width: 100%;
  height: auto;
}

.gs-site button,
.gs-site input {
  font: inherit;
}

.gs-shell {
  width: min(calc(100% - 3rem), var(--gs-shell));
  margin-inline: auto;
}

.gs-skip-link {
  position: fixed;
  z-index: 10000;
  inset: 0 auto auto 1rem;
  padding: 0.8rem 1rem;
  transform: translateY(-140%);
  border-radius: 0 0 0.6rem 0.6rem;
  background: var(--gs-ink);
  color: #fff;
  font-weight: 800;
}

.gs-skip-link:focus {
  transform: translateY(0);
}

.gs-eyebrow,
.gs-kicker {
  margin: 0 0 0.9rem;
  color: var(--gs-coral-text);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.gs-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-bottom: 1px solid currentColor;
  color: var(--gs-forest);
  font-size: 0.92rem;
  font-weight: 750;
  transition: gap 180ms ease, color 180ms ease;
}

.gs-text-link:hover,
.gs-text-link:focus-visible {
  gap: 0.75rem;
  color: var(--gs-coral-text);
}

.gs-topline {
  background: var(--gs-forest-dark);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
}

.gs-topline__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.gs-topline p {
  margin: 0;
}

.gs-topline a {
  color: #fff;
  font-weight: 700;
}

.gs-header {
  position: relative;
  z-index: 200;
  border-bottom: 1px solid rgba(23, 35, 31, 0.09);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(18px);
}

.gs-header__inner {
  display: grid;
  min-height: 88px;
  grid-template-columns: minmax(210px, auto) 1fr auto;
  align-items: center;
  gap: 2.5rem;
}

.gs-brand {
  display: grid;
  width: max-content;
  grid-template-columns: 42px auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 0.7rem;
  color: var(--gs-forest-dark);
}

.gs-brand__mark {
  width: 42px;
  height: 42px;
  grid-row: 1 / 3;
}

.gs-brand__word {
  align-self: end;
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.1;
}

.gs-brand__tag {
  align-self: start;
  color: var(--gs-muted);
  font-size: 0.5rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  line-height: 1.4;
}

.gs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.gs-nav a {
  position: relative;
  padding: 0.75rem 0;
  font-size: 0.92rem;
  font-weight: 720;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.gs-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.4rem;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gs-coral);
  content: "";
  transition: transform 180ms ease;
}

.gs-nav a:hover::after,
.gs-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.gs-header-search {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.95rem;
  border: 1px solid var(--gs-line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 750;
}

.gs-header-search svg,
.gs-hero-search svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.gs-menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--gs-ink);
}

.gs-main {
  min-height: 55vh;
}

.gs-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(205, 231, 218, 0.75), transparent 28rem),
    var(--gs-paper);
}

.gs-hero__grid {
  display: grid;
  min-height: 670px;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding-block: 4.4rem 3.8rem;
}

.gs-kicker {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--gs-forest);
}

.gs-kicker span {
  width: 28px;
  height: 2px;
  background: var(--gs-coral);
}

.gs-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.75rem, 5.2vw, 5.4rem);
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 1.05;
}

.gs-hero h1 em {
  color: var(--gs-forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92em;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.07em;
}

.gs-hero__lead {
  max-width: 580px;
  margin: 1.7rem 0 2rem;
  color: #4f5d57;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  letter-spacing: -0.025em;
}

.gs-hero-search {
  max-width: 610px;
}

.gs-hero-search label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.gs-hero-search__control {
  display: grid;
  padding: 0.45rem;
  border: 1px solid rgba(23, 35, 31, 0.2);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(20, 92, 75, 0.1);
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.7rem;
}

.gs-hero-search__control > svg {
  margin-left: 0.8rem;
  color: var(--gs-muted);
}

.gs-hero-search input {
  min-width: 0;
  padding: 0.75rem 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--gs-ink);
}

.gs-hero-search__control:focus-within {
  border-color: var(--gs-forest);
  outline: 3px solid rgba(20, 92, 75, 0.28);
  outline-offset: 3px;
}

.gs-hero-search input::placeholder {
  color: #929994;
}

.gs-hero-search button {
  min-width: 112px;
  padding: 0.8rem 1.15rem;
  border: 0;
  border-radius: 999px;
  background: var(--gs-forest);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  transition: background 180ms ease, transform 180ms ease;
}

.gs-hero-search button:hover,
.gs-hero-search button:focus-visible {
  transform: translateY(-1px);
  background: var(--gs-forest-dark);
}

.gs-hero__quick {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  font-size: 0.75rem;
}

.gs-hero__quick > span {
  color: var(--gs-muted);
  font-weight: 700;
}

.gs-hero__quick a {
  padding: 0.28rem 0.66rem;
  border: 1px solid var(--gs-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.gs-hero__quick a:hover,
.gs-hero__quick a:focus-visible {
  border-color: var(--gs-coral-text);
  color: var(--gs-coral-text);
}

.gs-hero__visual {
  position: relative;
  margin: 0;
}

.gs-hero__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 18rem 18rem 1.6rem 1.6rem;
  background: var(--gs-mint);
  box-shadow: var(--gs-shadow);
}

.gs-hero__image-wrap::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 31, 25, 0.18), transparent 45%);
  content: "";
  pointer-events: none;
}

.gs-hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

.gs-hero__badge {
  position: absolute;
  z-index: 3;
  right: -1px;
  bottom: -1px;
  display: flex;
  width: 200px;
  min-height: 108px;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem;
  border-radius: 1.5rem 0 0 0;
  background: var(--gs-coral);
  color: var(--gs-ink);
}

.gs-hero__badge strong {
  font-family: Georgia, serif;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1;
}

.gs-hero__badge span {
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

.gs-hero__visual figcaption {
  margin-top: 0.6rem;
  color: var(--gs-muted);
  font-size: 0.68rem;
  text-align: right;
}

.gs-hero__ticker {
  overflow: hidden;
  border-top: 1px solid rgba(23, 35, 31, 0.09);
  background: var(--gs-cream);
}

.gs-hero__ticker .gs-shell {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--gs-forest-dark);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.gs-hero__ticker i {
  width: 4px;
  height: 4px;
  flex: 0 0 4px;
  border-radius: 50%;
  background: var(--gs-coral);
}

.gs-section {
  padding-block: clamp(5rem, 9vw, 8rem);
}

.gs-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.gs-section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3.3vw, 3.25rem);
  font-weight: 830;
  letter-spacing: -0.065em;
  line-height: 1.1;
}

.gs-section-heading > p {
  max-width: 420px;
  margin: 0;
  color: var(--gs-muted);
  font-size: 0.92rem;
}

.gs-categories {
  background: var(--gs-cream);
}

.gs-category-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(23, 35, 31, 0.15);
  border-radius: var(--gs-radius);
  background: var(--gs-line);
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gs-category-card {
  position: relative;
  display: grid;
  min-height: 250px;
  padding: 1.55rem;
  background: var(--gs-paper);
  transition: background 180ms ease, color 180ms ease;
}

.gs-category-card:hover,
.gs-category-card:focus-visible {
  outline: 0;
  background: var(--gs-forest);
  color: #fff;
}

.gs-category-card:focus-visible {
  outline: 3px solid var(--gs-forest-dark);
  outline-offset: 3px;
}

.gs-category-card__number {
  position: absolute;
  top: 1.2rem;
  right: 1.35rem;
  color: var(--gs-muted);
  font-family: Georgia, serif;
  font-size: 0.75rem;
}

.gs-category-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--gs-mint);
  color: var(--gs-forest-dark);
}

.gs-category-card__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.gs-category-card strong {
  align-self: end;
  font-size: 1.28rem;
  font-weight: 820;
  letter-spacing: -0.04em;
}

.gs-category-card > span:not(.gs-category-card__number, .gs-category-card__icon) {
  max-width: 210px;
  margin-top: 0.35rem;
  color: var(--gs-muted);
  font-size: 0.82rem;
}

.gs-category-card:hover > span,
.gs-category-card:focus-visible > span {
  color: rgba(255, 255, 255, 0.76);
}

.gs-category-card:hover .gs-category-card__icon,
.gs-category-card:focus-visible .gs-category-card__icon {
  background: var(--gs-coral);
  color: #fff;
}

.gs-category-card > i {
  position: absolute;
  right: 1.3rem;
  bottom: 1.3rem;
  font-size: 1.2rem;
  font-style: normal;
}

.gs-discovery {
  background: var(--gs-forest-dark);
  color: #fff;
}

.gs-section-heading--light h2,
.gs-section-heading--light .gs-eyebrow {
  color: #fff;
}

.gs-section-heading--light > p {
  color: rgba(255, 255, 255, 0.66);
}

.gs-discovery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.2rem;
}

.gs-discovery-card {
  overflow: hidden;
  border-radius: var(--gs-radius);
  background: var(--gs-paper);
  color: var(--gs-ink);
}

.gs-discovery-card--wide {
  grid-row: span 2;
}

.gs-discovery-card > a {
  display: grid;
  height: 100%;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
}

.gs-discovery-card:not(.gs-discovery-card--wide) > a {
  grid-template-columns: minmax(180px, 0.9fr) minmax(240px, 1.1fr);
}

.gs-discovery-card__image {
  overflow: hidden;
  min-height: 260px;
}

.gs-discovery-card--wide .gs-discovery-card__image {
  min-height: 610px;
}

.gs-discovery-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gs-discovery-card:hover .gs-discovery-card__image img,
.gs-discovery-card:focus-within .gs-discovery-card__image img {
  transform: scale(1.035);
}

.gs-discovery-card__copy {
  display: flex;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  flex-direction: column;
  justify-content: center;
}

.gs-discovery-card__copy > p {
  margin: 0 0 auto;
  color: var(--gs-coral-text);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.gs-discovery-card__copy h3 {
  margin: 1.5rem 0 0.75rem;
  font-size: clamp(1.35rem, 2.4vw, 2.5rem);
  font-weight: 820;
  letter-spacing: -0.055em;
  line-height: 1.2;
}

.gs-discovery-card:not(.gs-discovery-card--wide) .gs-discovery-card__copy h3 {
  margin-top: 0.6rem;
  font-size: clamp(1.2rem, 1.6vw, 1.7rem);
}

.gs-discovery-card__copy > span {
  color: var(--gs-muted);
  font-size: 0.82rem;
}

.gs-discovery-card__copy > i {
  margin-top: auto;
  padding-top: 1.25rem;
  color: var(--gs-forest);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 800;
}

.gs-image-note {
  margin: 1rem 0 0;
  color: #b8cbc5;
  font-size: 0.75rem;
  text-align: right;
}

.gs-latest {
  background: var(--gs-paper);
}

.gs-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.gs-story-card {
  overflow: hidden;
  border: 1px solid var(--gs-line);
  border-radius: 1.2rem;
  background: #fff;
}

.gs-story-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.gs-story-card__image-note {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  padding: 0.28rem 0.52rem;
  border-radius: 999px;
  background: rgba(23, 35, 31, 0.88);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 750;
}

.gs-story-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.gs-story-card:hover .gs-story-card__image img {
  transform: scale(1.03);
}

.gs-story-card__body {
  padding: 1.35rem;
}

.gs-story-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--gs-muted);
  font-size: 0.75rem;
}

.gs-story-card__meta span:first-child {
  color: var(--gs-coral-text);
  font-weight: 800;
}

.gs-story-card h3 {
  margin: 0.8rem 0 0.55rem;
  font-size: 1.25rem;
  letter-spacing: -0.045em;
  line-height: 1.35;
}

.gs-story-card h3 a:hover,
.gs-story-card h3 a:focus-visible {
  color: var(--gs-forest);
}

.gs-story-card__body > p {
  margin: 0;
  color: var(--gs-muted);
  font-size: 0.83rem;
}

.gs-empty-editorial {
  display: grid;
  padding: clamp(1.5rem, 4vw, 3.2rem);
  border: 1px dashed rgba(20, 92, 75, 0.35);
  border-radius: var(--gs-radius);
  background: linear-gradient(135deg, rgba(205, 231, 218, 0.55), rgba(255, 253, 248, 0.9));
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
}

.gs-empty-editorial__mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--gs-forest);
  color: #fff;
  font-size: 1.3rem;
}

.gs-empty-editorial h3,
.gs-empty-editorial h2 {
  margin: 0 0 0.3rem;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.gs-empty-editorial p {
  margin: 0;
  color: var(--gs-muted);
  font-size: 0.84rem;
}

.gs-empty-editorial .gs-eyebrow {
  margin-bottom: 0.25rem;
  color: var(--gs-forest);
}

.gs-trust {
  background: var(--gs-coral);
  color: var(--gs-ink);
}

.gs-trust__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.gs-trust .gs-eyebrow {
  color: var(--gs-ink);
}

.gs-trust h2 {
  margin: 0 0 2rem;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  letter-spacing: -0.065em;
  line-height: 1.15;
}

.gs-trust .gs-text-link {
  color: var(--gs-ink);
}

.gs-trust__steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(23, 35, 31, 0.32);
  list-style: none;
}

.gs-trust__steps li {
  display: grid;
  padding: 1.55rem 0;
  border-bottom: 1px solid rgba(23, 35, 31, 0.32);
  grid-template-columns: 48px 1fr;
  gap: 1rem;
}

.gs-trust__steps li > span {
  font-family: Georgia, serif;
  font-size: 0.8rem;
}

.gs-trust__steps strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.gs-trust__steps p {
  margin: 0;
  color: rgba(23, 35, 31, 0.72);
  font-size: 0.84rem;
}

.gs-footer {
  padding-top: 5rem;
  background: var(--gs-ink);
  color: #fff;
}

.gs-footer__grid {
  display: grid;
  padding-bottom: 4rem;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.gs-brand--footer {
  color: #fff;
}

.gs-footer__brand > p {
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

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

.gs-footer__nav > div {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.gs-footer__label {
  margin: 0 0 0.65rem;
  color: #a1aaa7;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gs-footer__nav a {
  width: max-content;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
}

.gs-footer__nav a:hover,
.gs-footer__nav a:focus-visible {
  color: var(--gs-coral-on-dark);
}

.gs-footer__bottom {
  display: flex;
  padding-block: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  justify-content: space-between;
  gap: 2rem;
  color: #a1aaa7;
  font-size: 0.75rem;
}

.gs-footer__bottom p {
  margin: 0;
}

.gs-page,
.gs-archive,
.gs-single,
.gs-search-page,
.gs-index,
.gs-not-found {
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.gs-page > .wp-block-post-content,
.gs-single > .wp-block-post-content {
  width: min(100%, 760px);
  margin-inline: auto;
}

.gs-page > .wp-block-post-content > :first-child,
.gs-page > .wp-block-post-content > .component:first-child {
  margin-top: 0;
}

.gs-page .wp-block-post-content h1,
.gs-page__header h1,
.gs-archive__header h1,
.gs-single__hero h1,
.gs-search-page h1,
.gs-not-found h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  letter-spacing: -0.07em;
  line-height: 1.08;
}

.gs-page .wp-block-post-content > h1:first-child,
.gs-page .wp-block-post-content > h2:first-child {
  position: relative;
  padding-top: 1.2rem;
}

.gs-page .wp-block-post-content > h1:first-child::before,
.gs-page .wp-block-post-content > h2:first-child::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gs-coral);
  content: "";
}

.gs-page .component,
.gs-page .wp-block-group {
  max-width: 100%;
}

.gs-page .component {
  margin-block: 1.5rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--gs-line);
  border-radius: 1.1rem;
  background: var(--gs-paper);
}

.gs-page .component h2 {
  margin-top: 0;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.gs-page .wp-block-button__link,
.gs-single .wp-block-button__link,
.gs-not-found .wp-block-button__link {
  padding: 0.8rem 1.25rem;
  background: var(--gs-forest);
  color: #fff;
}

.gs-archive__header {
  display: grid;
  max-width: var(--gs-shell);
  margin-bottom: 3rem;
  grid-template-columns: 1fr minmax(300px, 0.55fr);
  align-items: end;
  gap: 1rem 3rem;
}

.gs-archive__header .gs-eyebrow,
.gs-archive__header h1 {
  grid-column: 1;
}

.gs-archive__header > p:not(.gs-eyebrow),
.gs-archive__header .wp-block-search {
  grid-column: 2;
}

.gs-archive__header > p:not(.gs-eyebrow) {
  margin: 0;
  color: var(--gs-muted);
}

.gs-archive__header .wp-block-search__inside-wrapper,
.gs-search-page .wp-block-search__inside-wrapper {
  padding: 0.35rem;
  border: 1px solid var(--gs-line);
  border-radius: 999px;
  background: #fff;
}

.gs-archive__header .wp-block-search__input,
.gs-search-page .wp-block-search__input {
  min-width: 0;
  border: 0;
  background: transparent;
}

.gs-archive__header .wp-block-search__button,
.gs-search-page .wp-block-search__button {
  margin: 0;
  border-radius: 50%;
  background: var(--gs-forest);
  color: #fff;
}

.gs-query {
  max-width: var(--gs-shell);
}

.gs-query__grid {
  gap: 1.2rem;
}

.gs-result-card {
  overflow: hidden;
  padding: 0 0 1.4rem;
  border: 1px solid var(--gs-line);
  border-radius: 1.2rem;
  background: var(--gs-paper);
}

.gs-result-card > *:not(.gs-result-card__image) {
  margin-right: 1.25rem;
  margin-left: 1.25rem;
}

.gs-result-card__image {
  overflow: hidden;
  margin: 0 0 1.2rem;
  background: var(--gs-mint);
}

.gs-result-card h2 {
  margin-top: 0.7rem;
  font-size: 1.3rem;
  line-height: 1.35;
}

.gs-result-card__terms,
.gs-result-card__date {
  color: var(--gs-muted);
  font-size: 0.7rem;
}

.gs-single__hero {
  max-width: 980px;
  margin-bottom: 2.2rem;
}

.gs-single__terms {
  color: var(--gs-coral-text);
  font-size: 0.78rem;
  font-weight: 800;
}

.gs-single__hero > p {
  max-width: 720px;
  color: var(--gs-muted);
  font-size: 1.1rem;
}

.gs-single__meta {
  color: var(--gs-muted);
  font-size: 0.76rem;
}

.gs-single__image {
  overflow: hidden;
  max-width: var(--gs-shell);
  margin-bottom: 3.5rem;
  border-radius: var(--gs-radius);
}

.gs-single > .wp-block-post-content h2 {
  margin-top: 3rem;
  font-size: 1.75rem;
}

.gs-source-reminder {
  max-width: 900px;
  margin-top: 4rem;
  padding: 2rem;
  border-radius: 1.2rem;
  background: var(--gs-mint);
}

.gs-source-reminder h2 {
  margin-top: 0;
}

.gs-search-results {
  display: grid;
  gap: 1rem;
}

.gs-search-result {
  padding: 1.5rem;
  border-bottom: 1px solid var(--gs-line);
}

.gs-search-result h2 {
  margin: 0 0 0.5rem;
}

.gs-not-found {
  max-width: 720px;
  min-height: 65vh;
  justify-content: center;
}

@media (max-width: 1080px) {
  .gs-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
  }

  .gs-nav {
    gap: 1rem;
  }

  .gs-nav a {
    font-size: 0.82rem;
  }

  .gs-brand__tag,
  .gs-header-search span {
    display: none;
  }

  .gs-hero__grid {
    min-height: 600px;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 2.5rem;
  }

  .gs-discovery-card > a,
  .gs-discovery-card:not(.gs-discovery-card--wide) > a {
    grid-template-columns: 1fr;
  }

  .gs-discovery-card--wide .gs-discovery-card__image {
    min-height: 430px;
  }

  .gs-discovery-card__image {
    min-height: 230px;
  }
}

@media (max-width: 860px) {
  .gs-topline {
    display: none;
  }

  .gs-header {
    position: sticky;
    top: 0;
  }

  .gs-header__inner {
    min-height: 72px;
    grid-template-columns: 1fr auto;
  }

  .gs-brand {
    grid-template-columns: 36px auto;
  }

  .gs-brand__mark {
    width: 36px;
    height: 36px;
  }

  .gs-brand__word {
    align-self: center;
    font-size: 1.08rem;
  }

  .gs-menu-toggle {
    display: inline-flex;
    min-width: 58px;
    padding: 0.55rem;
    align-items: center;
    justify-content: flex-end;
    gap: 0.6rem;
    cursor: pointer;
  }

  .gs-menu-toggle__label {
    font-size: 0.7rem;
    font-weight: 800;
  }

  .gs-menu-toggle__icon {
    display: grid;
    width: 22px;
    gap: 5px;
  }

  .gs-menu-toggle__icon i {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .gs-menu-toggle[aria-expanded="true"] .gs-menu-toggle__icon i:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .gs-menu-toggle[aria-expanded="true"] .gs-menu-toggle__icon i:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .gs-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 1rem 1.5rem 1.6rem;
    border-top: 1px solid var(--gs-line);
    background: var(--gs-paper);
    box-shadow: 0 20px 35px rgba(23, 35, 31, 0.12);
    flex-direction: column;
    align-items: stretch;
  }

  .gs-header[data-open="true"] .gs-nav {
    display: flex;
  }

  .gs-nav a {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(23, 35, 31, 0.08);
    font-size: 0.95rem;
  }

  .gs-header-search {
    display: none;
  }

  .gs-hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 2.4rem;
    padding-block: 3.5rem 2.5rem;
  }

  .gs-hero__copy {
    max-width: 680px;
  }

  .gs-hero__visual {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .gs-hero__image-wrap {
    aspect-ratio: 4 / 3;
    border-radius: 12rem 12rem 1.4rem 1.4rem;
  }

  .gs-hero__image-wrap img {
    object-position: 55% center;
  }

  .gs-hero__ticker .gs-shell {
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .gs-hero__ticker span {
    padding-right: 1.2rem;
  }

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

  .gs-discovery-grid {
    grid-template-columns: 1fr;
  }

  .gs-discovery-card--wide {
    grid-row: auto;
  }

  .gs-discovery-card > a,
  .gs-discovery-card:not(.gs-discovery-card--wide) > a {
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  }

  .gs-discovery-card--wide .gs-discovery-card__image,
  .gs-discovery-card__image {
    min-height: 310px;
  }

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

  .gs-trust__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .gs-footer__grid {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .gs-archive__header {
    grid-template-columns: 1fr;
  }

  .gs-archive__header > p:not(.gs-eyebrow),
  .gs-archive__header .wp-block-search {
    grid-column: 1;
  }

  .gs-query__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 600px) {
  .gs-shell {
    width: min(calc(100% - 2rem), var(--gs-shell));
  }

  .gs-hero__grid {
    padding-top: 2.7rem;
  }

  .gs-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.5rem);
  }

  .gs-hero__lead {
    margin-block: 1.25rem 1.5rem;
    font-size: 0.94rem;
  }

  .gs-hero-search__control {
    border-radius: 1rem;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .gs-hero-search button {
    grid-column: 1 / -1;
    width: 100%;
    border-radius: 0.7rem;
  }

  .gs-hero__quick {
    align-items: flex-start;
  }

  .gs-hero__quick > span {
    width: 100%;
  }

  .gs-hero__image-wrap {
    aspect-ratio: 1 / 1.08;
    border-radius: 8rem 8rem 1.2rem 1.2rem;
  }

  .gs-hero__image-wrap img {
    object-position: 58% center;
  }

  .gs-hero__badge {
    width: 170px;
    min-height: 86px;
    padding: 0.9rem 1rem;
  }

  .gs-hero__badge strong {
    font-size: 2.25rem;
  }

  .gs-section {
    padding-block: 4.5rem;
  }

  .gs-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.8rem;
  }

  .gs-section-heading > p {
    font-size: 0.82rem;
  }

  .gs-category-grid {
    grid-template-columns: 1fr;
  }

  .gs-category-card {
    min-height: 190px;
  }

  .gs-discovery-card > a,
  .gs-discovery-card:not(.gs-discovery-card--wide) > a {
    grid-template-columns: 1fr;
  }

  .gs-discovery-card--wide .gs-discovery-card__image,
  .gs-discovery-card__image {
    min-height: 260px;
  }

  .gs-discovery-card__copy h3,
  .gs-discovery-card:not(.gs-discovery-card--wide) .gs-discovery-card__copy h3 {
    font-size: 1.5rem;
  }

  .gs-story-grid,
  .gs-query__grid {
    grid-template-columns: 1fr !important;
  }

  .gs-empty-editorial {
    grid-template-columns: 1fr;
  }

  .gs-empty-editorial__mark {
    width: 46px;
    height: 46px;
  }

  .gs-footer {
    padding-top: 3.5rem;
  }

  .gs-footer__grid,
  .gs-footer__nav {
    grid-template-columns: 1fr;
  }

  .gs-footer__bottom {
    flex-direction: column;
    gap: 0.45rem;
  }

  .gs-page,
  .gs-archive,
  .gs-single,
  .gs-search-page,
  .gs-index,
  .gs-not-found {
    padding-block: 3rem;
  }

  .gs-page .wp-block-post-content h1,
  .gs-page__header h1,
  .gs-archive__header h1,
  .gs-single__hero h1,
  .gs-search-page h1,
  .gs-not-found h1 {
    font-size: 2.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (prefers-contrast: more) {
  .gs-category-card,
  .gs-result-card,
  .gs-story-card {
    border-color: var(--gs-ink);
  }
}
