/* Tokens */
:root {
  --bg: #f4f1e8;
  --card: #ffffff;
  --line: #dce4dd;
  --line-strong: #cad4cb;
  --text: #16231d;
  --muted: #5c685f;
  --font-size-body-sm: 0.9375rem;
  --font-size-body: 1rem;
  --font-size-body-lg: 1.125rem;
  --font-size-title-sm: 1.1875rem;
  --font-size-title-md: 1.375rem;
  --font-size-title-lg: 1.5rem;
  --button-height: 3rem;
  --button-padding-x: 1.375rem;
  --button-font-size: 0.9375rem;
  --button-shadow: 0 4px 10px rgba(20, 30, 25, 0.04);
  --button-green-bg: linear-gradient(180deg, var(--green-800), var(--green-900));
  --button-green-hover-bg: linear-gradient(180deg, #1f6946 0%, #14452f 100%);
  --button-green-border: rgba(17, 43, 30, 0.08);
  --button-green-hover-border: #113b28;
  --button-red-bg: linear-gradient(180deg, #b54b39, #983a2c);
  --button-red-border: rgba(122, 39, 28, 0.16);
  --mobile-gutter: 16px;
  --green-950: #173024;
  --green-900: #1e3a2c;
  --green-800: #264837;
  --green-700: #315543;
  --green-100: #eff4ef;
  --orange: #e07a2f;
  --orange-dark: #cc6519;
  --orange-soft: #fff5eb;
  --danger: #a93d2d;
  --shadow: 0 20px 48px rgba(17, 30, 24, 0.08);
  --max: 1680px;
}

/* Base */
* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(46, 73, 56, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(223, 122, 47, 0.08), transparent 26%),
    linear-gradient(180deg, #fcfbf7 0%, var(--bg) 100%);
  color: var(--text);
  font-family: "Titillium Web", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* Shell and navigation */
.page-shell {
  width: min(calc(100% - 24px), var(--max));
  margin: 12px auto 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(34, 52, 41, 0.1);
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(22, 31, 26, 0.1);
}

.accent-divider {
  display: block;
  width: 56px;
  height: 4px;
  margin: 18px 0 0;
  background: linear-gradient(90deg, var(--orange), #ff9b53);
}

.accent-divider--small {
  width: 42px;
  height: 3px;
  margin: 0 0 10px;
}

.inline-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green-900);
  font-family: "Titillium Web", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.inline-arrow-link::after {
  content: "→";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  color: var(--orange);
  font-size: 22px;
  line-height: 1;
  transform: translateY(-0.08em);
}

.inline-arrow-link--compact {
  font-size: 15px;
}

.inline-arrow-link--compact::after {
  font-size: 22px;
}

.mobile-menu {
  display: none;
}

.mobile-menu.show {
  display: block;
}

.site-header {
  grid-template-columns: 360px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 96px;
  padding: 16px 34px 15px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: grid;
  gap: 6px;
  position: relative;
  width: fit-content;
  padding-right: 34px;
}

.brand::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  width: 1px;
  height: 48px;
  background: #d9d7cf;
}

.brand__title {
  font-family: "Titillium Web", sans-serif;
  font-size: 31px;
  font-weight: 600;
  color: var(--green-900);
  letter-spacing: -0.03em;
  line-height: 0.94;
}

.brand__subtitle {
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.12;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-left: auto;
}

#desktopMenuTarget,
.desktop-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 42px;
  width: 100%;
}

.desktop-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-menu li {
  display: flex;
}

.desktop-menu a,
.site-nav > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(12, 35, 25, 0.96);
  white-space: nowrap;
}

.desktop-menu a:hover,
.desktop-menu a:focus-visible,
.site-nav > a:hover,
.site-nav > a:focus-visible {
  color: var(--green-900);
}

.desktop-menu a {
  position: relative;
}

.desktop-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, var(--orange), #ff9b53);
  transition: transform 180ms ease;
}

.desktop-menu a:hover::after,
.desktop-menu a:focus-visible::after {
  transform: scaleX(1);
}

/* Buttons */
.site-btn {
  --bs-btn-padding-x: var(--button-padding-x);
  --bs-btn-padding-y: 0;
  --bs-btn-font-family: "Titillium Web", sans-serif;
  --bs-btn-font-size: var(--button-font-size);
  --bs-btn-font-weight: 700;
  --bs-btn-line-height: 1;
  --bs-btn-border-width: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: var(--button-height);
  padding: 0 var(--button-padding-x);
  border: 1px solid transparent;
  font-family: "Titillium Web", sans-serif;
  font-size: var(--button-font-size);
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-btn:hover,
.site-btn:focus-visible {
  box-shadow: 0 14px 30px rgba(20, 33, 27, 0.12);
}

.site-btn:focus-visible {
  outline: 2px solid rgba(26, 95, 61, 0.25);
  outline-offset: 2px;
}

.site-btn--light {
  background: #fff;
  border-color: var(--line);
  color: var(--text);
}

.site-btn--light:hover,
.site-btn--light:focus-visible {
  background: linear-gradient(180deg, #fffdf9, #f6f1e6);
  border-color: rgba(53, 82, 64, 0.2);
  color: var(--green-900);
}

.site-btn--primary {
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  --bs-btn-active-color: #fff;
  box-shadow: var(--button-shadow);
}

.site-btn--primary,
.btn-success {
  border-color: var(--button-green-border);
  background: var(--button-green-bg);
  color: #fff;
}

.site-btn--primary:hover,
.site-btn--primary:focus-visible,
.site-btn--primary:active,
.btn-success:hover,
.btn-success:focus-visible,
.btn-success:active {
  background: var(--button-green-hover-bg);
  border-color: var(--button-green-hover-border);
  color: #fff;
}

.site-btn--danger {
  background: var(--button-red-bg);
  border-color: var(--button-red-border);
  color: #fff;
  box-shadow: var(--button-shadow);
}

.site-btn--danger:hover,
.site-btn--danger:focus-visible,
.site-btn--danger:active {
  background: linear-gradient(180deg, #c86049 0%, #a84334 100%);
  border-color: #8c3327;
  color: #fff;
}

.btn-success {
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  --bs-btn-active-color: #fff;
}

.site-btn.btn-sm {
  min-height: var(--button-height);
  padding: 0 var(--button-padding-x);
  font-size: var(--button-font-size);
}

.site-btn--wide {
  width: 100%;
}

.site-btn--arrow {
  justify-content: space-between;
  gap: 16px;
}

.site-btn--icon i {
  font-size: 18px;
}

.content {
  padding: 0 34px 34px;
}

/* Advertising */
.fs-site-ad-placement {
  position: relative;
  width: 100%;
  margin: 18px 0 12px;
  padding: 10px 0 12px;
  border-top: 1px solid rgba(30, 58, 44, 0.1);
  border-bottom: 1px solid rgba(30, 58, 44, 0.08);
}

.fs-site-ad-placement--home-break {
  margin: 18px 0 0;
}

.fs-site-ad-placement--section-break {
  margin: 2px 0 2px;
}

.fs-site-ad-placement--footer-break {
  width: auto;
  margin: 18px 34px 0;
}

.site-ad,
.fs-site-ad {
  width: 320px;
  max-width: none;
  margin: 0.35rem auto 0.65rem;
}

.site-ad-label,
.fs-site-ad__label {
  margin-bottom: 5px;
  color: rgba(92, 104, 95, 0.82);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0;
  text-align: right;
}

.site-ad-frame,
.fs-site-ad__frame {
  position: relative;
  box-sizing: border-box;
  width: 320px;
  height: 100px;
  overflow: hidden;
  border: 0;
  outline: 1px solid rgba(30, 58, 44, 0.16);
  outline-offset: -1px;
  border-radius: 6px;
  background: #f3efe4;
}

.site-ad-click-layer,
.fs-site-ad__click-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  background: transparent;
}

.site-ad-link,
.fs-site-ad__link {
  display: block;
  width: 100%;
  height: 100%;
}

.site-ad-picture,
.site-ad-img,
.site-ad-iframe,
.fs-site-ad__picture,
.fs-site-ad__img,
.fs-site-ad__iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  overflow: hidden;
}

.site-ad-img,
.fs-site-ad__img {
  object-fit: cover;
}

.site-ad-iframe,
.fs-site-ad__iframe {
  scrollbar-width: none;
}

@media (min-width: 992px) {
  .site-ad,
  .fs-site-ad {
    width: 728px;
  }

  .site-ad-frame,
  .fs-site-ad__frame {
    width: 728px;
    height: 90px;
  }
}

@media (min-width: 1200px) {
  .site-ad,
  .fs-site-ad {
    width: 970px;
  }

  .site-ad-frame,
  .fs-site-ad__frame {
    width: 970px;
    height: 250px;
  }
}

.admin-preview-layout {
  background: #eef6fb;
}

.page-shell--admin-preview {
  min-height: 100vh;
  border-radius: 0;
}

.content--admin-preview {
  padding: 0 24px 24px;
}

.admin-preview-banner {
  margin: 18px 0 22px;
  padding: 14px 16px;
  border: 1px solid #d8c99a;
  background: #fff4cf;
  color: #3f2f09;
  font-size: 0.98rem;
  line-height: 1.45;
}

.admin-preview-banner strong {
  color: #2b2107;
}

/* Home hero, search and promo */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  gap: 0;
  margin: 0 -34px;
  padding-top: 0;
  border-top: 1px solid #ece4d6;
  border-bottom: 1px solid #ece4d6;
  background:
    radial-gradient(circle at left center, rgba(223, 122, 47, 0.05), transparent 24%),
    linear-gradient(180deg, #fcfaf5 0%, #f7f3ea 100%);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
  filter: none;
  pointer-events: none;
  z-index: 0;
}

.hero-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(252, 250, 245, 0) 0%, rgba(252, 250, 245, 0) 20%, rgba(252, 250, 245, 0.2) 34%, rgba(252, 250, 245, 0.75) 48%, #fcfaf5 72%, #fcfaf5 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-panel {
  position: relative;
  z-index: 1;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-panel--feature {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

.hero-panel--feature::after {
  content: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 700px);
  margin: 0;
  padding: 0 44px;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Titillium Web", sans-serif;
  font-size: clamp(58px, 4.8vw, 78px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #072d1e;
  max-width: none;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-copy p {
  max-width: 34ch;
  margin: 18px 0 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.32;
  color: #3c463f;
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  width: 100%;
  margin-top: 28px;
}

.hero-action {
  flex: 1 1 0;
  text-align: center;
  white-space: nowrap;
  min-width: 0;
}

.hero-action i {
  font-size: 18px;
}

.hero-secondary-links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin-top: 16px;
}

.hero-secondary-link {
  min-height: 48px;
  padding: 0 22px;
  flex: 0 1 auto;
  min-width: 0;
  border: 1px solid rgba(226, 220, 209, 0.95);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 10px rgba(20, 30, 25, 0.04);
  white-space: nowrap;
  justify-content: center;
}

.section-heading .inline-arrow-link,
.section-heading .inline-arrow-link--compact,
.panel-footer-link.inline-arrow-link,
.hero-secondary-link {
  font-size: 15px;
  line-height: 1.2;
}

.hero-secondary-link::after {
  margin-top: 0;
}

.hero-panel--schedule {
  display: grid;
  align-content: stretch;
  padding: 18px 18px 12px 18px;
  background: transparent;
  overflow: hidden;
}

.hero-panel--schedule::before {
  content: "";
  position: absolute;
  inset: 12px 12px 10px 12px;
  border: 1px solid #eae3d5;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 249, 243, 0.98));
  box-shadow: 0 10px 28px rgba(21, 33, 27, 0.05);
}

.hero-panel--schedule > * {
  position: relative;
  z-index: 1;
}

.hero-panel--schedule .panel-heading,
.hero-panel--schedule .event-list,
.hero-panel--schedule .panel-footer-link {
  margin-left: 18px;
  margin-right: 18px;
}

.hero-panel--schedule .panel-heading {
  margin-top: 18px;
  margin-bottom: 18px;
}

.panel-heading,
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
}

.panel-heading h2,
.section-heading h2,
.promo-card__copy h2,
.market-intro h2,
.market-feed h2,
.guide-block h2,
.page-card__header h1 {
  font-family: "Titillium Web", sans-serif;
}

.panel-heading--calendar h2 {
  font-size: 22px;
  font-weight: 700;
}

.panel-heading h2,
.section-heading h2,
.promo-card__copy h2,
.search-strip__intro h2,
.market-intro h2 {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
}

.panel-heading a,
.section-heading a,
.panel-footer-link,
.read-more {
  color: var(--green-900);
  font-size: 15px;
  font-weight: 700;
}

.event-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  border-top: 0;
}

.event-row {
  padding: 14px 14px 14px 12px;
  border: 1px solid #efe8db;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(32, 42, 37, 0.02);
}

a.event-row {
  color: inherit;
  text-decoration: none;
}

a.event-row:hover,
a.event-row:focus-visible {
  border-color: #ddcdb2;
  box-shadow: 0 10px 22px rgba(32, 42, 37, 0.08);
}

.event-date {
  display: grid;
  justify-items: center;
  gap: 0;
  flex-basis: 58px;
  width: 58px;
  min-height: 58px;
  padding: 7px 0 5px;
  border-right: 0;
  background: #f5f1e5;
}

.event-date__month {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #355240;
}

.event-date strong {
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.event-body {
  min-width: 0;
}

.event-body__topline {
  min-width: 0;
}

.event-body h3,
.news-card__body h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
}

.event-body p,
.news-card__body p,
.promo-card__copy p,
.market-intro p,
.footer-brand p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.4;
}

.event-body p i,
.market-offer__body p i,
.market-intro h3 i,
.section-heading h2 i,
.panel-heading h2 i {
  color: var(--green-900);
}

.event-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-900);
  background: #f8f5ee;
  white-space: nowrap;
}

.event-tag--orange { color: #da6e19; }
.event-tag--green { color: #355240; }
.event-tag--blue { color: #d86b17; }
.event-tag--purple { color: #2f4c8a; }

.event-more {
  white-space: nowrap;
  min-width: 0;
  font-size: 14px;
  font-weight: 400;
  color: #8b8f95;
  text-align: right;
}

.event-more i {
  color: #8b8f95;
}

.event-more span {
  text-align: right;
}

.panel-footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  margin-bottom: 18px;
  font-size: 15px;
}

.search-strip {
  display: grid;
  grid-template-columns: minmax(420px, 0.98fr) minmax(0, 1.02fr);
  align-items: end;
  gap: 26px;
  margin-left: -34px;
  margin-right: -34px;
  padding: 18px 34px 20px;
  border-top: 1px solid #ece4d6;
  background: linear-gradient(180deg, #fffdf8, #fffefb);
}

.search-strip__lead {
  display: grid;
  gap: 12px;
}

.search-strip__intro {
  display: grid;
  gap: 8px;
}

.search-strip__intro h2 {
  color: var(--green-900);
}

.search-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 156px;
  gap: 16px;
  margin-top: 0;
  align-items: stretch;
  align-self: end;
  position: relative;
  padding-left: 28px;
}

.search-controls::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  bottom: 1px;
  width: 1px;
  background: var(--line);
}

.search-mode {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.site-btn--dropdown {
  justify-content: space-between;
}

.site-btn--dropdown.dropdown-toggle::after {
  margin-left: auto;
}

.search-mode-mobile__menu {
  width: 100%;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(20, 30, 25, 0.12);
  z-index: 1200;
}

.search-mode__option {
  position: relative;
}

.search-mode__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.search-mode__option span,
.search-input {
  display: flex;
  align-items: center;
  min-height: 56px;
  background: #faf8f1;
  color: var(--text);
  padding: 0 16px;
  border: 1px solid #ece7da;
  font-size: var(--font-size-body);
  font-weight: 500;
}

.search-mode__option span {
  min-height: var(--button-height);
  padding: 0 var(--button-padding-x);
  justify-content: center;
  font-size: var(--button-font-size);
  font-weight: 700;
  line-height: 1;
}

.search-mode__option input:checked + span {
  background: var(--button-green-bg);
  color: #fff;
  border-color: var(--button-green-border);
  font-weight: 700;
}

.search-input {
  gap: 12px;
  background: #fff;
  min-height: 56px;
  box-shadow: none;
}

.search-input i {
  color: var(--muted);
  font-size: 20px;
}

.search-input input {
  width: 100%;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: var(--font-size-body);
}

.search-input input::placeholder {
  color: #9da29b;
}

.search-controls .site-btn {
  min-height: var(--button-height);
  height: var(--button-height);
  font-size: var(--button-font-size);
  font-weight: 700;
  align-self: center;
}

.promo-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  min-height: 204px;
  padding: 22px 26px 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #faf8f2);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.promo-card__icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  background: linear-gradient(180deg, var(--green-700), var(--green-900));
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  position: absolute;
  top: 22px;
  left: 26px;
  z-index: 2;
  margin-bottom: 0;
}

.promo-card__copy h2 {
  font-size: var(--font-size-title-lg);
}

.promo-card__copy {
  position: static;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  max-width: 48%;
  min-height: 144px;
  padding-top: 72px;
}

.promo-card__copy p {
  max-width: 360px;
  color: #445046;
  font-size: var(--font-size-body);
  line-height: 1.6;
}

.promo-card__copy .site-btn {
  position: absolute;
  top: 22px;
  right: 26px;
  margin-top: 0;
  z-index: 3;
}

.promo-card__copy h2,
.promo-card__copy p {
  position: relative;
}

.promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--promo-image);
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
  filter: none;
  pointer-events: none;
}

.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(250, 248, 241, 0) 0%, rgba(250, 248, 241, 0) 18%, rgba(250, 248, 241, 0.22) 30%, rgba(250, 248, 241, 0.75) 45%, #faf8f1 72%, #faf8f1 100%);
  pointer-events: none;
}

/* News and article lists */
.news-featured-grid > .col,
.news-regular-grid > .col,
.video-article-grid > .col,
.news-overview__grid > .col {
  min-width: 0;
}

.news-featured-grid > .col > .news-card,
.news-regular-grid > .col > .news-card,
.video-article-grid .news-card,
.news-overview__featured .news-card--featured,
.news-overview__grid > .col > .news-card {
  width: 100%;
}

.news-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.news-card__media-link {
  display: block;
  flex: 0 0 auto;
  background: #fbf7ef;
}

.news-card__image {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  background-color: #cad5cb;
  overflow: hidden;
}

.news-featured-grid .news-card--featured {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(218, 110, 25, 0.38);
  border-top: 4px solid #da6e19;
  background: linear-gradient(180deg, #fff9ef 0%, #fff 46%, #fbf7ef 100%);
  box-shadow: 0 24px 54px rgba(24, 43, 33, 0.16);
}

.news-card--featured .news-card__body {
  gap: 11px;
  padding: 18px 20px 20px;
  background: transparent;
}

.news-featured-grid .news-card--featured .news-card__media-link,
.news-featured-grid .news-card--featured .news-card__image,
.news-featured-grid .news-card--featured .news-card__image img {
  background: transparent;
}

.news-featured-grid .news-card--featured .news-marker--featured {
  width: 36px;
  min-width: 36px;
  min-height: 32px;
  border-color: rgba(218, 110, 25, 0.44);
  background: linear-gradient(180deg, #fff3e0 0%, #f5dcc0 100%);
  box-shadow: 0 12px 24px rgba(218, 110, 25, 0.22);
}

.news-featured-grid .news-card--featured .news-card__body h3 {
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.12;
  color: #182b21;
}

.news-featured-grid .news-card--featured .news-card__body > p:not(.news-meta) {
  font-size: 1rem;
  line-height: 1.48;
}

.news-card--compact .news-card__body {
  gap: 8px;
  padding: 12px 13px 13px;
}

.news-card--compact .news-meta,
.news-card--compact .news-source-link {
  font-size: 0.78rem;
}

.news-card--compact .news-card__body h3 {
  font-size: 1.02rem;
  line-height: 1.16;
}

.news-card--compact .news-card__body > p:not(.news-meta) {
  display: block;
  font-size: 0.96rem;
  line-height: 1.5;
}

.news-card--compact .news-card__actions {
  gap: 8px;
  padding-top: 4px;
}

.news-card--compact .read-more {
  font-size: 0.86rem;
}

.video-article-card {
  border-color: rgba(218, 110, 25, 0.24);
  box-shadow: 0 18px 40px rgba(24, 43, 33, 0.1);
}

.video-article-card__media {
  position: relative;
}

.video-article-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 43, 33, 0.02) 28%, rgba(24, 43, 33, 0.26) 100%);
  pointer-events: none;
}

.video-article-card__play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: rgba(218, 110, 25, 0.94);
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(24, 43, 33, 0.26);
}

.video-article-card__play i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 18px;
  line-height: 0;
  color: currentColor;
  transform: translateX(1px);
}

.video-article-card__play i::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid currentColor;
}

.news-card__image--photo {
  background:
    linear-gradient(180deg, rgba(24, 43, 33, 0.08), rgba(24, 43, 33, 0.16)),
    linear-gradient(135deg, #b3bfaf 0%, #d0c5b1 100%);
}

.news-card__image img,
.article-feed__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #fbf7ef;
}

.news-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  gap: 10px;
  padding: 14px 16px 16px;
}

.news-card__body > * {
  margin: 0;
}

.news-card__markers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-height: 26px;
}

.news-marker {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 26px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.news-marker i {
  font-size: 0.92rem;
  line-height: 1;
}

.news-marker--featured {
  width: 30px;
  min-width: 30px;
  padding: 0;
  border: 1px solid rgba(218, 110, 25, 0.28);
  background: linear-gradient(180deg, #fff4e7 0%, #f6e7d4 100%);
  color: #c3562e;
  box-shadow: 0 8px 18px rgba(218, 110, 25, 0.16);
}

.news-marker--video {
  padding: 0 10px;
  border: 1px solid rgba(24, 43, 33, 0.12);
  background: rgba(24, 43, 33, 0.06);
  color: var(--green-900);
}

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

.news-card h3,
.article-feed__body h3 {
  color: inherit;
}

.news-meta {
  font-size: 13px;
}

.news-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  background: #dc6230;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.news-card__actions {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
}

.news-source-link {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.35;
}

a.news-source-link {
  color: var(--green-900);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.news-card .read-more {
  display: inline-flex;
  margin-left: auto;
  text-align: right;
  white-space: nowrap;
}

.news-overview {
  display: grid;
  gap: 24px;
}

.news-overview__intro {
  display: flex;
  align-items: center;
  min-height: 24px;
}

.news-overview__sections {
  display: grid;
  gap: 24px;
}

.news-overview__section {
  display: grid;
  gap: 16px;
}

.news-overview__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.news-overview__count {
  color: var(--muted);
  font-size: 0.875rem;
}

.news-overview__footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news-search-results {
  display: grid;
  gap: 22px;
}

.news-search-results__group {
  display: grid;
  gap: 12px;
}

.news-search-results__group h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 1.12rem;
}

.topic-search {
  display: grid;
  gap: 6px;
}

.topic-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
}

.topic-search-form .search-input {
  min-height: 48px;
}

.topic-search-form .site-btn {
  min-height: 48px;
}

.topic-search-form__count {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
}

.news-overview__featured,
.news-overview__regular {
  min-width: 0;
}

.news-overview__footer-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-inline: 18px;
  text-decoration: none;
}

.article-feed__empty,
.article-sidebar__empty {
  margin: 0;
  color: var(--muted);
}

.article-landing {
  gap: 28px;
}

.article-feed-section {
  display: grid;
  gap: 12px;
}

.article-feed__item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
  cursor: pointer;
}

.article-feed__media {
  min-width: 0;
  overflow: hidden;
}

.article-feed__image {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(180deg, rgba(24, 43, 33, 0.08), rgba(24, 43, 33, 0.16)),
    linear-gradient(135deg, #b3bfaf 0%, #d0c5b1 100%);
}

.article-feed__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 16px;
  min-width: 0;
  min-height: 0;
  height: 100%;
}

.article-feed__body > * {
  margin: 0;
}

.article-feed__body .news-card__markers {
  min-height: 24px;
}

.article-feed__body h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.article-feed__body p:not(.news-meta) {
  display: -webkit-box;
  overflow: hidden;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.article-feed__body .news-card__actions {
  min-width: 0;
  padding-top: 6px;
}

@media (min-width: 768px) {
  .article-feed__item {
    height: 168px;
    min-height: 168px;
  }

  .article-feed__media,
  .article-feed__image {
    height: 100%;
  }
}

.article-landing .article-feed-section {
  padding-top: 6px;
  border-top: 1px solid rgba(24, 43, 33, 0.08);
}

.article-landing .fs-site-ad-placement--section-break + .article-feed-section {
  padding-top: 0;
  border-top: 0;
}

.article-landing .article-feed {
  gap: 0;
  overflow: hidden;
  border: 1px solid #e6ddce;
  background: rgba(251, 247, 239, 0.62);
}

.article-landing .article-feed__item {
  border: 0;
  border-top: 1px solid #e8dfd2;
  background: transparent;
  box-shadow: none;
  height: auto;
  min-height: 0;
}

.article-landing .article-feed__item:first-child {
  border-top: 0;
}

.article-landing .article-feed__media {
  display: block;
  align-self: start;
  flex: 0 0 148px;
  width: 148px;
  max-width: 148px;
  padding: 10px 0 10px 10px;
}

.article-landing .article-feed__image {
  height: auto;
  border: 1px solid #eee5d8;
  aspect-ratio: 16 / 9;
  background: transparent;
}

.article-landing .article-feed__image img {
  background: transparent;
}

.article-landing .article-feed__body {
  gap: 5px;
  padding: 10px 12px;
  height: auto;
}

.article-landing .article-feed__body .news-card__markers {
  min-height: 22px;
}

.article-landing .article-feed__body h3 {
  font-size: 0.98rem;
  line-height: 1.14;
  -webkit-line-clamp: 1;
}

.article-landing .article-feed__body p:not(.news-meta) {
  font-size: 0.86rem;
  line-height: 1.35;
  -webkit-line-clamp: 1;
}

.article-landing .article-feed__body .news-card__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding-top: 0;
}

.article-landing .article-feed__body .news-source-link {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.76rem;
}

.article-landing .article-feed__body .read-more {
  font-size: 0.8rem;
}

.article-landing .article-feed-list .article-feed__button {
  justify-self: center;
  margin-top: 0;
}

.article-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.article-tag-list__item {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 4px 10px;
  border: 1px solid rgba(53, 82, 64, 0.2);
  background: #f7f3ea;
  color: var(--green-900);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.article-tag-list__item:hover {
  border-color: rgba(218, 110, 25, 0.45);
  color: var(--orange);
}

.article-feed__body .news-source-link,
.news-card--compact-horizontal .news-source-link {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-card--placeholder {
  visibility: hidden;
  pointer-events: none;
}

.news-card--compact-horizontal .news-card__media-link {
  display: block;
  align-self: start;
  width: 100%;
  background: transparent;
}

.news-card--compact-horizontal .news-card__markers {
  position: absolute;
  z-index: 2;
  min-height: 0;
}

.news-card--compact-horizontal .news-marker--video {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 18px rgba(24, 43, 33, 0.14);
}

.news-card--compact-horizontal .news-card__body > p:not(.news-meta) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.news-card--compact-horizontal .news-card__actions {
  padding-top: 0;
}

.article-feed__button {
  justify-self: start;
}

@media (min-width: 768px) and (max-width: 991.98px), (min-width: 1400px) {
  .news-featured-grid .news-card--featured {
    display: grid;
    grid-template-columns: minmax(310px, 0.88fr) minmax(0, 1.12fr);
  }

  .news-featured-grid .news-card--featured .news-card__body {
    grid-column: 1;
    grid-row: 1;
  }

  .news-featured-grid .news-card--featured .news-card__media-link {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    align-self: stretch;
    background: transparent;
  }

  .news-card--compact-horizontal {
    display: grid;
    grid-template-columns: minmax(300px, 320px) minmax(0, 1fr);
  }

  .news-card--compact-horizontal .news-card__markers {
    top: 12px;
    left: 12px;
  }

  .news-card--compact-horizontal .news-card__body {
    gap: 5px;
    padding: 9px 13px;
  }

  .news-card--compact-horizontal .news-meta,
  .news-card--compact-horizontal .news-source-link {
    font-size: 0.75rem;
  }

  .news-card--compact-horizontal .news-card__body h3 {
    font-size: 1rem;
    line-height: 1.12;
  }

  .news-card--compact-horizontal .news-card__body > p:not(.news-meta) {
    font-size: 0.9rem;
    line-height: 1.3;
  }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
  .news-card--compact-horizontal {
    display: grid;
    grid-template-columns: minmax(150px, 180px) minmax(0, 1fr);
  }

  .news-card--compact-horizontal .news-card__markers {
    top: 10px;
    left: 10px;
  }

  .news-card--compact-horizontal .news-marker--featured {
    width: 28px;
    min-width: 28px;
    min-height: 24px;
  }

  .news-card--compact-horizontal .news-marker--video {
    min-height: 24px;
    padding: 0 8px;
  }

  .news-card--compact-horizontal .news-card__body {
    gap: 5px;
    padding: 9px 12px;
  }

  .news-card--compact-horizontal .news-meta,
  .news-card--compact-horizontal .news-source-link {
    font-size: 0.72rem;
  }

  .news-card--compact-horizontal .news-card__body h3 {
    font-size: 0.96rem;
    line-height: 1.12;
  }

  .news-card--compact-horizontal .news-card__body > p:not(.news-meta) {
    font-size: 0.86rem;
    line-height: 1.28;
  }
}

@media (max-width: 767.98px) {
  .news-card--compact-horizontal {
    display: grid;
    grid-template-columns: minmax(112px, 36vw) minmax(0, 1fr);
  }

  .news-card--compact-horizontal .news-card__markers {
    top: 8px;
    left: 8px;
    gap: 5px;
  }

  .news-card--compact-horizontal .news-marker--featured {
    width: 26px;
    min-width: 26px;
    min-height: 22px;
  }

  .news-card--compact-horizontal .news-marker--video {
    min-height: 22px;
    padding: 0 7px;
    font-size: 0.68rem;
    box-shadow: 0 8px 16px rgba(24, 43, 33, 0.12);
  }

  .news-card--compact-horizontal .news-card__body {
    gap: 4px;
    padding: 8px 10px;
  }

  .news-card--compact-horizontal .news-meta,
  .news-card--compact-horizontal .news-source-link {
    font-size: 0.7rem;
  }

  .news-card--compact-horizontal .news-card__body h3 {
    font-size: 0.92rem;
    line-height: 1.12;
  }

  .news-card--compact-horizontal .news-card__body > p:not(.news-meta) {
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .news-card--compact-horizontal .news-card__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .news-card--compact-horizontal .read-more {
    font-size: 0.78rem;
  }

  .news-overview__actions {
    justify-content: space-between;
  }

  .news-overview__footer-link {
    width: 100%;
    justify-content: center;
  }

  .topic-search-form {
    grid-template-columns: 1fr;
  }

  .article-landing .article-feed__media {
    display: none;
  }

  .article-landing .article-feed__body {
    gap: 4px;
    padding: 10px 12px;
  }

  .article-landing .article-feed__body h3 {
    font-size: 0.9rem;
  }

  .article-landing .article-feed__body p:not(.news-meta) {
    display: none;
  }

  .article-landing .article-feed__body .news-card__actions {
    gap: 8px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .article-landing .article-feed__media {
    flex-basis: 168px;
    width: 168px;
    max-width: 168px;
  }
}

/* Article pages */
.article-page {
  display: grid;
  gap: 24px;
}

.article-page__intro {
  display: grid;
  gap: 10px;
}

.article-page__eyebrow {
  margin: 0;
  color: var(--orange-dark);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.article-page__eyebrow a {
  color: inherit;
  text-decoration: none;
}

.article-page__eyebrow a:hover,
.article-page__eyebrow a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.article-page__intro h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  color: var(--green-950);
}

.article-page__meta,
.article-page__headline {
  margin: 0;
}

.article-page__meta {
  color: var(--muted);
  font-size: var(--font-size-body);
}

.article-page__headline {
  max-width: 980px;
  font-size: var(--font-size-body-lg);
  line-height: 1.55;
  color: #24342b;
}

.article-main,
.article-sidebar {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.article-hero__image {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #d8dfd7 0%, #cdbfa7 100%);
}

.article-hero__video {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #111;
  aspect-ratio: 16 / 9;
}

.article-hero__image img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  object-position: center center;
  background: #fbf7ef;
}

.article-hero__video iframe,
.article-hero__video video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.article-main__body {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.article-content {
  display: grid;
  gap: 16px;
  color: #1c2822;
  font-size: 1.0625rem;
  line-height: 1.72;
}

.article-content--event-detail {
  display: block;
}

.article-content > * {
  margin: 0;
}

.article-content--event-detail::after {
  content: "";
  display: block;
  clear: both;
}

.article-content a {
  color: var(--orange-dark);
  text-decoration: underline;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.article-content h2,
.article-content h3 {
  color: var(--green-950);
  line-height: 1.18;
}

.article-content h2 {
  font-size: 1.45rem;
  padding-top: 14px;
  border-top: 1px solid #ece6d8;
}

.article-content h3 {
  font-size: 1.2rem;
}

.article-content h2:first-child,
.article-content h3:first-child {
  padding-top: 0;
  border-top: 0;
}

.article-content blockquote {
  padding: 12px 16px;
  border-left: 3px solid var(--orange);
  background: #fbf7ec;
  color: #24342b;
}

.article-content blockquote > * {
  margin: 0;
}

.article-content blockquote strong {
  color: var(--green-950);
}

.article-inline-image {
  margin: 8px 0;
  overflow: hidden;
  border: 1px solid #d9d1bf;
  background: #f7f1e5;
  box-shadow: 0 10px 24px rgba(54, 41, 18, 0.08);
}

.article-inline-image img {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  background: #fcfaf4;
}

.article-inline-links__meta,
.article-linked-list__meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.article-linked-list {
  margin: 10px 0 0;
  padding-left: 1.2rem;
}

.article-linked-list li + li {
  margin-top: 8px;
}

.article-content ul,
.article-content ol {
  padding: 12px 16px 12px 1.55rem;
  border-left: 3px solid var(--orange);
  background: #fbfaf6;
  border-radius: 6px;
}

.article-content li + li {
  margin-top: 7px;
}

.article-content li::marker {
  color: var(--orange-dark);
}

.article-main__source {
  padding-top: 2px;
  border-top: 1px solid #ece6d8;
}

.article-main__source a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.article-sequence-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 4px;
}

.article-sequence-nav__item {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid #e7dfd0;
  background: #fbfaf6;
  color: var(--green-950);
  text-decoration: none;
}

.article-sequence-nav__item span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-sequence-nav__item strong {
  font-family: "Titillium Web", sans-serif;
  font-size: 1.05rem;
  line-height: 1.22;
}

.article-sequence-nav__item--next {
  text-align: right;
}

.article-sequence-nav__item:hover,
.article-sequence-nav__item:focus-visible,
.article-sidebar__item.is-current {
  border-color: rgba(218, 110, 25, 0.42);
  background: #fff7eb;
}

.article-sequence-nav__item--empty {
  display: block;
  min-height: 1px;
  padding: 0;
  border: 0;
  background: transparent;
}

.article-sidebar {
  display: grid;
  gap: 18px;
  padding: 22px 20px;
}

.article-sidebar__section {
  display: grid;
  gap: 14px;
}

.article-sidebar__section + .article-sidebar__section {
  padding-top: 18px;
  border-top: 1px solid #ece6d8;
}

.article-sidebar__section h2,
.article-sidebar__section p {
  margin: 0;
}

.article-sidebar__list {
  display: grid;
  gap: 12px;
}

.article-sidebar__item {
  display: grid;
  gap: 6px;
  padding: 14px 15px;
  border: 1px solid #e6ebe4;
  background: #fff;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.article-sidebar__item:focus-visible,
.news-card__media-link:focus-visible {
  border-color: #d8c7ae;
  box-shadow: 0 10px 24px rgba(26, 39, 31, 0.08);
  transform: translateY(-1px);
}

.article-sidebar__meta {
  color: var(--muted);
  font-size: 0.875rem;
}

/* Knowledge pages */
.knowledge-hub-page {
  gap: 22px;
}

.knowledge-hub-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.knowledge-hub-card--faq {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.knowledge-hub-card--faq .knowledge-hub-card__header,
.knowledge-hub-card--faq .knowledge-hub-card__description {
  grid-column: 1;
}

.knowledge-hub-card--faq .inline-arrow-link {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

.knowledge-hub-card__header {
  display: grid;
  gap: 5px;
}

.knowledge-hub-card__eyebrow,
.knowledge-hub-card__count,
.knowledge-hub-card__description {
  margin: 0;
}

.knowledge-hub-card__eyebrow {
  color: var(--orange-dark);
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
}

.knowledge-hub-card__primary {
  color: inherit;
  text-decoration: none;
}

.knowledge-hub-card__primary strong {
  font-size: 1.35rem;
  line-height: 1.15;
}

.knowledge-hub-card__primary:hover,
.knowledge-hub-card__primary:focus-visible {
  color: var(--orange-dark);
}

.knowledge-hub-card__count {
  color: var(--muted);
  font-size: 0.9rem;
}

.knowledge-hub-card__description {
  color: #314237;
  line-height: 1.55;
}

.knowledge-hub-card__steps {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.knowledge-hub-card__steps li {
  margin: 0;
}

.knowledge-hub-card__steps a {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
  padding: 8px 10px;
  border: 1px solid #edf0ea;
  border-radius: 6px;
  color: var(--text);
  text-decoration: none;
  background: #fbfcfa;
}

.knowledge-hub-card__steps a:hover,
.knowledge-hub-card__steps a:focus-visible {
  border-color: #d8c7ae;
  background: #fff8ea;
}

.knowledge-hub-card__steps span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.knowledge-hub-card__steps strong {
  font-size: 0.95rem;
  line-height: 1.35;
}

.knowledge-disclaimer {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 15px;
  align-items: stretch;
  padding: 18px 20px;
  border: 1px solid rgba(49, 85, 67, 0.34);
  background:
    linear-gradient(135deg, rgba(38, 72, 55, 0.96), rgba(30, 58, 44, 0.96)),
    var(--green-900);
  color: #f7fbf8;
  box-shadow: 0 16px 34px rgba(17, 30, 24, 0.12);
}

.page-card .knowledge-disclaimer {
  margin-top: 22px;
}

.knowledge-disclaimer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  color: #ffba7a;
  font-size: 1.25rem;
  line-height: 1;
}

.knowledge-disclaimer__body {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.knowledge-disclaimer__title,
.knowledge-disclaimer__note {
  margin: 0;
}

.knowledge-disclaimer__title {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.55;
}

.knowledge-disclaimer ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: #dbe8df;
  line-height: 1.55;
}

.knowledge-disclaimer__note {
  color: #c8d9ce;
  font-size: 0.92rem;
  line-height: 1.5;
}

.knowledge-faq {
  display: grid;
  gap: 22px;
}

.knowledge-faq__category {
  display: grid;
  gap: 12px;
}

.knowledge-faq__category h2 {
  margin: 0;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  letter-spacing: -0.02em;
}

.knowledge-faq__items {
  display: grid;
  gap: 10px;
}

.knowledge-faq__item {
  border: 1px solid var(--line);
  background: #fffaf1;
  box-shadow: 0 10px 24px rgba(26, 39, 31, 0.06);
  overflow: hidden;
}

.knowledge-faq__item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 15px 16px;
  cursor: pointer;
  color: var(--green-950);
  list-style: none;
}

.knowledge-faq__item summary::-webkit-details-marker {
  display: none;
}

.knowledge-faq__item summary::after {
  content: "+";
  justify-self: end;
  color: var(--muted);
  font-weight: 800;
}

.knowledge-faq__item[open] summary::after {
  content: "-";
}

.knowledge-faq__answer {
  display: grid;
  gap: 10px;
  padding: 0 16px 16px 16px;
  color: var(--muted);
  line-height: 1.65;
}

.knowledge-faq__answer p {
  margin: 0;
}

/* Event pages */
.event-list--sidebar {
  gap: 12px;
  margin-top: 0;
}

.event-list--sidebar .event-row {
  padding: 12px 12px 12px 10px;
}

.event-list--sidebar .event-date {
  flex-basis: 54px;
  width: 54px;
  min-height: 54px;
}

.event-list--sidebar .event-body h3 {
  font-size: 0.98rem;
}

.event-list--sidebar + .panel-footer-link {
  margin-top: 14px;
}

.event-search-results {
  margin-top: 0;
}

.event-search-result-row {
  align-items: start;
}

.event-search-result-row .event-date {
  flex-basis: 72px;
  width: 72px;
  min-height: 72px;
}

.event-search-result-row .event-body {
  display: grid;
  gap: 6px;
}

.event-search-result-row__meta,
.event-search-result-row__summary {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.event-search-result-row__summary:empty {
  display: none;
}

.site-search-result-row__icon {
  flex-basis: 72px;
  width: 72px;
  min-height: 72px;
  display: grid;
  place-items: center;
  gap: 2px;
  background: #eef4ec;
  color: var(--green-900);
  border: 1px solid #d9e7d6;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-search-result-row__icon i {
  font-size: 1.35rem;
  line-height: 1;
}

.events-page {
  display: grid;
  gap: 24px;
}

.events-grid-shell {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  padding: 22px 20px;
}

.event-map-block {
  display: grid;
  gap: 18px;
}

.event-map__canvas {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.6), rgba(245, 240, 231, 0.92)),
    linear-gradient(180deg, #f8f4ea 0%, #f2ede2 100%);
  border: 1px solid #eadfca;
}

.event-map__canvas--google {
  background: #e9e3d7;
}

.event-map__canvas--detail {
  min-height: 220px;
}

.event-map-toggle {
  margin: 12px;
}

.event-map-toggle__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(31, 41, 55, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.16);
  color: #253326;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  user-select: none;
}

.event-map-toggle__label input {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #6d7890;
}

.event-map-toggle__text {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  line-height: 1;
  white-space: nowrap;
}

.event-map-toggle__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #6d7890;
  box-shadow: 0 0 0 4px rgba(109, 120, 144, 0.16);
}

.event-detail-map {
  margin: 10px 0;
}

.event-map__canvas--google::before,
.event-map__canvas--google::after {
  display: none;
}

.event-map__canvas::before,
.event-map__canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.event-map__canvas::before {
  background:
    linear-gradient(rgba(53, 82, 64, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 82, 64, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.55;
}

.event-map__canvas::after {
  background:
    radial-gradient(circle at 18% 26%, rgba(218, 110, 25, 0.12), transparent 18%),
    radial-gradient(circle at 80% 74%, rgba(53, 82, 64, 0.1), transparent 22%);
}

.event-map-info {
  min-width: 180px;
  max-width: 280px;
}

.event-map-info strong {
  display: block;
  margin: 0 0 6px;
  color: var(--green-950);
  font-size: 0.98rem;
  line-height: 1.25;
}

.event-map-info p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.event-map-info__status {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin: 0 0 8px;
  padding: 4px 8px;
  border-radius: 7px;
  background: #f1f5f9;
  color: #273142;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
}

.event-map-info a {
  color: var(--orange-dark);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.event-location-preview {
  float: right;
  width: min(340px, 42%);
  margin: 2px 0 18px 24px;
  padding: 0;
}

.event-location-preview__eyebrow {
  margin: 0 0 10px;
  color: var(--orange-dark);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.event-location-preview__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.event-location-preview__image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 252px;
  border: 1px solid #e6ddce;
  background: #f0eadf;
  object-fit: cover;
}

.event-location-preview__caption {
  margin: 10px 2px 0;
  color: #55655d;
  font-size: 0.9rem;
  line-height: 1.45;
}

.events-grid-shell {
  display: grid;
  gap: 18px;
}

.events-calendar {
  display: grid;
  gap: 18px;
  padding: 20px 22px;
  border: 1px solid #e0d7c6;
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(247, 241, 231, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.events-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.events-calendar__eyebrow {
  margin: 0 0 4px;
  color: #b95d17;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.events-calendar__header h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 1.15rem;
  line-height: 1.2;
}

.events-calendar__nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.events-calendar__nav-button,
.events-calendar__today-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid #d5c9b7;
  background: rgba(255, 255, 255, 0.86);
  color: #274236;
  font-weight: 700;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.events-calendar__nav-button {
  width: 42px;
  border-radius: 999px;
}

.events-calendar__today-button {
  padding: 0 14px;
  border-radius: 999px;
}

.events-calendar__nav-button:hover,
.events-calendar__nav-button:focus-visible,
.events-calendar__today-button:hover,
.events-calendar__today-button:focus-visible {
  border-color: #c47a2a;
  background: #fff7ec;
  color: #b95d17;
}

.events-calendar__months {
  --events-calendar-months: 3;
  display: grid;
  grid-template-columns: repeat(var(--events-calendar-months), minmax(0, 1fr));
  gap: 16px;
}

.events-calendar__month {
  min-width: 0;
}

.events-calendar__month h4 {
  margin: 0 0 12px;
  color: #1f352b;
  font-size: 1rem;
  font-weight: 800;
  text-transform: capitalize;
}

.events-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
}

.events-calendar__weekday {
  min-height: 24px;
  color: #6a736c;
  font-size: 0.75rem;
  font-weight: 800;
  text-align: center;
}

.events-calendar__empty,
.events-calendar__day {
  min-width: 0;
  aspect-ratio: 1;
}

.events-calendar__day {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e3d8c7;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: #31453b;
  font-size: 0.9rem;
  font-weight: 700;
}

.events-calendar__day:disabled {
  color: #9a9f9a;
  cursor: default;
  opacity: 0.82;
}

.events-calendar__day--has-events {
  border-color: rgba(218, 110, 25, 0.32);
  background: #fff3e5;
  color: #9d4e12;
  cursor: pointer;
  box-shadow: inset 0 -3px 0 rgba(218, 110, 25, 0.22);
}

.events-calendar__day--has-events:hover,
.events-calendar__day--has-events:focus-visible,
.events-calendar__day--selected {
  border-color: #da6e19;
  background: #da6e19;
  color: #ffffff;
}

.events-calendar__day--today {
  outline: 2px solid rgba(38, 72, 55, 0.24);
  outline-offset: 1px;
}

.events-calendar__count {
  position: absolute;
  top: 3px;
  right: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: #264837;
  color: #ffffff;
  font-size: 0.66rem;
  line-height: 1;
}

.events-calendar__day--selected .events-calendar__count,
.events-calendar__day--has-events:hover .events-calendar__count,
.events-calendar__day--has-events:focus-visible .events-calendar__count {
  background: #ffffff;
  color: #b95d17;
}

.events-calendar__selection {
  padding: 16px;
  border: 1px solid #e2d7c4;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.events-calendar__selection-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.events-calendar__selection-header h4 {
  margin: 0;
  color: var(--green-950);
  font-size: 1.04rem;
}

.events-calendar__selection-header span {
  color: #6a736c;
  font-size: 0.88rem;
  font-weight: 700;
}

.events-calendar__events {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.events-calendar__event {
  display: grid;
  gap: 3px;
}

.events-calendar__event a {
  color: #1f352b;
  font-weight: 800;
  text-decoration: none;
}

.events-calendar__event a:hover,
.events-calendar__event a:focus-visible {
  color: #b95d17;
  text-decoration: underline;
}

.events-calendar__event span {
  color: #5c6b63;
  font-size: 0.9rem;
}

.events-gridkit .gridkit-pagination {
  margin-bottom: 0.6rem;
}

.events-gridkit .gridkit-pagination:empty {
  display: none;
}

.events-gridkit table.gridkit-table {
  margin-top: 0.4rem;
}

.events-gridkit .gridkit-card-grid {
  margin-bottom: 1rem;
}

.events-gridkit .gridkit-table .gridkit-thead tr {
  background: linear-gradient(135deg, #2d4638, #3f5c4b);
}

.events-gridkit .gridkit-table tbody tr {
  cursor: pointer;
}

.events-gridkit .gridkit-table tbody tr:hover {
  background: rgba(232, 223, 205, 0.38);
}

.events-gridkit .gridkit-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(249, 245, 236, 0.98));
  border: 1px solid #e9e0d0;
  box-shadow: 0 12px 28px rgba(23, 34, 28, 0.06);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.events-gridkit .gridkit-card:hover,
.events-gridkit .gridkit-card:focus-within {
  transform: translateY(-2px);
  border-color: #dcc9a8;
  box-shadow: 0 16px 36px rgba(23, 34, 28, 0.1);
}

.events-gridkit .gridkit-card .card-body {
  display: grid;
  gap: 10px;
  padding: 18px 18px 20px;
}

.events-gridkit .gridkit-card-title {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.18;
  color: var(--green-950);
}

.event-grid-card__value--meta {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.event-grid-card__line {
  color: #2a3a31;
  font-size: 0.95rem;
}

.event-grid-card__line .gridkit-card-label {
  color: #6a736c;
  font-weight: 700;
}

.event-grid-status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.event-grid-status--upcoming {
  background: rgba(218, 110, 25, 0.12);
  color: #b95d17;
}

.event-grid-status--past {
  background: rgba(53, 82, 64, 0.12);
  color: #355240;
}

.section-heading__copy {
  display: grid;
  gap: 10px;
}

.section-heading__copy h2,
.search-strip__intro h2,
.market-intro h2 {
  order: 1;
  font-size: var(--font-size-title-sm);
  font-weight: 700;
  line-height: 1.2;
}

.section-heading__copy .accent-divider,
.search-strip__intro .accent-divider,
.market-intro > .accent-divider {
  order: 2;
  margin-top: 2px;
}

.section-heading__copy p {
  order: 3;
  margin: 0;
  max-width: 980px;
  color: var(--muted);
  font-size: var(--font-size-body);
  line-height: 1.6;
}

/* Market and footer */
.market-section {
  margin: 0 -34px 0;
  padding: 30px 34px 20px;
  border-top: 1px solid #ece4d6;
  background:
    radial-gradient(circle at left center, rgba(223, 122, 47, 0.08), transparent 28%),
    linear-gradient(180deg, #fcfbf7, #f6f2e7);
  align-items: stretch;
}

.market-intro,
.market-feed {
  height: auto;
  padding-top: 6px;
  padding-bottom: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.market-intro {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 24px;
  align-content: start;
  align-self: stretch;
}

.market-feed {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  border-left: 0;
  align-self: stretch;
}

.market-intro p {
  max-width: none;
}

.market-intro__list {
  display: grid;
  gap: 12px;
  align-content: start;
}

.market-intro__list--stacked {
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.market-feed__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.market-feed__brand-logo {
  width: min(100%, 220px);
  height: auto;
  display: block;
}

.market-intro__group {
  position: relative;
}

.market-intro__group + .market-intro__group {
  padding-top: 10px;
  border-top: 1px solid #e8e1d4;
}

.market-intro__summary,
.footer-links__summary {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.market-intro__title,
.market-intro__summary span,
.market-intro h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  font-size: 23px;
}

.market-intro__notice {
  position: relative;
  display: grid;
  gap: 10px;
  margin-top: 0;
  padding: 20px 22px;
  border: 1px solid rgba(49, 88, 63, 0.18);
  background: linear-gradient(180deg, rgba(243, 247, 240, 0.98), rgba(235, 242, 231, 0.96));
  align-self: end;
}

.market-intro__notice h3 {
  justify-content: flex-start;
  text-align: left;
}

.market-intro__notice p {
  margin-top: 0;
  max-width: none;
  font-size: 16px;
}

.market-intro ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.market-intro li {
  position: relative;
  margin-top: 0;
  border-top: 1px solid #ece4d6;
  padding: 11px 28px 11px 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.3;
}

.market-intro li:first-child {
  border-top: 0;
  padding-top: 0;
}

.market-intro li::after {
  content: "›";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 24px;
  line-height: 1;
}

.market-intro li a {
  display: block;
  color: inherit;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.market-feed__grid {
  margin-top: 0;
}

.market-offer--empty {
  grid-column: 1 / -1;
}

.market-offer {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  grid-template-rows: auto 1fr;
  box-shadow: 0 14px 30px rgba(20, 30, 25, 0.05);
}

.market-offer--link {
  color: inherit;
  text-decoration: none;
}

.market-offer--link:hover {
  color: inherit;
}

.market-offer__media {
  height: 168px;
  padding: 0;
  border-bottom: 1px solid #ece4d6;
  background: linear-gradient(180deg, #fffefa, #fbf7ef);
  overflow: hidden;
}

.market-offer__image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background: #fbf7ef;
}

.market-offer__img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  display: block;
  margin: 0;
  padding: 0;
  transform: none;
  position: static;
}

.market-offer__body {
  display: grid;
  gap: 3px;
  padding: 9px 10px 10px;
  align-content: start;
}

.market-offer__category {
  color: var(--green-900);
  font-size: 11px;
  font-weight: 600;
}

.market-offer__body h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
}

.market-offer__body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.market-offer strong {
  font-family: "Titillium Web", sans-serif;
  font-size: 18px;
  color: #0d4f32;
}

.market-feed__cta {
  width: 100%;
}

.site-footer {
  margin-right: 0;
  margin-left: 0;
  padding: 28px 34px 30px;
  background: #1f2322;
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__grid {
  margin-right: 0;
  margin-left: 0;
}

.footer-brand strong {
  display: block;
  font-size: 20px;
}

.footer-brand span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.footer-links {
  margin-right: 0;
  margin-left: 0;
}

.footer-links h3,
.footer-links__summary {
  margin: 0 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  text-decoration: none;
}

@media (min-width: 768px) {
  .footer-links a {
    display: block;
    position: relative;
    width: fit-content;
    max-width: 100%;
    transition: color 180ms ease;
  }

  .footer-links a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: linear-gradient(90deg, var(--orange), #ff9b53);
    transition: transform 180ms ease;
  }

  .footer-links a:hover,
  .footer-links a:focus-visible {
    color: #fff;
  }

  .footer-links a:hover::after,
  .footer-links a:focus-visible::after {
    transform: scaleX(1);
  }
}

.footer-cta {
  align-content: start;
}

.footer-actions .site-btn {
  width: 100%;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms ease, transform 420ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.app-hidden-menu {
  display: none;
}

/* Generic pages */
.page-card {
  margin: 18px 0;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.page-card--wide {
  min-height: 420px;
}

.page-card__header {
  max-width: 860px;
}

.page-card__eyebrow {
  margin: 0 0 10px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-card__header h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.02;
  color: var(--green-900);
}

.page-card__lead {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.guide-grid {
  margin-top: 26px;
}

.guide-block {
  padding: 18px;
  border: 1px solid var(--line);
  background: #fafaf7;
}

.guide-block h2 {
  margin: 0 0 10px;
  color: var(--green-900);
  font-size: 22px;
}

.guide-block p {
  color: var(--muted);
  line-height: 1.55;
}

/* Modal adapters */
.modal-dialog.age-verification-modal {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  animation: ageVerificationScaleIn 0.3s ease;
}

.modal-dialog.age-verification-modal .modal-content {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-dialog.age-verification-modal .modal-header {
  border-bottom: none;
  padding: 1rem;
}

.modal-dialog.age-verification-modal .modal-body {
  padding: 1.5rem;
}

.modal-dialog.age-verification-modal .modal-footer {
  border-top: 1px solid #dee2e6;
  padding: 1rem 1.5rem;
}

.modal-dialog.age-verification-modal .btn {
  min-width: 180px;
  border-radius: 8px;
  font-weight: 600;
}

.modal-dialog.age-verification-modal .display-1 {
  font-size: 4rem;
}

.text-scrollable {
  padding: 1rem;
  max-height: 180px;
  overflow: auto;
  background: #fff;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.04);
  border: 1px solid #e0e4ea;
}

.text-scrollable p,
.text-scrollable li {
  font-size: 12px;
}

.text-scrollable h3 {
  font-size: 14px;
}

.text-scrollable h4 {
  font-size: 13px;
}

.text-scrollable h5 {
  font-size: 12px;
}

@keyframes ageVerificationScaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.directory-suggestion-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem 1rem;
  padding: 1rem 1.1rem;
  margin-top: 1.25rem;
  background: linear-gradient(135deg, rgba(16, 24, 40, 0.04), rgba(15, 23, 42, 0.09));
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.directory-suggestion-cta__text {
  flex: 1 1 260px;
  margin: 0;
  color: #344054;
  font-size: 0.98rem;
}

.directory-suggestion-dialog .modal-content {
  border: 0;
  overflow: hidden;
}

.directory-suggestion-modal__lead {
  margin-bottom: 1rem;
  color: #475467;
}

.directory-suggestion-modal__context {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #1f2937;
}

.directory-suggestion-form .formutils-form-header {
  display: none;
}

.directory-suggestion-form .formutils-section-header {
  margin-bottom: 0.35rem;
  color: #101828;
  font-size: 1.1rem;
  font-weight: 700;
}

.directory-suggestion-form .formutils-section-description {
  margin-bottom: 0.95rem;
  color: #667085;
  font-size: 0.94rem;
}

.directory-suggestion-form .formutils-form-buttons.btn {
  min-width: 220px;
  margin-top: 0.4rem;
  padding: 0.8rem 1.1rem;
  font-weight: 600;
}

.directory-suggestion-form .invalid-feedback {
  font-size: 0.86rem;
}

.directory-suggestion-footer {
  justify-content: flex-end;
}

/* Responsive overrides */
@media (max-width: 1399.98px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .market-section {
    row-gap: 18px;
    padding-top: 22px;
    padding-bottom: 20px;
  }

  .market-intro,
  .market-feed {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .market-feed {
    border-top: 0;
  }
}

@media (min-width: 1400px) {
  .market-feed__brand {
    justify-content: flex-start;
  }
}

@media (min-width: 768px) {
  .modal-dialog.age-verification-modal .btn {
    min-width: 200px;
    max-width: 200px;
    flex: 0 0 200px;
  }
}

@media (max-width: 1199.98px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .site-nav,
  #desktopMenuTarget,
  .desktop-menu {
    justify-content: flex-start;
  }

  .search-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-left: 0;
    border-left: 0;
  }

  .promo-card__copy {
    max-width: 52%;
  }

  .search-strip {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-panel--feature {
    min-height: 420px;
  }
}

@media (max-width: 991.98px) {
  .hero-actions {
    min-width: 0;
  }

  .search-controls,
  .promo-grid {
    width: 100%;
    min-width: 0;
  }

  .market-feed__grid {
    min-width: 0;
  }

  .search-strip {
    position: relative;
    overflow: visible;
    z-index: 10;
  }

  .search-mode-mobile {
    position: relative;
    z-index: 20;
  }

  .search-mode {
    grid-template-columns: 1fr;
    margin-left: -18px;
    margin-right: -18px;
  }

  .market-feed__grid {
    margin-left: -18px;
    margin-right: -18px;
  }

  .event-date {
    border-right: 1px solid #e6ebe6;
  }

  .event-more {
    padding-top: 2px;
  }

  .hero-title-line {
    display: block;
  }

  .market-intro__notice {
    padding-right: 20px;
  }

  .market-intro__list--stacked {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .market-intro__group + .market-intro__group {
    padding-left: 0;
    border-left: 0;
  }

  .market-intro h2 {
    font-size: 38px;
  }
}

@media (max-width: 767.98px) {
  .search-mode {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-secondary-links {
    align-items: flex-start;
  }

  .search-strip__lead {
    align-items: flex-start;
  }

  .event-date strong {
    font-size: 26px;
  }

  .panel-heading--calendar {
    align-items: start;
    flex-direction: column;
  }

  .market-feed__cta {
    width: 100%;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-links__group {
    border-top: 1px solid rgba(255,255,255,0.14);
    padding-top: 10px;
  }

  .footer-links__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    margin-bottom: 0;
  }

  .footer-links__summary::after {
    content: "▾";
    font-size: 0.875rem;
    transition: transform 180ms ease;
  }

  .footer-links__collapse {
    padding-bottom: 2px;
  }

  .footer-links__collapse a:first-of-type {
    margin-top: 10px;
  }

  .footer-cta {
    justify-self: stretch;
    width: 100%;
  }

  .directory-suggestion-cta {
    align-items: stretch;
  }

  .directory-suggestion-cta .btn {
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  html {
    font-size: 93.75%;
  }

  body {
    background: #f7f3ea;
  }

  body.menu-open {
    overflow: hidden;
  }

  .page-shell {
    width: 100%;
    margin: 0;
    border: 0;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.96);
  }

  .content {
    padding: 0 var(--mobile-gutter) 24px;
  }

  .fs-site-ad-placement--footer-break {
    margin-right: var(--mobile-gutter);
    margin-left: var(--mobile-gutter);
  }

  .mobile-topnav {
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 14px var(--mobile-gutter);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--green-900);
    font-size: 24px;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    top: 77px;
    left: 0;
    right: 0;
    z-index: 45;
    padding: 0 var(--mobile-gutter) 16px;
    background: linear-gradient(180deg, rgba(252, 251, 247, 0.98), rgba(247, 243, 234, 0.96));
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 40px rgba(17, 30, 24, 0.12);
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease, visibility 220ms ease;
  }

  .mobile-menu.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu__list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-top: 14px;
    list-style: none;
  }

  .mobile-menu__list a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid var(--line);
    background: #fff;
    font-weight: 700;
  }

  .hero-grid,
  .search-strip,
  .market-section {
    margin-left: calc(var(--mobile-gutter) * -1);
    margin-right: calc(var(--mobile-gutter) * -1);
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 16px;
  }

  .hero-panel--feature {
    min-height: auto;
    align-items: stretch;
  }

  .hero-copy {
    width: 100%;
    padding: 28px var(--mobile-gutter) 20px;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 11vw, 3.8rem);
    line-height: 0.98;
  }

  .hero-copy p {
    max-width: none;
    font-size: var(--font-size-body);
    line-height: 1.45;
  }

  .hero-actions,
  .hero-secondary-links {
    width: 100%;
    margin-top: 14px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero-action,
  .hero-secondary-link {
    width: 100%;
    justify-content: space-between;
  }

  .hero-secondary-links {
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start;
    padding: 0;
  }

  .hero-secondary-link {
    white-space: normal;
    text-align: left;
  }

  .hero-panel--schedule {
    margin: 0 var(--mobile-gutter);
    padding: 0;
  }

  .hero-panel--schedule::before {
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,245,238,0.98));
    box-shadow: 0 12px 28px rgba(17, 30, 24, 0.08);
  }

  .hero-panel--schedule .panel-heading,
  .hero-panel--schedule .event-list,
  .hero-panel--schedule .panel-footer-link {
    margin-left: 14px;
    margin-right: 14px;
  }

  .hero-panel--schedule .panel-heading {
    margin-top: 14px;
    margin-bottom: 12px;
  }

  .hero-panel--schedule .panel-heading h2 {
    font-size: 1.125rem;
  }

  .event-row {
    padding: 12px 12px 12px 14px;
  }

  .event-date {
    flex-basis: 68px;
    width: 68px;
    min-height: 64px;
    padding: 8px 0 6px;
  }

  .event-body__topline {
    align-items: start;
  }

  .event-more {
    text-align: right;
    min-width: 0;
    font-size: 0.8125rem;
  }

  .event-more span {
    text-align: right;
  }

  .section-heading,
  .market-section__heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .section-heading .inline-arrow-link,
  .market-section__heading .inline-arrow-link {
    white-space: normal;
  }

  .search-strip {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px var(--mobile-gutter) 22px;
  }

  .search-mode-mobile {
    width: 100%;
    min-width: 0;
  }

  .search-mode-mobile .site-btn {
    width: 100%;
  }

  .search-controls {
    grid-template-columns: minmax(144px, 0.68fr) minmax(0, 1fr);
    gap: 12px;
    padding-left: 0;
  }

  .search-controls::before {
    display: none;
  }

  .search-input {
    min-height: 52px;
  }

  .search-controls .site-btn {
    grid-column: 1 / -1;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-feed__image {
    height: auto;
    min-height: 0;
  }

  .article-page {
    gap: 18px;
  }

  .article-page__intro h1 {
    font-size: 1.8rem;
    line-height: 1.02;
  }

  .article-main__body,
  .article-sidebar {
    padding: 18px 16px;
  }

  .article-content {
    font-size: 1rem;
    line-height: 1.65;
  }

  .article-content ul,
  .article-content ol {
    padding-right: 12px;
    padding-left: 1.35rem;
  }

  .article-sequence-nav {
    grid-template-columns: 1fr;
  }

  .article-sequence-nav__item--next {
    text-align: left;
  }

  .knowledge-disclaimer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .knowledge-disclaimer__icon {
    width: 36px;
    height: 36px;
  }

  .knowledge-hub-card {
    padding: 18px 16px;
  }

  .knowledge-hub-card--faq {
    grid-template-columns: 1fr;
  }

  .knowledge-hub-card--faq .knowledge-hub-card__header,
  .knowledge-hub-card--faq .knowledge-hub-card__description,
  .knowledge-hub-card--faq .inline-arrow-link {
    grid-column: auto;
    grid-row: auto;
  }

  .knowledge-hub-card__steps a {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .article-inline-image img {
    max-height: 340px;
  }

  .event-list--sidebar .event-row {
    padding: 12px;
  }

  .event-list--sidebar .event-date {
    flex-basis: 62px;
    width: 62px;
    min-height: 60px;
  }

  .events-page {
    gap: 18px;
  }

  .events-grid-shell {
    padding: 18px 16px;
  }

  .events-calendar {
    grid-template-columns: 1fr;
    padding: 18px 16px;
  }

  .events-calendar__header,
  .events-calendar__selection-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .events-calendar__nav {
    width: 100%;
    justify-content: space-between;
  }

  .events-calendar__today-button {
    flex: 1 1 auto;
  }

  .events-calendar__months {
    grid-template-columns: 1fr;
  }

  .events-calendar__grid {
    gap: 4px;
  }

  .events-calendar__day {
    border-radius: 7px;
    font-size: 0.84rem;
  }

  .event-map__canvas {
    min-height: 320px;
  }

  .event-map-toggle {
    margin: 10px;
  }

  .event-map-toggle__label {
    min-height: 36px;
    padding: 7px 10px;
    font-size: 0.82rem;
  }

  .event-location-preview {
    float: none;
    width: 100%;
    margin: 0 0 16px;
  }

  .event-location-preview__image {
    min-height: 220px;
  }

  .news-card__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-card .read-more {
    align-self: flex-end;
  }

  .promo-card {
    min-height: auto;
    padding: 18px var(--mobile-gutter);
  }

  .promo-card__icon {
    top: 16px;
    left: 16px;
    width: 42px;
    height: 42px;
    font-size: 1.125rem;
  }

  .promo-card__copy {
    max-width: min(100%, 62%);
    min-height: 0;
    padding-top: 68px;
  }

  .promo-card__copy .site-btn {
    top: 16px;
    right: 16px;
  }

  .promo-card__copy h2 {
    max-width: calc(100% - 132px);
    font-size: 1.125rem;
  }

  .promo-card__copy p {
    max-width: 100%;
  }

  .market-section {
    gap: 18px;
    margin-bottom: 0;
    padding: 22px var(--mobile-gutter) 20px;
  }

  .market-intro,
  .market-feed,
  .site-footer {
    padding: 0;
  }

  .market-intro {
    gap: 16px;
  }

  .market-intro__list {
    gap: 12px;
  }

  .market-intro__group {
    padding: 0;
    border-top: 0;
    background: #fff;
    border: 1px solid #e8e1d4;
    overflow: hidden;
  }

  .market-intro__group + .market-intro__group {
    padding-top: 0;
    border-top: 0;
  }

  .market-intro__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
  }

  .market-intro__summary span,
  .market-intro__title {
    font-size: 1rem;
  }

  .market-intro__summary::after {
    content: "▾";
    font-size: 0.875rem;
    color: var(--orange-dark);
    transition: transform 180ms ease;
  }

  .footer-links__summary[aria-expanded="true"]::after,
  .market-intro__summary[aria-expanded="true"]::after {
    transform: rotate(180deg);
  }

  .market-intro__collapse {
    padding: 0 16px 8px;
  }

  .market-intro__group ul {
    margin: 0;
    padding: 0;
  }

  .market-intro__notice {
    padding: 16px var(--mobile-gutter);
    margin-top: 0;
    text-align: left;
  }

  .market-intro__notice h3 {
    font-size: 1rem;
    align-items: flex-start;
  }

  .market-feed__brand {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    padding-top: 0;
    border-top: 0;
    box-shadow: none;
  }

  .market-feed {
    justify-items: center;
  }

  .market-feed__brand-logo {
    width: min(100%, 180px);
    height: auto;
  }

  .market-feed__grid {
    width: 100%;
    margin-top: 0;
  }

  .market-offer__media {
    height: 168px;
    padding: 0;
  }

  .market-offer__image {
    width: 100%;
    height: 100%;
    padding: 0;
  }

  .market-offer__body {
    gap: 6px;
    padding: 10px 12px 12px;
  }

  .market-feed__cta {
    white-space: normal;
    text-align: left;
  }

  .market-feed__footer {
    width: 100%;
  }

  .site-footer {
    padding: 22px var(--mobile-gutter) 24px;
  }

  .footer-brand p {
    margin-bottom: 0;
  }

}

@media (max-width: 575.98px) {
  :root {
    --mobile-gutter: 14px;
  }

  html {
    font-size: 87.5%;
  }

  .mobile-menu {
    top: 72px;
  }

  .promo-card__copy h2 {
    max-width: calc(100% - 118px);
  }

  .market-offer__body {
    padding: 12px 14px 14px;
  }
}
