@charset "UTF-8";
:root {
  --vh-container: 1240px;
  --vh-page-max-width: 1240px;
  --vh-main-column: 900px;
  --vh-sidebar-column: 300px;
  --vh-column-gap: 40px;
  --vh-section-gap: 40px;
  --vh-content: 720px;
  --vh-gutter: clamp(var(--vh-space-16), 3.35vw, 40px);
  --vh-grid-columns: 12;
  --vh-grid-gap: var(--vh-space-24);
  --vh-ratio-wide: 16 / 9;
  --vh-ratio-portrait: 4 / 5;
  --vh-ratio-square: 1 / 1;
  --vh-radius-sm: 0;
  --vh-radius: 0;
  --vh-radius-lg: 0;
  --vh-transition: 180ms ease;
  --vh-shadow: none;
  --vh-shadow-soft: none;
  --vh-space-4: 4px;
  --vh-space-8: 8px;
  --vh-space-12: 12px;
  --vh-space-16: 16px;
  --vh-space-24: 24px;
  --vh-space-32: 32px;
  --vh-space-48: 48px;
  --vh-space-64: 64px;
  --vh-font-body: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --vh-font-heading: 'IBM Plex Serif', Georgia, 'Times New Roman', serif;
  --vh-color-primary-green: #74901f;
  --vh-color-primary-green-dark: #536817;
  --vh-color-primary-green-light: #eef3df;
  --vh-color-module-header: #f4f6ec;
  --vh-color-background: #fbfaf6;
  --vh-color-surface: #ffffff;
  --vh-color-surface-alt: #ffffff;
  --vh-color-border: #e6e6e6;
  --vh-color-muted: #666666;
  --vh-color-headline: #111111;
  --vh-color-light-gray: #f4f4f4;
  --vh-quote-bg: rgb(238 243 223 / 44%);
  --vh-quote-mark-color: rgb(116 144 31 / 17%);
  --vh-quote-accent: var(--vh-color-primary-green);
  --vh-quote-border: var(--vh-quote-accent);
  --vh-quote-mark-size: 7.5rem;
  --vh-quote-padding: var(--vh-space-48);
  --vh-quote-mark-left: var(--vh-space-32);
  --vh-quote-mark-top: calc(var(--vh-quote-padding) - var(--vh-space-8));
  --vh-quote-content-offset: calc(var(--vh-space-64) + var(--vh-space-64) + var(--vh-space-32));
  --vh-quote-content-offset-mobile: calc(var(--vh-space-64) + var(--vh-space-24));
  --vh-quote-background: var(--vh-quote-bg);
  --vh-quote-mark: var(--vh-quote-mark-color);
  --vh-quote-mark-opacity: 1;
  --vh-avatar-green-dark: #315c4a;
  --vh-avatar-green: #4f7462;
  --vh-avatar-sage: #718675;
  --vh-avatar-olive: #77785c;
  --vh-avatar-petrol: #486b6b;
  --vh-avatar-grey-green: #68766f;
  --vh-avatar-warm-grey: #7b756d;
  --vh-avatar-text: #f7f4ed;
  --vh-breakpoint-mobile: 640px;
  --vh-breakpoint-tablet: 900px;
  --vh-breakpoint-desktop: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

body:not(.wp-admin) {
  margin-top: 8px;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

body {
  background: var(--vh-color-background);
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  font-size: 1.03125rem;
  line-height: 1.66;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--vh-color-primary-green);
  text-decoration: none;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
  transition: color var(--vh-transition), background-color var(--vh-transition), border-color var(--vh-transition);
}

a:hover,
a:focus-visible {
  color: var(--vh-color-primary-green-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-block: 0 0.75em;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-heading);
  font-weight: 700;
  line-height: 1.17;
}

p {
  margin-block: 0 1.22em;
}

::selection {
  background: var(--vh-color-primary-green);
  color: var(--vh-color-surface);
}

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

.screen-reader-text:focus {
  top: var(--vh-space-16);
  left: var(--vh-space-16);
  z-index: 100000;
  display: block;
  width: auto;
  height: auto;
  padding: var(--vh-space-12) var(--vh-space-16);
  clip: auto;
  background: var(--vh-color-surface);
  color: var(--vh-color-headline);
}

.site-container,
.site-main,
.widget-area {
  width: min(100% - var(--vh-gutter) * 2, var(--vh-page-max-width));
  margin-inline: auto;
}

.site-main {
  padding-block: var(--vh-space-32) var(--vh-space-64);
}

.vh-grid {
  display: grid;
  grid-template-columns: repeat(var(--vh-grid-columns), minmax(0, 1fr));
  gap: var(--vh-grid-gap);
}

@media (width <= 900px) {
  .category .site-main,
  .site-main--single {
    padding-block-start: var(--vh-space-20, 20px);
  }
}
.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--vh-color-border);
  background: var(--vh-color-surface);
}

.site-topbar {
  background: var(--vh-color-surface);
  color: var(--vh-color-headline);
  font-size: 0.875rem;
}

.site-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--vh-space-16);
}

.site-topbar__inner {
  min-height: 40px;
}

.site-navigation__brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--vh-space-32);
  min-height: 96px;
}

.site-navigation__menu-row {
  background: var(--vh-color-primary-green-dark);
}

.site-navigation__menu-placeholder.is-sticky {
  height: var(--vh-sticky-menu-height, 48px);
}

.site-navigation__menu-row.is-sticky {
  position: fixed;
  z-index: 110;
  inset-block-start: var(--vh-sticky-menu-top, 0);
  inset-inline: 0;
  width: 100%;
}

.site-navigation__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--vh-space-24);
  min-height: 48px;
}

.site-header-meta {
  display: flex;
  align-items: center;
  gap: var(--vh-space-16);
  color: var(--vh-color-headline);
  font-size: 0.9375rem;
  line-height: 1;
  white-space: nowrap;
}

.site-header-meta__date {
  padding-inline-end: var(--vh-space-16);
  border-inline-end: 1px solid var(--vh-color-border);
}

.site-header-meta--date-only .site-header-meta__date {
  padding-inline-end: 0;
  border-inline-end: 0;
}

.site-header-weather {
  display: inline-flex;
  align-items: center;
  gap: var(--vh-space-8);
}

.site-header-weather__icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

.site-branding {
  justify-self: start;
  text-align: left;
}

.site-header-search {
  flex: 0 1 220px;
  justify-self: end;
}

.site-header-search {
  display: flex;
  align-items: stretch;
  width: min(100%, 220px);
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  transition: border-color var(--vh-transition);
}

.site-header-search:focus-within {
  border-color: rgba(255, 255, 255, 0.7);
}

.site-header-search__field {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--vh-color-surface);
  font-family: var(--vh-font-body);
  font-size: 0.9375rem;
  line-height: 1.3;
  padding-inline: var(--vh-space-12);
}

.site-header-search__field:focus {
  outline: 0;
}

.site-header-search__submit {
  display: inline-grid;
  place-items: center;
  width: 48px;
  border: 0;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: var(--vh-color-surface);
  cursor: pointer;
  transition: background-color var(--vh-transition), color var(--vh-transition);
}

.site-header-search__submit:hover,
.site-header-search__submit:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: var(--vh-color-surface);
}

.site-header-search__field::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.site-header-search__icon {
  display: block;
  width: 22px;
  height: 22px;
}

.site-branding__name {
  display: inline-grid;
  grid-template-columns: 44px minmax(0, auto);
  gap: var(--vh-space-12);
  align-items: center;
  color: var(--vh-color-headline);
  letter-spacing: 0;
  text-decoration: none;
}

.site-branding__mark {
  position: relative;
  display: block;
  width: 44px;
  aspect-ratio: var(--vh-ratio-square);
  background: var(--vh-color-primary-green);
}

.site-branding__mark::before {
  position: absolute;
  inset: 12px 10px 10px;
  border-block-end: 4px solid var(--vh-color-surface);
  border-inline: 4px solid var(--vh-color-surface);
  content: "";
}

.site-branding__mark::after {
  position: absolute;
  right: 7px;
  bottom: 6px;
  width: 12px;
  height: 12px;
  border-right: 4px solid var(--vh-color-surface);
  border-bottom: 4px solid var(--vh-color-surface);
  content: "";
}

.site-branding__text {
  display: grid;
  gap: var(--vh-space-4);
}

.site-branding__logo {
  display: block;
}

.site-branding__logo img,
.custom-logo-link img {
  display: block;
  width: min(318px, 70vw);
  height: auto;
}

.site-branding__title {
  display: flex;
  gap: 0;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.site-branding__title-accent {
  color: var(--vh-color-primary-green);
}

.site-branding__tagline {
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.32em;
  text-transform: lowercase;
}

@media (width >= 900px) {
  .site-topbar {
    font-size: 0.9375rem;
  }
  .site-branding__logo img,
  .custom-logo-link img {
    width: min(350px, 70vw);
  }
  .site-header-meta,
  .site-header-search__field {
    font-size: 1rem;
  }
  .site-branding__tagline {
    font-size: 0.8125rem;
  }
}
@media (900px <= width < 1024px) {
  .site-header {
    --vh-gutter: clamp(20px, calc(11.29vw - 81.61px), 34px);
    --vh-header-logo-width: clamp(298px, calc(41.94vw - 79.42px), 350px);
    --vh-header-search-width: clamp(210px, calc(56.45vw - 298.06px), 280px);
  }
  .site-navigation__brand-row {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: clamp(8px, 6.45vw - 50.06px, 16px);
    min-height: clamp(70px, 9.68vw - 17.1px, 82px);
  }
  .site-header-meta {
    gap: clamp(8px, 6.45vw - 50.06px, 16px);
    font-size: clamp(0.875rem, 1.61vw - 0.52px, 1rem);
  }
  .site-header-meta__date {
    padding-inline-end: clamp(8px, 6.45vw - 50.06px, 16px);
  }
  .site-header-weather {
    gap: clamp(4px, 3.23vw - 25.03px, 8px);
  }
  .site-header-weather__icon {
    width: clamp(18px, 3.23vw - 11.03px, 22px);
    height: clamp(18px, 3.23vw - 11.03px, 22px);
  }
  .site-branding__logo img,
  .custom-logo-link img {
    width: var(--vh-header-logo-width);
  }
  .site-header-search {
    width: var(--vh-header-search-width);
    min-height: clamp(40px, 3.23vw + 10.97px, 44px);
  }
  .site-header-search__field {
    font-size: clamp(0.875rem, 1.61vw - 0.52px, 1rem);
    padding-inline: clamp(8px, 3.23vw - 21.03px, 12px);
  }
  .site-header-search__submit {
    width: clamp(42px, 4.84vw - 1.55px, 48px);
  }
  .site-header-search__icon {
    width: clamp(20px, 1.61vw + 5.48px, 22px);
    height: clamp(20px, 1.61vw + 5.48px, 22px);
  }
  .site-navigation__inner {
    min-height: clamp(40px, 3.23vw + 10.97px, 44px);
  }
}
@media (width < 640px) {
  .site-navigation__brand-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: var(--vh-space-16);
    min-height: 88px;
    padding-block: var(--vh-space-8);
  }
  .site-header-meta {
    grid-column: 1/-1;
    justify-content: flex-start;
    font-size: 0.8125rem;
  }
  .site-navigation__inner {
    justify-content: space-between;
    min-height: 56px;
  }
  .site-branding {
    grid-column: 1;
    justify-self: start;
    text-align: left;
  }
  .site-navigation__brand-row .site-branding {
    grid-column: 1;
  }
  .site-header-search {
    grid-column: 2;
  }
  .site-header-search {
    width: min(100%, 220px);
    min-height: 42px;
  }
  .site-branding__title {
    font-size: 1.5rem;
  }
  .site-branding__tagline {
    font-size: 0.625rem;
    letter-spacing: 0.18em;
  }
  .site-branding__name {
    grid-template-columns: 34px minmax(0, auto);
    gap: var(--vh-space-8);
  }
  .site-branding__mark {
    width: 34px;
  }
  .site-branding__logo img,
  .custom-logo-link img {
    width: min(232px, 62vw);
  }
}
@media (width < 900px) {
  .site-navigation__brand-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: var(--vh-space-16);
    min-height: 54px;
    padding-block: var(--vh-space-4);
  }
  .site-header-meta {
    display: none;
  }
  .site-navigation__brand-row .site-branding {
    grid-column: 1;
    justify-self: start;
  }
  .site-header-search {
    grid-column: 2;
    width: min(190px, 30vw);
    min-height: 40px;
  }
  .site-navigation__inner {
    justify-content: space-between;
    min-height: 42px;
  }
  .site-branding__logo img,
  .custom-logo-link img {
    width: min(250px, 48vw);
  }
}
@media (width <= 430px) {
  .site-navigation__brand-row {
    min-height: 64px;
  }
  .site-header-search {
    width: 42px;
  }
  .site-header-search__field {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }
  .site-branding__logo img,
  .custom-logo-link img {
    width: min(270px, 72vw);
  }
  .home .site-navigation__inner {
    min-height: 44px;
  }
}
.site-footer {
  margin-block-start: var(--vh-space-32);
  background: var(--vh-color-background);
}

.site-footer__nav {
  background: var(--vh-color-primary-green-dark);
}

.site-footer__nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 54px;
}

.site-footer__lower {
  background: var(--vh-color-background);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--vh-space-32);
  min-height: 96px;
  padding-block: var(--vh-space-24);
  text-align: left;
}

.site-footer__identity {
  display: flex;
  align-items: center;
  gap: var(--vh-space-24);
}

.site-footer__logo {
  display: block;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.site-footer__logo img {
  display: block;
  width: 156px;
  height: auto;
}

.site-footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vh-space-8) var(--vh-space-32);
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer__menu a {
  color: var(--vh-color-surface);
  font-family: var(--vh-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer__menu a:hover,
.site-footer__menu a:focus-visible {
  color: #dce7c4;
}

.site-footer__social {
  display: inline-flex;
  gap: var(--vh-space-8);
  align-items: center;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  aspect-ratio: var(--vh-ratio-square);
  border: 1px solid var(--vh-color-primary-green);
  color: var(--vh-color-primary-green);
  font-family: var(--vh-font-body);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color var(--vh-transition), color var(--vh-transition);
}

.site-footer__social-icon {
  display: block;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
  background: var(--vh-color-primary-green);
  color: var(--vh-color-surface);
}

.site-footer__copyright {
  display: grid;
  gap: 2px;
  margin: 0;
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
}

@media (width > 900px) {
  .site-footer__logo {
    font-size: 1.0625rem;
  }
  .site-footer__menu a {
    font-size: 0.75rem;
  }
  .site-footer__copyright {
    font-size: 0.8125rem;
  }
}
@media (width <= 900px) {
  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--vh-space-16);
  }
  .site-footer__identity {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--vh-space-12);
  }
}
@media (width < 640px) {
  .site-footer__nav-inner {
    padding-block: var(--vh-space-16);
  }
  .site-footer__menu {
    gap: var(--vh-space-12) var(--vh-space-24);
  }
  .site-footer__logo img {
    width: 132px;
  }
}
@media (width <= 380px) {
  .site-footer__social {
    margin-block-start: calc(var(--vh-space-8) * -1);
  }
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: var(--vh-grid-gap);
}

.archive-header,
.page-header {
  max-width: 760px;
  margin-block-end: 0;
}

.archive-title,
.page-title {
  margin: 0;
  color: var(--vh-color-primary-green);
  font-family: var(--vh-font-body);
  font-size: clamp(2.25rem, 3.2vw, 2.625rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.08;
  text-transform: uppercase;
}

.category .archive-title {
  display: inline-block;
  width: fit-content;
  padding: 0.5rem 0.75rem;
  background: #abb58d;
  background: color-mix(in srgb, var(--vh-color-primary-green-dark) 49%, white);
  color: var(--vh-color-surface);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
}

.tag .archive-title,
.tax-helyszin .archive-title {
  display: inline-block;
  width: fit-content;
  padding: 0.5rem 0.75rem;
  background: var(--vh-color-primary-green-dark);
  color: var(--vh-color-surface);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
}

.tag .archive-header,
.tax-helyszin .archive-header {
  margin-block-end: calc(var(--vh-space-24) * 0.1);
}

.archive-description {
  max-width: 720px;
  margin-block-start: var(--vh-space-12);
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  font-size: 1rem;
  line-height: 1.55;
}

.archive-description p {
  margin: 0;
}

.entry-content {
  max-width: var(--vh-content);
}

.archive-layout {
  display: grid;
  grid-template-columns: minmax(0, var(--vh-main-column)) minmax(0, var(--vh-sidebar-column));
  gap: var(--vh-column-gap);
  align-items: start;
  width: 100%;
  padding-block: 0 var(--vh-space-64);
}

.archive-layout__main,
.archive-featured {
  display: grid;
  min-width: 0;
}

.archive-layout__main {
  gap: var(--vh-space-24);
}

.archive-featured {
  gap: var(--vh-section-gap);
}

.archive-layout__sidebar {
  display: grid;
  align-content: start;
  gap: var(--vh-section-gap);
  min-width: 0;
}

.archive-lead-story {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: var(--vh-space-32);
  align-items: center;
  padding-block-end: var(--vh-section-gap);
  border-bottom: 1px solid var(--vh-color-border);
}

.archive-lead-story__content,
.archive-secondary-story__content,
.archive-list-story__content {
  display: grid;
  gap: var(--vh-space-12);
}

.archive-lead-story__content {
  max-width: 500px;
}

.archive-lead-story__title {
  max-width: 760px;
  margin: 0;
  font-family: var(--vh-font-heading);
  font-size: clamp(2rem, 2.8vw, 2.625rem);
  font-weight: 700;
  line-height: 1.28;
}

.archive-lead-story__title a,
.archive-secondary-story__title a,
.archive-list-story__title a {
  color: var(--vh-color-headline);
  text-decoration: none;
}

.archive-lead-story__title a:hover,
.archive-lead-story__title a:focus-visible,
.archive-secondary-story__title a:hover,
.archive-secondary-story__title a:focus-visible,
.archive-list-story__title a:hover,
.archive-list-story__title a:focus-visible {
  color: var(--vh-color-primary-green);
}

.archive-lead-story__excerpt {
  max-width: 480px;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  font-size: 1rem;
  line-height: 1.55;
}

.archive-lead-story__excerpt p,
.archive-list-story__excerpt p {
  margin: 0;
}

.archive-lead-story__media,
.archive-secondary-story__media,
.archive-list-story__media {
  display: block;
  background: var(--vh-color-light-gray);
}

.archive-lead-story__media {
  aspect-ratio: var(--vh-ratio-square);
  overflow: hidden;
}

.archive-lead-story__media > picture {
  display: block;
  width: 100%;
  height: 100%;
}

.archive-lead-story__media img,
.archive-secondary-story__media img,
.archive-list-story__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.archive-lead-story__media > img,
.archive-lead-story__media > picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.archive-secondary-stories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--vh-space-24);
  padding-block-end: var(--vh-section-gap);
  border-bottom: 1px solid var(--vh-color-border);
}

.archive-list-story {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: var(--vh-space-24);
  align-items: start;
  padding-block: var(--vh-space-24);
  border-bottom: 1px solid var(--vh-color-border);
}

.archive-secondary-story {
  display: grid;
  gap: var(--vh-space-12);
  align-content: start;
  min-width: 0;
}

.archive-secondary-story__content {
  min-width: 0;
}

.archive-secondary-story:first-child,
.archive-list-story:first-child {
  padding-block-start: 0;
}

.archive-secondary-story:last-child,
.archive-list-story:last-child {
  border-bottom: 0;
}

.archive-secondary-story__media img {
  aspect-ratio: var(--vh-ratio-wide);
}

.archive-list-story__media img {
  aspect-ratio: var(--vh-ratio-wide);
}

.archive-secondary-story__title,
.archive-list-story__title {
  margin: 0;
  font-family: var(--vh-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.archive-secondary-story__excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
  font-size: 0.9375rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.archive-secondary-story__excerpt p {
  margin: 0;
}

.archive-secondary-story__title {
  font-size: 1.25rem;
  hyphens: auto;
  line-height: 1.18;
  overflow-wrap: anywhere;
  word-break: normal;
}

.archive-list-story__title {
  font-size: 1.25rem;
}

.archive-list-story__excerpt {
  display: -webkit-box;
  overflow: hidden;
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
  font-size: 0.9375rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.archive-section-title {
  display: flex;
  align-items: center;
  gap: var(--vh-space-16);
  margin: 0 0 var(--vh-space-24);
  color: var(--vh-color-primary-green);
  font-family: var(--vh-font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.archive-section-title::after {
  flex: 1 1 auto;
  height: 1px;
  background: var(--vh-color-border);
  content: "";
}

.archive-story-link {
  margin-block-start: var(--vh-space-4);
  color: var(--vh-color-primary-green);
  font-family: var(--vh-font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.archive-more-stories {
  padding-block-start: var(--vh-space-24);
}

@media (width > 900px) {
  .archive-lead-story {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
  .archive-description,
  .archive-lead-story__excerpt {
    font-size: 1.0625rem;
  }
  .archive-secondary-story__title,
  .archive-list-story__title {
    font-size: 1.3125rem;
  }
  .archive-secondary-story__excerpt,
  .archive-list-story__excerpt {
    font-size: 1rem;
  }
  .archive-layout .entry-meta {
    font-size: 0.875rem;
  }
}
@media (901px <= width <= 1100px) {
  .archive-secondary-story__media {
    width: 180px;
    max-width: 100%;
  }
  .archive-list-story.has-post-thumbnail {
    grid-template-columns: 180px minmax(0, 1fr);
  }
}
@media (width: 900px) {
  .archive-layout {
    grid-template-columns: minmax(0, 2fr) minmax(220px, 0.85fr);
    gap: var(--vh-space-24);
  }
  .archive-lead-story {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--vh-space-24);
    align-items: start;
  }
  .archive-secondary-stories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--vh-space-24);
  }
  .archive-secondary-story {
    grid-template-columns: 1fr;
    min-width: 0;
  }
  .archive-secondary-story__media img {
    aspect-ratio: var(--vh-ratio-wide);
    object-position: center top;
  }
}
@media (431px <= width < 900px) {
  .archive-layout,
  .archive-lead-story {
    grid-template-columns: 1fr;
  }
  .archive-layout {
    gap: var(--vh-space-32);
  }
  .archive-lead-story {
    gap: var(--vh-space-24);
    align-items: start;
  }
  .archive-lead-story__media {
    aspect-ratio: var(--vh-ratio-wide);
  }
  .archive-secondary-stories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--vh-space-24);
  }
  .archive-secondary-story {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: var(--vh-space-12);
    padding-block: 0 var(--vh-space-24);
    border-bottom: 1px solid var(--vh-color-border);
  }
  .archive-list-story {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: var(--vh-space-16);
    padding-block: var(--vh-space-16);
  }
  .archive-secondary-story__media img {
    aspect-ratio: auto;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .archive-secondary-story__media {
    aspect-ratio: var(--vh-ratio-square);
    overflow: hidden;
  }
  .archive-secondary-story__media picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  .archive-list-story:not(.has-post-thumbnail) {
    grid-template-columns: 1fr;
  }
  .archive-news-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 0 var(--vh-space-24);
  }
  .archive-news-list .archive-list-story:nth-child(-n+2) {
    padding-block-start: 0;
  }
  .archive-list-story__title {
    font-size: 1rem;
    line-height: 1.25;
  }
  .archive-list-story__excerpt {
    font-size: 0.8125rem;
    -webkit-line-clamp: 2;
  }
  .archive-layout__sidebar {
    order: 2;
  }
  .archive-layout__sidebar .vh-popular-posts-module__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .archive-layout__sidebar .vh-popular-posts-module__item {
    grid-template-columns: 1fr;
    align-content: start;
  }
  .archive-layout__sidebar .vh-popular-posts-module__media img,
  .archive-layout__sidebar .vh-popular-posts-module__placeholder {
    aspect-ratio: var(--vh-ratio-wide);
    height: auto;
    object-fit: cover;
  }
  .vh-locations-module__items {
    max-width: 100%;
  }
}
@media (768px <= width < 900px) {
  .archive-layout {
    grid-template-columns: minmax(0, 2.4fr) minmax(220px, 0.9fr);
    gap: var(--vh-space-24);
  }
  .archive-layout__sidebar {
    grid-template-columns: minmax(0, 1fr);
    order: initial;
  }
  .archive-lead-story {
    grid-template-columns: minmax(0, 42%) minmax(0, 1fr);
  }
  .archive-lead-story__media {
    aspect-ratio: var(--vh-ratio-square);
  }
  .archive-lead-story__content {
    min-width: 0;
  }
  .archive-layout__sidebar .vh-popular-posts-module__items {
    grid-template-columns: 1fr;
  }
}
@media (525px <= width < 900px) {
  .archive-lead-story {
    grid-template-columns: minmax(0, 42%) minmax(0, 1fr);
  }
  .archive-lead-story__media {
    aspect-ratio: var(--vh-ratio-square);
  }
  .archive-secondary-stories {
    grid-template-columns: 1fr;
  }
  .archive-secondary-story {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .archive-secondary-story__media {
    width: min(100%, 269px);
    aspect-ratio: var(--vh-ratio-wide);
  }
  .archive-secondary-story__media img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center top;
  }
  .archive-news-list {
    grid-template-columns: 1fr;
  }
  .archive-news-list .archive-list-story:nth-child(2) {
    padding-block-start: var(--vh-space-16);
  }
  .archive-list-story {
    grid-template-columns: minmax(112px, 220px) minmax(0, 1fr);
  }
}
@media (width <= 524px) {
  .archive-layout,
  .archive-lead-story {
    grid-template-columns: 1fr;
  }
  .archive-layout {
    gap: var(--vh-space-32);
  }
  .archive-lead-story {
    gap: var(--vh-space-24);
    align-items: start;
  }
  .archive-lead-story__media {
    aspect-ratio: var(--vh-ratio-wide);
  }
  .archive-title,
  .page-title {
    letter-spacing: 0.08em;
  }
  .archive-lead-story__title {
    font-size: clamp(1.75rem, 8vw, 2.125rem);
  }
  .archive-list-story {
    grid-template-columns: 96px minmax(0, 1fr);
  }
  .archive-list-story:not(.has-post-thumbnail) {
    grid-template-columns: 1fr;
  }
  .archive-news-list {
    display: grid;
    grid-template-columns: 1fr;
  }
  .archive-layout__sidebar {
    order: 2;
  }
  .archive-layout__sidebar .vh-popular-posts-module__items {
    grid-template-columns: 1fr;
  }
  .archive-secondary-stories {
    grid-template-columns: 1fr;
  }
  .archive-secondary-story {
    grid-template-columns: 96px minmax(0, 1fr);
  }
  .archive-secondary-story__media img {
    aspect-ratio: auto;
    height: 100%;
    object-position: center top;
  }
  .archive-secondary-story__media {
    aspect-ratio: var(--vh-ratio-square);
    overflow: hidden;
  }
  .archive-secondary-story__media picture {
    display: block;
    width: 100%;
    height: 100%;
  }
}
.primary-navigation__menu,
.site-topbar__nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vh-space-8) 40px;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-navigation a,
.site-topbar__nav a {
  border-bottom: 3px solid transparent;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  padding-block: var(--vh-space-12);
  text-decoration: none;
  text-transform: uppercase;
}

.site-navigation__menu-row .primary-navigation a {
  color: var(--vh-color-surface);
}

.site-topbar__nav a {
  color: var(--vh-color-muted);
  font-weight: 600;
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible,
.site-topbar__nav a:hover,
.site-topbar__nav a:focus-visible {
  color: var(--vh-color-primary-green);
}

.site-navigation__menu-row .primary-navigation a:hover,
.site-navigation__menu-row .primary-navigation a:focus-visible {
  color: #dce7c4;
}

.primary-navigation .current-menu-item > a,
.primary-navigation .current_page_item > a,
.primary-navigation .current-menu-parent > a,
.primary-navigation .current-menu-ancestor > a,
.primary-navigation .current-post-ancestor > a,
.primary-navigation .current-category-ancestor > a {
  border-bottom-color: var(--vh-color-primary-green);
  color: var(--vh-color-headline);
}

.site-navigation__menu-row .primary-navigation .current-menu-item > a,
.site-navigation__menu-row .primary-navigation .current_page_item > a,
.site-navigation__menu-row .primary-navigation .current-menu-parent > a,
.site-navigation__menu-row .primary-navigation .current-menu-ancestor > a,
.site-navigation__menu-row .primary-navigation .current-post-ancestor > a,
.site-navigation__menu-row .primary-navigation .current-category-ancestor > a {
  border-bottom-color: #dce7c4;
  color: var(--vh-color-surface);
}

.site-navigation__toggle,
.site-search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border: 1px solid var(--vh-color-border);
  border-radius: var(--vh-radius);
  background: transparent;
  color: var(--vh-color-headline);
  cursor: pointer;
}

.site-search-toggle {
  justify-content: space-between;
  width: min(244px, 28vw);
  min-height: 38px;
  padding-inline: var(--vh-space-16);
  color: var(--vh-color-muted);
  font-size: 0.875rem;
  font-weight: 400;
}

.site-search-toggle__icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--vh-color-headline);
  transition: color var(--vh-transition);
}

.site-search-toggle:hover,
.site-search-toggle:focus-visible {
  border-color: var(--vh-color-primary-green);
  color: var(--vh-color-primary-green);
}

.site-search-toggle:hover .site-search-toggle__icon,
.site-search-toggle:focus-visible .site-search-toggle__icon {
  color: var(--vh-color-primary-green);
}

.site-navigation__toggle {
  display: none;
  width: 2.5rem;
}

.site-navigation__menu-row .site-navigation__toggle {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--vh-color-surface);
}

.site-navigation__toggle-bar,
.site-navigation__toggle-bar::before,
.site-navigation__toggle-bar::after {
  display: block;
  width: 1rem;
  height: 2px;
  background: currentcolor;
  content: "";
}

.site-navigation__toggle-bar::before {
  transform: translateY(-0.35rem);
}

.site-navigation__toggle-bar::after {
  transform: translateY(0.25rem);
}

@media (width >= 900px) {
  .primary-navigation a,
  .site-topbar__nav a {
    font-size: 0.875rem;
  }
  .site-search-toggle {
    font-size: 0.9375rem;
  }
}
@media (width < 900px) {
  .site-navigation__toggle {
    display: inline-flex;
  }
  .site-search-toggle {
    width: auto;
    min-width: 42px;
    padding-inline: var(--vh-space-12);
  }
  .site-search-toggle__label {
    display: none;
  }
  .primary-navigation {
    display: none;
    position: absolute;
    inset-inline: 0;
    top: 100%;
    z-index: 20;
    padding: var(--vh-space-16) var(--vh-gutter);
    border-top: 1px solid var(--vh-color-border);
    background: var(--vh-color-primary-green-dark);
  }
  .primary-navigation.is-navigation-open {
    display: block;
  }
  .primary-navigation__menu {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    justify-content: stretch;
    justify-items: stretch;
    text-align: left;
  }
  .primary-navigation a {
    display: block;
    color: var(--vh-color-surface);
    padding-block: var(--vh-space-16);
  }
  .primary-navigation .current-menu-item > a,
  .primary-navigation .current_page_item > a,
  .primary-navigation .current-menu-parent > a,
  .primary-navigation .current-menu-ancestor > a,
  .primary-navigation .current-post-ancestor > a,
  .primary-navigation .current-category-ancestor > a {
    border-bottom-color: transparent;
    text-decoration-line: underline;
    text-decoration-color: var(--vh-color-primary-green);
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
  }
  .site-navigation {
    position: relative;
  }
}
@media (width < 900px) {
  :where(.home, .category) .site-navigation__toggle {
    display: inline-flex;
  }
  :where(.home, .category) .primary-navigation {
    display: none;
    position: absolute;
    inset-inline: 0;
    top: 100%;
    z-index: 20;
    padding: var(--vh-space-16) var(--vh-gutter);
    border-top: 1px solid var(--vh-color-border);
    background: var(--vh-color-primary-green-dark);
  }
  :where(.home, .category) .primary-navigation.is-navigation-open {
    display: block;
  }
  :where(.home, .category) .primary-navigation__menu {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    justify-content: stretch;
    justify-items: stretch;
    text-align: left;
  }
  :where(.home, .category) .primary-navigation a {
    display: block;
    color: var(--vh-color-surface);
    padding-block: var(--vh-space-16);
  }
  :where(.home, .category) .site-navigation {
    position: relative;
  }
}
@media (900px <= width < 1024px) {
  .primary-navigation__menu {
    flex-wrap: nowrap;
    column-gap: clamp(18px, 17.74vw - 141.68px, 40px);
  }
  .primary-navigation a,
  .site-topbar__nav a {
    font-size: clamp(0.78125rem, 1.21vw + 1.61px, 0.875rem);
    padding-block: clamp(10px, 1.61vw - 4.52px, 12px);
  }
}
.button,
.wp-element-button,
.search-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: var(--vh-space-8) var(--vh-space-16);
  border: 1px solid var(--vh-color-primary-green);
  border-radius: var(--vh-radius);
  background: var(--vh-color-primary-green);
  color: var(--vh-color-surface);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--vh-transition), border-color var(--vh-transition), color var(--vh-transition);
}

.button:hover,
.button:focus-visible,
.wp-element-button:hover,
.wp-element-button:focus-visible,
.search-form__submit:hover,
.search-form__submit:focus-visible {
  border-color: var(--vh-color-primary-green-dark);
  background: var(--vh-color-primary-green-dark);
  color: var(--vh-color-surface);
}

.button--secondary {
  border-color: var(--vh-color-border);
  background: var(--vh-color-surface);
  color: var(--vh-color-headline);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: var(--vh-color-primary-green);
  background: var(--vh-color-surface);
  color: var(--vh-color-primary-green);
}

.button--ghost,
.site-navigation__toggle {
  border-color: transparent;
  background: transparent;
  color: var(--vh-color-headline);
}

.button--ghost:hover,
.button--ghost:focus-visible,
.site-navigation__toggle:hover,
.site-navigation__toggle:focus-visible {
  border-color: var(--vh-color-border);
  background: var(--vh-color-surface);
  color: var(--vh-color-primary-green);
}

.search-form {
  display: flex;
  gap: var(--vh-space-8);
}

.search-form__field {
  width: min(100%, 28rem);
  min-height: 2.75rem;
  padding: var(--vh-space-8) var(--vh-space-12);
  border: 1px solid var(--vh-color-border);
  border-radius: var(--vh-radius);
  background: var(--vh-color-surface);
  color: var(--vh-color-headline);
}

.vh-author-avatar-link {
  display: inline-flex;
  flex: 0 0 auto;
  color: inherit;
  text-decoration: none;
}

.vh-author-avatar {
  --vh-avatar-bg: var(--vh-avatar-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  background: var(--vh-avatar-bg);
  box-shadow: none;
  color: var(--vh-avatar-text);
  font-family: var(--vh-font-body);
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  user-select: none;
}

.vh-author-avatar--small {
  width: 32px;
  height: 32px;
  font-size: 13px;
}

.vh-author-avatar--medium {
  width: 48px;
  height: 48px;
  font-size: 19px;
}

.vh-author-avatar--large {
  width: 88px;
  height: 88px;
  font-size: 34px;
}

.vh-author-avatar--color-1 {
  --vh-avatar-bg: var(--vh-avatar-green-dark);
}

.vh-author-avatar--color-2 {
  --vh-avatar-bg: var(--vh-avatar-green);
}

.vh-author-avatar--color-3 {
  --vh-avatar-bg: var(--vh-avatar-sage);
}

.vh-author-avatar--color-4 {
  --vh-avatar-bg: var(--vh-avatar-olive);
}

.vh-author-avatar--color-5 {
  --vh-avatar-bg: var(--vh-avatar-petrol);
}

.vh-author-avatar--color-6 {
  --vh-avatar-bg: var(--vh-avatar-grey-green);
}

.vh-author-avatar--color-7 {
  --vh-avatar-bg: var(--vh-avatar-warm-grey);
}

.vh-author-avatar__image,
.vh-author-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

@media (width <= 720px) {
  .vh-author-avatar--large {
    width: 72px;
    height: 72px;
    font-size: 28px;
  }
}
.content-card {
  display: grid;
  gap: var(--vh-space-16);
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--vh-color-border);
  background: var(--vh-color-surface);
  transition: border-color var(--vh-transition), color var(--vh-transition);
}

.content-card:hover,
.content-card:focus-within {
  border-color: var(--vh-color-primary-green);
}

.content-card.vh-interactive-card:hover {
  border-color: var(--vh-color-border);
}

.content-card__media {
  overflow: hidden;
  background: var(--vh-color-surface);
}

.content-card__media img {
  width: 100%;
  aspect-ratio: var(--vh-ratio-wide);
  object-fit: cover;
}

.entry-title {
  margin-block-end: var(--vh-space-8);
  font-size: var(--wp--preset--font-size--lg);
  line-height: 1.2;
}

.entry-title a {
  color: var(--vh-color-headline);
  text-decoration: none;
}

.entry-title a:hover,
.entry-title a:focus-visible {
  color: var(--vh-color-primary-green);
}

.entry-meta,
.entry-categories {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vh-space-8);
  color: var(--vh-color-muted);
  font-size: var(--wp--preset--font-size--sm);
}

.entry-categories a {
  color: var(--vh-color-primary-green);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.vh-section-title {
  display: inline-block;
  margin: 0 0 var(--vh-space-16);
  padding-block-end: var(--vh-space-4);
  border-bottom: 2px solid var(--vh-color-primary-green);
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.vh-section-heading {
  display: inline-block;
  margin: 0 0 var(--vh-space-12);
  padding: 0;
  border: 0;
  color: var(--vh-color-primary-green);
  font-family: var(--vh-font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.vh-action-link {
  display: inline-flex;
  align-items: center;
  gap: var(--vh-space-8);
  color: var(--vh-color-primary-green);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
}

.vh-action-link:hover,
.vh-action-link:focus-visible {
  color: var(--vh-color-primary-green-dark);
}

.vh-action-link__icon {
  flex: 0 0 auto;
  line-height: 1;
}

.vh-author-name {
  display: inline-block;
  max-width: 100%;
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
  white-space: nowrap;
}

.vh-author-name a {
  color: inherit;
  text-decoration: none;
}

.vh-author-name a:hover,
.vh-author-name a:focus-visible {
  color: var(--vh-color-primary-green);
}

.vh-weather-icon {
  display: block;
  width: 24px;
  height: 24px;
  overflow: visible;
}

.vh-weather-icon__sun {
  fill: none;
  stroke: #d3a321;
  stroke-width: 1.7;
}

.vh-weather-icon__ray {
  fill: none;
  stroke: #d3a321;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.vh-weather-icon__cloud {
  fill: var(--vh-color-surface);
  stroke: var(--vh-color-primary-green);
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.vh-weather-icon__rain,
.vh-weather-icon__snow {
  display: none;
  fill: none;
  stroke: var(--vh-color-muted);
  stroke-linecap: round;
  stroke-width: 1.6;
}

.vh-weather-icon__storm {
  display: none;
  fill: var(--vh-color-primary-green);
}

.vh-weather-icon--sunny .vh-weather-icon__cloud,
.vh-weather-icon--sunny .vh-weather-icon__rain,
.vh-weather-icon--sunny .vh-weather-icon__storm,
.vh-weather-icon--sunny .vh-weather-icon__snow,
.vh-weather-icon--cloudy .vh-weather-icon__sun,
.vh-weather-icon--cloudy .vh-weather-icon__ray,
.vh-weather-icon--rainy .vh-weather-icon__sun,
.vh-weather-icon--rainy .vh-weather-icon__ray,
.vh-weather-icon--stormy .vh-weather-icon__sun,
.vh-weather-icon--stormy .vh-weather-icon__ray,
.vh-weather-icon--snowy .vh-weather-icon__sun,
.vh-weather-icon--snowy .vh-weather-icon__ray {
  display: none;
}

.vh-weather-icon--rainy .vh-weather-icon__rain,
.vh-weather-icon--stormy .vh-weather-icon__storm,
.vh-weather-icon--snowy .vh-weather-icon__snow {
  display: block;
}

.vh-story {
  position: relative;
  display: grid;
  background: var(--vh-color-surface);
}

.vh-story__media {
  display: block;
  overflow: hidden;
  background: var(--vh-color-surface);
}

.vh-story__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.vh-story__title {
  margin: 0;
  line-height: 1.18;
}

.vh-story__title a {
  color: var(--vh-color-headline);
  text-decoration: none;
}

.vh-story__title a:hover,
.vh-story__title a:focus-visible {
  color: var(--vh-color-primary-green);
}

.vh-story__lead {
  color: var(--vh-color-muted);
}

.vh-story__lead p:last-child {
  margin-block-end: 0;
}

.vh-story__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vh-space-8);
  color: var(--vh-color-muted);
  font-size: 0.8125rem;
  line-height: 1.35;
}

.vh-story__meta > * + *::before {
  margin-inline-end: var(--vh-space-8);
  color: var(--vh-color-border);
  content: "•";
}

.vh-story__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 40px;
  padding: var(--vh-space-8) var(--vh-space-24);
  border: 1px solid var(--vh-color-primary-green);
  background: var(--vh-color-primary-green);
  color: var(--vh-color-surface);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.vh-story__button:hover,
.vh-story__button:focus-visible {
  border-color: var(--vh-color-primary-green-dark);
  background: var(--vh-color-primary-green-dark);
  color: var(--vh-color-surface);
}

.vh-story--large {
  aspect-ratio: var(--vh-ratio-wide);
  min-height: auto;
  background: var(--vh-color-headline);
  color: var(--vh-color-surface);
}

.vh-story--large .vh-story__media {
  position: absolute;
  inset: 0;
}

.vh-story--large .vh-story__media img {
  width: 100%;
  height: 100%;
}

.vh-story--large .vh-story__overlay {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  min-height: 100%;
  padding: var(--vh-space-32);
  background: linear-gradient(180deg, rgba(21, 21, 21, 0.08) 0%, rgba(21, 21, 21, 0.78) 100%);
}

.vh-story--large .vh-story__content {
  display: grid;
  gap: var(--vh-space-12);
  max-width: 620px;
}

.vh-story--large .vh-story__title {
  display: -webkit-box;
  overflow: hidden;
  font-size: clamp(2.25rem, 3.6vw, 3rem);
  line-height: 1.04;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.vh-story--large .vh-story__title a,
.vh-story--large .vh-story__lead,
.vh-story--large .vh-story__meta,
.vh-story--large .byline a {
  color: var(--vh-color-surface);
}

.vh-story--large .entry-categories a {
  color: var(--vh-color-primary-green);
}

.vh-story--large .vh-story__lead {
  display: -webkit-box;
  overflow: hidden;
  max-width: 560px;
  font-size: 0.9375rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.vh-story--medium {
  gap: var(--vh-space-16);
  padding-block-end: var(--vh-space-24);
  border-bottom: 1px solid var(--vh-color-border);
}

.vh-story--medium .vh-story__media img {
  aspect-ratio: var(--vh-ratio-wide);
}

.vh-story--medium .vh-story__content {
  display: grid;
  gap: var(--vh-space-8);
}

.vh-story--medium .vh-story__title {
  font-family: var(--vh-font-heading);
  font-size: 1.375rem;
  line-height: 1.22;
}

.vh-story--medium .vh-story__lead {
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.9375rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.vh-story__read-link {
  justify-self: start;
  padding-block-end: var(--vh-space-4);
  border-bottom: 2px solid var(--vh-color-primary-green);
  color: var(--vh-color-primary-green);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.vh-story--horizontal {
  grid-template-columns: minmax(160px, 32%) minmax(0, 1fr);
  gap: var(--vh-space-24);
  align-items: start;
  padding-block: var(--vh-space-24);
}

.vh-story--horizontal:first-child {
  padding-block-start: 0;
}

.vh-story--horizontal .vh-story__media img {
  aspect-ratio: var(--vh-ratio-square);
}

.vh-story--horizontal .vh-story__title {
  font-size: 1.25rem;
}

.vh-story--horizontal .vh-story__lead {
  -webkit-line-clamp: 1;
}

.vh-story--mini {
  grid-template-columns: 80px minmax(0, 1fr);
  gap: var(--vh-space-16);
  align-items: start;
  padding-block-end: var(--vh-space-16);
  border-bottom: 1px solid var(--vh-color-border);
}

.vh-story--mini .vh-story__media img {
  width: 80px;
  aspect-ratio: var(--vh-ratio-square);
  height: auto;
}

.vh-story--mini .vh-story__content {
  display: grid;
  gap: var(--vh-space-8);
}

.vh-story--mini .vh-story__title {
  font-family: var(--vh-font-heading);
  font-size: 1.0625rem;
}

.vh-story--opinion {
  grid-template-columns: 72px minmax(0, 1fr);
  gap: var(--vh-space-16);
  align-items: start;
  padding-block-end: var(--vh-space-32);
  border-bottom: 1px solid var(--vh-color-border);
}

.vh-story__portrait {
  display: block;
  width: 72px;
  aspect-ratio: var(--vh-ratio-portrait);
  height: auto;
  border: 1px solid var(--vh-color-border);
  background: var(--vh-color-surface);
}

.vh-story--opinion .vh-story__content {
  display: grid;
  gap: var(--vh-space-12);
}

.vh-story--opinion .vh-story__title {
  font-family: var(--vh-font-heading);
  font-size: 1.25rem;
  line-height: 1.23;
}

.vh-headline-list,
.vh-sidebar-module,
.vh-weather-module,
.vh-opinion-module,
.vh-editor-pick-module,
.vh-quick-news-module,
.vh-popular-posts-module {
  border: 1px solid rgba(17, 17, 17, 0.07);
  background: var(--vh-color-surface);
}

.vh-headline-list .vh-section-title,
.vh-weather-module .vh-section-title,
.vh-opinion-module .vh-section-title,
.vh-editor-pick-module .vh-section-title,
.vh-quick-news-module .vh-section-title,
.vh-popular-posts-module .vh-section-title {
  display: block;
  margin: 0;
  padding: var(--vh-space-16) var(--vh-space-24);
  border: 0;
  background: var(--vh-color-light-gray);
  color: var(--vh-color-primary-green);
  font-size: 0.875rem;
}

.vh-headline-list .vh-section-title,
.vh-weather-module .vh-section-title,
.vh-popular-posts-module .vh-section-title {
  background: var(--vh-color-module-header);
}

.vh-headline-list__items,
.vh-sidebar-module__content,
.vh-quick-news-module__items,
.vh-popular-posts-module__items {
  display: grid;
  gap: 0;
}

.vh-headline-list__item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: var(--vh-space-12);
  padding: var(--vh-space-12) var(--vh-space-24);
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
}

.vh-headline-list__item:first-child {
  padding-block-start: var(--vh-space-12);
}

.vh-headline-list__time {
  color: var(--vh-color-headline);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.35;
  text-align: left;
  font-variant-numeric: tabular-nums;
}

.vh-headline-list__headline {
  margin: 0;
  font-family: var(--vh-font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.28;
}

.vh-headline-list__headline a {
  color: var(--vh-color-headline);
  text-decoration: none;
}

.vh-headline-list__headline a:hover,
.vh-headline-list__headline a:focus-visible {
  color: var(--vh-color-primary-green);
}

.vh-quick-news-module__item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: var(--vh-space-12);
  align-items: start;
  padding: var(--vh-space-16) var(--vh-space-24);
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
}

.vh-quick-news-module__item:last-child {
  border-bottom: 0;
}

.vh-quick-news-module__media,
.vh-quick-news-module__placeholder {
  display: block;
  aspect-ratio: var(--vh-ratio-square);
  overflow: hidden;
  background: var(--vh-color-light-green);
}

.vh-quick-news-module__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vh-quick-news-module__content {
  display: grid;
  gap: var(--vh-space-8);
}

.vh-quick-news-module__title {
  margin: 0;
  font-family: var(--vh-font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.vh-quick-news-module__title a {
  color: var(--vh-color-headline);
  text-decoration: none;
}

.vh-quick-news-module__title a:hover,
.vh-quick-news-module__title a:focus-visible {
  color: var(--vh-color-primary-green);
}

.vh-quick-news-module__date {
  color: var(--vh-color-muted);
  font-size: 0.75rem;
  line-height: 1.25;
}

.vh-popular-posts-module__item {
  display: grid;
  gap: var(--vh-space-12);
  padding: var(--vh-space-16) var(--vh-space-24);
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
}

.vh-popular-posts-module__item:last-child {
  border-bottom: 0;
}

.vh-popular-posts-module__media {
  display: block;
  overflow: hidden;
  background: var(--vh-color-light-green);
}

.vh-popular-posts-module__media img,
.vh-popular-posts-module__placeholder {
  display: block;
  width: 100%;
  aspect-ratio: var(--vh-ratio-wide);
  height: auto;
  object-fit: cover;
}

.vh-popular-posts-module__content {
  display: grid;
  gap: var(--vh-space-8);
}

.vh-popular-posts-module__title {
  margin: 0;
  font-family: var(--vh-font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.vh-popular-posts-module__title a {
  color: var(--vh-color-headline);
  text-decoration: none;
}

.vh-popular-posts-module__title a:hover,
.vh-popular-posts-module__title a:focus-visible {
  color: var(--vh-color-primary-green);
}

.vh-module-link {
  display: inline-flex;
  align-items: center;
  gap: var(--vh-space-8);
  margin: var(--vh-space-16) var(--vh-space-24) var(--vh-space-24);
  padding-block-end: var(--vh-space-4);
  color: var(--vh-color-primary-green);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-decoration: none;
  text-transform: none;
}

.vh-locations-module {
  background: transparent;
}

.vh-locations-module__items {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vh-space-8);
  padding-block: var(--vh-space-8);
}

.vh-locations-module__link {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: var(--vh-space-4) var(--vh-space-12);
  border: 1px solid rgba(116, 144, 31, 0.28);
  border-radius: 4px;
  background: var(--vh-color-module-header);
  color: var(--vh-color-headline);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color var(--vh-transition), border-color var(--vh-transition), color var(--vh-transition);
}

.vh-locations-module__link:hover,
.vh-locations-module__link:focus-visible {
  border-color: var(--vh-color-primary-green);
  background: var(--vh-color-primary-green);
  color: var(--vh-color-surface);
}

.vh-ad-placeholder {
  display: grid;
  place-items: center;
  min-height: 96px;
  margin-block: var(--vh-space-24);
  border-block: 1px solid var(--vh-color-border);
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vh-theme-card {
  position: relative;
  display: grid;
  aspect-ratio: var(--vh-ratio-portrait);
  overflow: hidden;
  background: var(--vh-color-headline);
  color: var(--vh-color-surface);
}

.vh-theme-card__link {
  position: relative;
  display: grid;
  min-height: 100%;
  color: var(--vh-color-surface);
  text-decoration: none;
}

.vh-theme-card__media {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 21, 21, 0.08) 0%, rgba(21, 21, 21, 0.78) 100%), linear-gradient(135deg, var(--vh-color-primary-green) 0%, var(--vh-color-headline) 100%);
}

.vh-theme-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 21, 21, 0.02) 0%, rgba(21, 21, 21, 0.3) 48%, rgba(21, 21, 21, 0.78) 100%);
  content: "";
}

.vh-theme-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vh-theme-card__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: var(--vh-space-16);
  padding: var(--vh-space-32) var(--vh-space-24);
  padding-block-end: var(--vh-space-32);
}

.vh-theme-card__category {
  color: var(--vh-color-surface);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vh-theme-card__title {
  font-family: var(--vh-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.14;
}

.vh-theme-card:hover,
.vh-theme-card:focus-visible {
  color: var(--vh-color-surface);
}

.vh-story-card {
  display: grid;
  border: 1px solid var(--vh-color-border);
  background: var(--vh-color-surface);
}

.vh-story-card__media {
  display: block;
  overflow: hidden;
  background: var(--vh-color-surface);
}

.vh-story-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vh-story-card__content {
  display: grid;
  gap: var(--vh-space-8);
  padding: var(--vh-space-12) var(--vh-space-16) var(--vh-space-16);
}

.vh-story-card__title {
  margin: 0;
  font-family: var(--vh-font-heading);
  line-height: 1.16;
}

.vh-story-card__title a {
  color: var(--vh-color-headline);
  text-decoration: none;
}

.vh-story-card__title a:hover,
.vh-story-card__title a:focus-visible {
  color: var(--vh-color-primary-green);
}

.vh-story-card__meta {
  color: var(--vh-color-muted);
  font-size: 0.8125rem;
  line-height: 1.35;
}

.vh-story-card__read-link {
  justify-self: start;
  padding-block-end: var(--vh-space-4);
  color: var(--vh-color-primary-green);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.vh-story-card__excerpt {
  display: -webkit-box;
  overflow: hidden;
  color: var(--vh-color-muted);
  font-size: 0.8125rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.vh-story-card__excerpt p {
  margin: 0;
}

.vh-story-card--large {
  gap: 0;
  padding-block-end: 0;
}

.vh-story-card--large .vh-story-card__media img {
  aspect-ratio: var(--vh-ratio-square);
}

.vh-story-card--large .vh-story-card__title {
  font-size: 1.25rem;
}

.vh-story-card--horizontal {
  grid-template-columns: 220px minmax(0, 1fr);
  gap: var(--vh-space-24);
  align-items: start;
  padding-block: var(--vh-space-24);
  border: 0;
  border-bottom: 1px solid var(--vh-color-border);
}

.vh-story-card--horizontal:first-child {
  padding-block-start: 0;
}

.vh-story-card--horizontal .vh-story-card__media img {
  aspect-ratio: var(--vh-ratio-wide);
}

.vh-story-card--horizontal .vh-story-card__title {
  font-size: 1.25rem;
  line-height: 1.18;
}

.vh-story-card--horizontal .vh-story-card__content {
  padding: 0;
}

.vh-weather-module__content {
  display: grid;
  gap: var(--vh-space-12);
  padding: var(--vh-space-24);
  color: var(--vh-color-headline);
}

.vh-weather-module__current {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--vh-space-12);
}

.vh-weather-module__icon {
  width: 54px;
  height: 54px;
}

.vh-weather-module__temperature {
  color: var(--vh-color-headline);
  font-family: var(--vh-font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.vh-weather-module__location,
.vh-weather-module__condition {
  margin: 0;
  text-align: center;
}

.vh-weather-module__location {
  font-weight: 700;
}

.vh-weather-module__condition {
  color: var(--vh-color-muted);
}

.vh-weather-module__forecast {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--vh-space-8);
  border-block: 0;
}

.vh-weather-module__forecast span {
  display: grid;
  gap: var(--vh-space-4);
  padding-block: var(--vh-space-4);
  color: var(--vh-color-muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}

.vh-weather-module__forecast-icon {
  width: 22px;
  height: 22px;
  justify-self: center;
}

.vh-weather-module__forecast strong,
.vh-weather-module__forecast em {
  font-style: normal;
}

.vh-weather-module__forecast strong {
  color: var(--vh-color-headline);
}

.vh-weather-module__forecast span + span {
  border-inline-start: 0;
}

.vh-weather-module__source {
  margin: calc(var(--vh-space-8) * -1) 0 0;
  color: var(--vh-color-muted);
  font-size: 0.6875rem;
  line-height: 1.3;
  text-align: center;
}

.vh-weather-module__balaton {
  display: grid;
  gap: var(--vh-space-16);
  justify-items: center;
  margin-block-start: var(--vh-space-12);
  padding-block-start: var(--vh-space-24);
  border-block-start: 1px solid var(--vh-color-border);
  text-align: center;
}

.vh-weather-module__balaton h3 {
  margin: 0;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.vh-weather-module__balaton-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--vh-space-24);
  width: 100%;
}

.vh-weather-module__balaton-grid div {
  display: grid;
  gap: var(--vh-space-8);
  align-content: start;
  justify-items: center;
}

.vh-weather-module__balaton-grid span,
.vh-weather-module__balaton-grid em,
.vh-weather-module__balaton-updated {
  color: var(--vh-color-muted);
  font-size: 0.75rem;
  font-style: normal;
  line-height: 1.35;
}

.vh-weather-module__balaton-grid strong {
  color: var(--vh-color-headline);
  font-family: var(--vh-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.05;
}

.vh-weather-module__balaton-updated {
  margin: 0;
}

.vh-weather-module__balaton-link {
  margin-block-start: var(--vh-space-8);
}

.vh-opinion-module {
  padding-block-end: 0;
}

.vh-opinion-module__story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  gap: var(--vh-space-16);
  align-items: start;
  padding: var(--vh-space-24);
}

.vh-opinion-module__portrait {
  display: block;
  width: 96px;
  aspect-ratio: var(--vh-ratio-portrait);
  height: auto;
  border: 1px solid var(--vh-color-border);
  background: var(--vh-color-surface);
  grid-column: 2;
  grid-row: 1;
  overflow: hidden;
}

.vh-opinion-module__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vh-opinion-module__content {
  display: grid;
  gap: var(--vh-space-8);
}

.vh-opinion-module__title {
  margin: 0;
  font-family: var(--vh-font-heading);
  font-size: 1.375rem;
  line-height: 1.15;
}

.vh-opinion-module__title a,
.vh-opinion-module__item-title a,
.vh-editor-pick-module__title a {
  color: var(--vh-color-headline);
  text-decoration: none;
}

.vh-opinion-module__title a:hover,
.vh-opinion-module__title a:focus-visible,
.vh-opinion-module__item-title a:hover,
.vh-opinion-module__item-title a:focus-visible,
.vh-editor-pick-module__title a:hover,
.vh-editor-pick-module__title a:focus-visible {
  color: var(--vh-color-primary-green);
}

.vh-opinion-module__author {
  color: var(--vh-color-muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: none;
}

.vh-opinion-module__items {
  display: grid;
  padding-inline: var(--vh-space-24);
}

.vh-opinion-module__item {
  display: grid;
  gap: var(--vh-space-8);
  padding-block: var(--vh-space-16);
  border-top: 1px solid var(--vh-color-border);
}

.vh-opinion-module__item-title {
  margin: 0;
  font-family: var(--vh-font-heading);
  font-size: 1rem;
  line-height: 1.16;
}

.vh-quote-panel {
  position: relative;
  overflow: hidden;
  border-left: 2px solid var(--vh-quote-border);
  background: var(--vh-quote-bg);
}

.vh-quote-panel::before {
  position: absolute;
  top: var(--vh-quote-mark-top);
  left: var(--vh-quote-mark-left);
  z-index: 0;
  color: var(--vh-quote-mark-color);
  content: "„";
  font-family: var(--vh-font-heading);
  font-size: var(--vh-quote-mark-size);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.vh-quote-panel--editor-pick::before {
  top: calc(var(--vh-space-32) - 36px);
  left: var(--vh-space-16);
}

.vh-quote-panel--editor-pick {
  border-inline-start: 0;
}

.vh-quote-panel--weekly::before {
  top: calc(var(--vh-space-32) - 46px);
  left: var(--vh-space-16);
}

.vh-quote-panel > * {
  position: relative;
  z-index: 1;
}

.vh-editor-pick-module .vh-section-title {
  background: transparent;
}

.vh-editor-pick-module__story {
  display: grid;
  gap: var(--vh-space-16);
  padding: var(--vh-space-24) var(--vh-space-24) var(--vh-space-24) calc(var(--vh-space-64) + var(--vh-space-24));
}

@media (768px <= width <= 900px) {
  :is(.archive-layout__sidebar, .front-sidebar, .article-sidebar) .vh-editor-pick-module {
    width: 100%;
    min-width: 0;
  }
  :is(.archive-layout__sidebar, .front-sidebar, .article-sidebar) .vh-editor-pick-module__story {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding-inline: var(--vh-space-24);
  }
}
.vh-editor-pick-module__title {
  margin: 0;
  font-family: var(--vh-font-heading);
  font-size: 1.5rem;
  line-height: 1.18;
}

.vh-editor-pick-module__excerpt {
  display: -webkit-box;
  overflow: hidden;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  font-size: 0.9375rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.vh-editor-pick-module__excerpt p {
  margin: 0;
}

@media (width < 900px) {
  .vh-story--large,
  .vh-story--large .vh-story__overlay {
    min-height: auto;
  }
  .vh-story--large .vh-story__overlay {
    padding: var(--vh-space-32);
  }
  .vh-story--large .vh-story__title {
    font-size: 2.5rem;
  }
  .vh-story--horizontal {
    grid-template-columns: minmax(140px, 34%) minmax(0, 1fr);
  }
  .vh-story-card--horizontal {
    grid-template-columns: minmax(160px, 30%) minmax(0, 1fr);
  }
}
@media (width < 640px) {
  .vh-story--large,
  .vh-story--large .vh-story__overlay {
    min-height: auto;
  }
  .vh-story--large .vh-story__overlay {
    padding: var(--vh-space-24);
  }
  .vh-story--large .vh-story__title {
    font-size: 1.875rem;
  }
  .vh-story--large .vh-story__lead {
    display: none;
  }
  .vh-story--horizontal,
  .vh-story--opinion,
  .vh-story-card--horizontal,
  .vh-opinion-module__story {
    grid-template-columns: 1fr;
  }
  .vh-story--horizontal .vh-story__media img {
    height: auto;
    aspect-ratio: var(--vh-ratio-square);
  }
  .vh-story-card--horizontal .vh-story-card__media img {
    aspect-ratio: var(--vh-ratio-wide);
  }
}
.vh-interactive-card {
  cursor: pointer;
}

.vh-interactive-card:focus-visible {
  outline: 2px solid var(--vh-color-primary-green-dark);
  outline-offset: 3px;
}

@media (width >= 900px) {
  .front-page-body .vh-section-title,
  .archive-layout .vh-section-title,
  .article-page__sidebar .vh-section-title {
    font-size: 1rem;
  }
  .front-page-body .vh-headline-list__time,
  .front-page-body .vh-headline-list__headline,
  .front-page-body .vh-locations-module__link,
  .archive-layout .vh-headline-list__time,
  .archive-layout .vh-headline-list__headline,
  .archive-layout .vh-locations-module__link,
  .article-page__sidebar .vh-headline-list__time,
  .article-page__sidebar .vh-headline-list__headline,
  .article-page__sidebar .vh-locations-module__link {
    font-size: 0.875rem;
  }
  .front-page-body .vh-quick-news-module__title,
  .front-page-body .vh-popular-posts-module__title,
  .front-page-body .vh-opinion-module__item-title,
  .archive-layout .vh-quick-news-module__title,
  .archive-layout .vh-popular-posts-module__title,
  .archive-layout .vh-opinion-module__item-title,
  .article-page__sidebar .vh-quick-news-module__title,
  .article-page__sidebar .vh-popular-posts-module__title,
  .article-page__sidebar .vh-opinion-module__item-title {
    font-size: 1.0625rem;
  }
  .front-page-body .vh-quick-news-module__date,
  .front-page-body .vh-opinion-module__author,
  .archive-layout .vh-quick-news-module__date,
  .archive-layout .vh-opinion-module__author,
  .article-page__sidebar .vh-quick-news-module__date,
  .article-page__sidebar .vh-opinion-module__author {
    font-size: 0.8125rem;
  }
  .front-page-body .vh-module-link,
  .front-page-body .vh-action-link,
  .archive-layout .vh-module-link,
  .archive-layout .vh-action-link,
  .article-page__sidebar .vh-module-link,
  .article-page__sidebar .vh-action-link {
    font-size: 0.9375rem;
  }
  .front-page-body .vh-weather-module__location,
  .front-page-body .vh-weather-module__condition,
  .front-page-body .vh-weather-module__balaton h3,
  .archive-layout .vh-weather-module__location,
  .archive-layout .vh-weather-module__condition,
  .archive-layout .vh-weather-module__balaton h3,
  .article-page__sidebar .vh-weather-module__location,
  .article-page__sidebar .vh-weather-module__condition,
  .article-page__sidebar .vh-weather-module__balaton h3 {
    font-size: 1.0625rem;
  }
  .front-page-body .vh-weather-module__forecast span,
  .front-page-body .vh-weather-module__balaton-grid span,
  .front-page-body .vh-weather-module__balaton-grid em,
  .front-page-body .vh-weather-module__balaton-updated,
  .archive-layout .vh-weather-module__forecast span,
  .archive-layout .vh-weather-module__balaton-grid span,
  .archive-layout .vh-weather-module__balaton-grid em,
  .archive-layout .vh-weather-module__balaton-updated,
  .article-page__sidebar .vh-weather-module__forecast span,
  .article-page__sidebar .vh-weather-module__balaton-grid span,
  .article-page__sidebar .vh-weather-module__balaton-grid em,
  .article-page__sidebar .vh-weather-module__balaton-updated {
    font-size: 0.8125rem;
  }
  .front-page-body .vh-weather-module__source,
  .archive-layout .vh-weather-module__source,
  .article-page__sidebar .vh-weather-module__source {
    font-size: 0.75rem;
  }
  .front-page-body .vh-story--mini .vh-story__title,
  .archive-layout .vh-story--mini .vh-story__title,
  .article-page__sidebar .vh-story--mini .vh-story__title {
    font-size: 1.125rem;
  }
  .front-page-body .vh-story-card__title,
  .archive-layout .vh-story-card__title,
  .article-page__sidebar .vh-story-card__title {
    font-size: 1.0625rem;
  }
  .front-page-body .vh-story-card--large .vh-story-card__title,
  .front-page-body .vh-story-card--horizontal .vh-story-card__title,
  .archive-layout .vh-story-card--large .vh-story-card__title,
  .archive-layout .vh-story-card--horizontal .vh-story-card__title,
  .article-page__sidebar .vh-story-card--large .vh-story-card__title,
  .article-page__sidebar .vh-story-card--horizontal .vh-story-card__title {
    font-size: 1.3125rem;
  }
  .front-page-body .vh-story-card__meta,
  .front-page-body .vh-story-card__excerpt,
  .archive-layout .vh-story-card__meta,
  .archive-layout .vh-story-card__excerpt,
  .article-page__sidebar .vh-story-card__meta,
  .article-page__sidebar .vh-story-card__excerpt {
    font-size: 0.875rem;
  }
  .front-page-body .vh-editor-pick-module__excerpt,
  .archive-layout .vh-editor-pick-module__excerpt,
  .article-page__sidebar .vh-editor-pick-module__excerpt {
    font-size: 1rem;
  }
}
.vh-interactive-card__media {
  overflow: hidden;
}

.vh-interactive-card__title a:focus-visible {
  color: var(--vh-color-primary-green-dark);
  text-decoration: none;
}

.vh-interactive-card:focus-visible .vh-interactive-card__title,
.vh-interactive-card:focus-visible .vh-interactive-card__title a {
  color: var(--vh-color-primary-green-dark);
}

.vh-interactive-card :is(.vh-author-name, .byline, .author) a:focus-visible {
  color: var(--vh-color-primary-green-dark);
}

@media (hover: hover) and (pointer: fine) {
  .vh-interactive-card__title,
  .vh-interactive-card__title a,
  .vh-interactive-card :is(.vh-author-name, .byline, .author) a {
    transition: color 190ms ease;
  }
  .vh-interactive-card__title:hover,
  .vh-interactive-card__title:hover a,
  .vh-interactive-card__title a:hover {
    color: var(--vh-color-primary-green-dark);
    text-decoration: none;
  }
  .vh-interactive-card :is(.vh-author-name, .byline, .author) a:hover {
    color: var(--vh-color-primary-green-dark);
  }
  .vh-interactive-card__media img {
    transition: transform 190ms ease;
  }
  .vh-interactive-card__media:hover img {
    transform: translateZ(0) scale(1.02);
    will-change: transform;
  }
  .vh-interactive-card:focus-visible .vh-interactive-card__media img {
    transform: translateZ(0) scale(1.02);
    will-change: transform;
  }
}
@media (prefers-reduced-motion: reduce) {
  .vh-interactive-card__media img,
  .vh-interactive-card__media:hover img,
  .vh-interactive-card:focus-visible .vh-interactive-card__media img {
    transition: none;
    transform: none;
  }
}
.vh-article-recommendation {
  margin: calc(var(--vh-space-32) + var(--vh-space-8)) 0 var(--vh-space-32);
  background: var(--vh-quote-bg);
  font-family: var(--vh-font-body);
}

.vh-article-recommendation__link {
  display: grid;
  grid-template-columns: 152px minmax(0, 1fr);
  gap: var(--vh-space-24);
  align-items: center;
  min-height: 152px;
  padding: var(--vh-space-24);
  color: inherit;
  text-decoration: none;
}

.vh-article-recommendation--no-image .vh-article-recommendation__link {
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
}

.vh-article-recommendation__link:hover .vh-article-recommendation__title,
.vh-article-recommendation__link:focus-visible .vh-article-recommendation__title {
  color: var(--vh-color-primary-green);
}

.vh-article-recommendation__link:focus-visible {
  outline: 2px solid var(--vh-color-primary-green);
  outline-offset: 3px;
}

.vh-article-recommendation__media {
  aspect-ratio: var(--vh-ratio-square);
  overflow: hidden;
  background: var(--vh-color-light-gray);
}

.vh-article-recommendation__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vh-article-recommendation__content {
  display: grid;
  gap: var(--vh-space-8);
  min-width: 0;
}

.vh-article-recommendation__label,
.vh-article-recommendation__title,
.vh-article-recommendation__excerpt,
.vh-article-recommendation__date {
  margin: 0;
}

.vh-article-recommendation__label {
  color: var(--vh-color-primary-green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.vh-article-recommendation__title {
  color: var(--vh-color-primary-green);
  font-family: var(--vh-font-heading);
  font-size: clamp(1.1875rem, 1.6vw, 1.375rem);
  font-weight: 700;
  line-height: 1.18;
}

.vh-article-recommendation__excerpt {
  display: -webkit-box;
  overflow: hidden;
  color: var(--vh-color-headline);
  font-size: 0.9375rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.vh-article-recommendation__date {
  color: var(--vh-color-muted);
  font-size: 0.8125rem;
  line-height: 1.35;
}

@media (width > 1024px) {
  .vh-article-recommendation__label {
    font-size: 0.8125rem;
  }
  .vh-article-recommendation__title {
    font-size: clamp(1.3125rem, 1.7vw, 1.5rem);
  }
  .vh-article-recommendation__excerpt {
    font-size: 1rem;
  }
  .vh-article-recommendation__date {
    font-size: 0.875rem;
  }
}
@media (width <= 640px) {
  .vh-article-recommendation__link {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: var(--vh-space-16);
    min-height: 96px;
    padding: var(--vh-space-16);
  }
  .vh-article-recommendation__title {
    font-size: 1.0625rem;
  }
  .vh-article-recommendation__excerpt {
    font-size: 0.875rem;
  }
}
@media (width <= 430px) {
  .vh-article-recommendation__link {
    grid-template-columns: minmax(0, 1fr);
  }
  .vh-article-recommendation__media {
    width: min(100%, 180px);
  }
}
.vh-ad-slot {
  box-sizing: border-box;
  width: 100%;
  margin: 36px auto 40px;
  overflow: hidden;
  text-align: center;
}

.vh-ad-slot__label {
  margin-bottom: 6px;
  color: #777;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vh-ad-slot__link,
.vh-ad-slot picture {
  display: block;
}

.vh-ad-slot__link {
  overflow: hidden;
}

.vh-ad-slot__link:focus-visible {
  outline: 2px solid var(--vh-color-primary-green-dark);
  outline-offset: 3px;
}

.vh-ad-slot img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

@media (hover: hover) and (pointer: fine) {
  .vh-ad-slot__link img {
    transition: transform 190ms ease;
  }
  .vh-ad-slot__link:hover img {
    transform: translateZ(0) scale(1.01);
    will-change: transform;
  }
  .vh-ad-slot__link:focus-visible img {
    transform: translateZ(0) scale(1.01);
    will-change: transform;
  }
}
@media (prefers-reduced-motion: reduce) {
  .vh-ad-slot__link img,
  .vh-ad-slot__link:hover img,
  .vh-ad-slot__link:focus-visible img {
    transition: none;
    transform: none;
  }
}
.vh-ad-slot--home-top {
  max-width: 1200px;
  margin-top: 32px;
  margin-bottom: 40px;
}

.vh-ad-slot--home-after-lead,
.vh-ad-slot--home-middle,
.vh-ad-slot--home-lower {
  max-width: 840px;
}

.single-entry .vh-ad-slot--home-after-lead,
.single-entry .vh-ad-slot--home-middle,
.single-entry .vh-ad-slot--home-lower,
.article-page__main > .vh-ad-slot--home-after-lead,
.article-page__main > .vh-ad-slot--home-middle,
.article-page__main > .vh-ad-slot--home-lower {
  margin-block: 40px;
}

.single-entry .entry-content > *:has(+ :is(.vh-ad-slot--home-after-lead, .vh-ad-slot--home-middle, .vh-ad-slot--home-lower)),
.article-page__main > *:has(+ :is(.vh-ad-slot--home-after-lead, .vh-ad-slot--home-middle, .vh-ad-slot--home-lower)) {
  margin-block-end: 0;
}

.single-entry .entry-content > :is(.vh-ad-slot--home-after-lead, .vh-ad-slot--home-middle, .vh-ad-slot--home-lower) + *,
.article-page__main > :is(.vh-ad-slot--home-after-lead, .vh-ad-slot--home-middle, .vh-ad-slot--home-lower) + * {
  margin-block-start: 0;
}

.single-entry .entry-content > .vh-ad-slot--home-after-lead {
  width: min(840px, 100cqw);
  max-width: none;
  margin-left: calc((100cqw - min(840px, 100cqw)) / 2);
}

.vh-ad-slot--home-after-lead > :not(.vh-ad-slot__label),
.vh-ad-slot--home-middle > :not(.vh-ad-slot__label),
.vh-ad-slot--home-lower > :not(.vh-ad-slot__label) {
  display: flex;
  width: min(100%, 840px);
  margin-right: auto;
  margin-left: auto;
  align-items: center;
  justify-content: center;
}

.vh-ad-slot--sidebar-rectangle,
.vh-ad-slot--sidebar-halfpage,
.vh-ad-slot--sidebar-lower {
  max-width: 330px;
  margin: 32px 0 36px;
  padding: 0 15px;
}

.vh-ad-slot--sidebar-rectangle > :not(.vh-ad-slot__label),
.vh-ad-slot--sidebar-halfpage > :not(.vh-ad-slot__label),
.vh-ad-slot--sidebar-lower > :not(.vh-ad-slot__label) {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .vh-ad-slot--home-top img,
  .vh-ad-slot--home-after-lead img,
  .vh-ad-slot--home-middle img,
  .vh-ad-slot--home-lower img {
    max-width: min(100%, 728px);
  }
}
@media (max-width: 767px) {
  .vh-ad-slot {
    max-width: 100%;
    margin: 24px auto 30px;
  }
  .single-entry .vh-ad-slot--home-after-lead,
  .single-entry .vh-ad-slot--home-middle,
  .single-entry .vh-ad-slot--home-lower,
  .article-page__main > .vh-ad-slot--home-after-lead,
  .article-page__main > .vh-ad-slot--home-middle,
  .article-page__main > .vh-ad-slot--home-lower {
    margin-block: 24px;
  }
  .vh-ad-slot--sidebar-rectangle,
  .vh-ad-slot--sidebar-halfpage,
  .vh-ad-slot--sidebar-lower {
    max-width: 100%;
    margin: 24px auto 30px;
    padding: 0;
  }
}
.vh-gallery {
  display: grid;
  gap: var(--vh-space-12);
  margin: var(--vh-space-32) 0;
}

.vh-gallery__main {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.vh-gallery__mobile-count {
  display: none;
}

.vh-gallery__media {
  display: block;
  aspect-ratio: var(--vh-ratio-wide);
  overflow: hidden;
  background: var(--vh-color-light-gray);
}

.vh-gallery__media img,
.vh-gallery__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vh-gallery__caption {
  display: grid;
  gap: var(--vh-space-4);
  margin: 0;
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
  font-size: 0.8125rem;
  line-height: 1.4;
}

.vh-gallery__caption-text,
.vh-gallery__credit {
  margin: 0;
}

.vh-gallery__credit {
  color: var(--vh-color-muted);
  font-size: 0.8125rem;
}

.vh-gallery__thumbs {
  --vh-gallery-thumb-size: 80px;
  --vh-gallery-columns: 1;
  display: grid;
  grid-template-columns: repeat(var(--vh-gallery-columns), minmax(var(--vh-gallery-thumb-size), 1fr));
  gap: var(--vh-space-8);
  margin-block-start: var(--vh-space-8);
  overflow: hidden;
  padding-block: var(--vh-space-4);
}

.vh-gallery__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: var(--vh-ratio-square);
  padding: 0;
  border: 2px solid transparent;
  border-radius: 3px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
}

.vh-gallery__thumb[hidden] {
  display: none;
}

.vh-gallery__thumb.is-active {
  border-color: var(--vh-color-primary-green);
}

.vh-gallery__thumb--more::after {
  position: absolute;
  inset: 2px;
  background: rgba(17, 17, 17, 0.58);
  content: "";
  pointer-events: none;
}

.vh-gallery__thumb-more {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--vh-font-body);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .vh-gallery__thumb img {
    transition: transform 180ms ease;
    will-change: transform;
  }
  .vh-gallery__thumb:hover img {
    transform: scale(1.02);
  }
}
.vh-gallery-lightbox[hidden] {
  display: none;
}

.vh-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: var(--vh-space-24);
}

.vh-gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.92);
}

.vh-gallery-lightbox__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  width: min(1120px, 100%);
  max-height: calc(100vh - 48px);
  gap: var(--vh-space-16);
}

.vh-gallery-lightbox__figure {
  display: grid;
  gap: var(--vh-space-16);
  min-width: 0;
  margin: 0;
}

.vh-gallery-lightbox__image {
  display: block;
  width: 100%;
  max-height: min(72vh, 760px);
  background: rgba(255, 255, 255, 0.06);
  object-fit: contain;
}

.vh-gallery-lightbox__image.is-error {
  min-height: min(56vh, 520px);
}

.vh-gallery-lightbox__caption {
  display: grid;
  gap: var(--vh-space-4);
  max-height: 18vh;
  overflow: auto;
  color: #fff;
  font-family: var(--vh-font-body);
  font-size: 0.9375rem;
  line-height: 1.45;
}

.vh-gallery-lightbox__caption p {
  margin: 0;
}

.vh-gallery-lightbox__counter,
.vh-gallery-lightbox__credit {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8125rem;
}

.vh-gallery-lightbox__close,
.vh-gallery-lightbox__nav {
  display: grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(17, 17, 17, 0.34);
  color: #fff;
  cursor: pointer;
  font-family: var(--vh-font-body);
  line-height: 1;
  transition: border-color var(--vh-transition), color var(--vh-transition);
}

.vh-gallery-lightbox__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  font-size: 1.75rem;
}

.vh-gallery-lightbox__nav {
  font-size: 2.5rem;
}

.vh-gallery-lightbox__close:hover,
.vh-gallery-lightbox__nav:hover {
  border-color: var(--vh-color-primary-green);
  color: var(--vh-color-primary-green-light);
}

.vh-gallery__main:focus-visible,
.vh-gallery__thumb:focus-visible,
.vh-gallery-lightbox button:focus-visible {
  outline: 2px solid var(--vh-color-primary-green);
  outline-offset: 3px;
}

.is-gallery-lightbox-open {
  overflow: hidden;
}

@media (width <= 720px) {
  .vh-gallery {
    margin-block: var(--vh-space-24);
  }
  .vh-gallery__thumbs {
    display: none;
  }
  .vh-gallery__mobile-count {
    position: absolute;
    right: var(--vh-space-12);
    bottom: var(--vh-space-12);
    display: inline-flex;
    align-items: center;
    gap: var(--vh-space-4);
    padding: 5px 8px;
    border-radius: 3px;
    background: rgba(17, 17, 17, 0.68);
    color: #fff;
    font-family: var(--vh-font-body);
    font-size: 0.8125rem;
    line-height: 1;
    pointer-events: none;
  }
  .vh-gallery__mobile-count svg {
    width: 16px;
    height: 16px;
  }
  .vh-gallery-lightbox {
    padding: var(--vh-space-16);
  }
  .vh-gallery-lightbox__body {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 32px);
  }
  .vh-gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
  }
  .vh-gallery-lightbox__nav--prev {
    left: 0;
  }
  .vh-gallery-lightbox__nav--next {
    right: 0;
  }
  .vh-gallery-lightbox__image {
    max-height: 68vh;
  }
}
@media (prefers-reduced-motion: reduce) {
  .vh-gallery__thumb img {
    transition: none;
  }
  .vh-gallery__thumb:hover img {
    transform: none;
  }
}
.navigation.pagination {
  margin-block-start: var(--vh-space-48);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vh-space-8);
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  border: 1px solid var(--vh-color-border);
  border-radius: var(--vh-radius);
  background: var(--vh-color-surface);
  color: var(--vh-color-headline);
  text-decoration: none;
}

.page-numbers.current {
  border-color: var(--vh-color-primary-green);
  background: var(--vh-color-primary-green);
  color: var(--vh-color-surface);
}

.site-main--front {
  display: grid;
  gap: var(--vh-space-24);
  padding-block: var(--vh-space-24) var(--vh-space-64);
}

.site-topbar__meta {
  display: flex;
  align-items: center;
  gap: var(--vh-space-16);
}

.site-topbar__weather {
  padding-inline-start: var(--vh-space-16);
  border-inline-start: 1px solid var(--vh-color-border);
}

.site-topbar__weather-icon {
  width: 12px;
  height: 12px;
  margin-inline-end: var(--vh-space-8);
  vertical-align: -1px;
}

.breaking-news {
  display: flex;
  align-items: center;
  overflow: hidden;
  border-block: 1px solid var(--vh-color-border);
  background: var(--vh-color-surface);
}

.breaking-news--important {
  --vh-breaking-color: #b88700;
}

.breaking-news--urgent {
  --vh-breaking-color: #b42318;
}

.breaking-news__prefix {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breaking-news__separator {
  font-weight: 600;
}

.breaking-news__track {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  padding-block: var(--vh-space-8);
  white-space: nowrap;
}

.breaking-news__marquee {
  display: inline-block;
  min-width: max-content;
  padding-inline-start: 100%;
  animation: vh-breaking-marquee 38s linear infinite;
}

.breaking-news__headline {
  color: var(--vh-breaking-color, var(--vh-color-headline));
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.breaking-news:hover .breaking-news__marquee,
.breaking-news:focus-within .breaking-news__marquee {
  animation-play-state: paused;
}

@keyframes vh-breaking-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .breaking-news__marquee {
    animation: none;
  }
}
.front-hero,
.front-page-body {
  display: grid;
  grid-template-columns: minmax(0, var(--vh-main-column)) minmax(0, var(--vh-sidebar-column));
  gap: var(--vh-column-gap);
  align-items: start;
}

.front-hero-story {
  position: relative;
  display: grid;
  aspect-ratio: var(--vh-ratio-wide);
  overflow: hidden;
  background: var(--vh-color-headline);
  color: var(--vh-color-surface);
}

.front-hero-story__media {
  position: absolute;
  inset: 0;
}

.front-hero-story__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.58) 0%, rgba(17, 17, 17, 0.24) 48%, rgba(17, 17, 17, 0) 82%), linear-gradient(180deg, rgba(17, 17, 17, 0.03) 0%, rgba(17, 17, 17, 0.14) 100%);
  content: "";
}

.front-hero-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.front-hero-story__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: var(--vh-space-8);
  max-width: 560px;
  min-height: 100%;
  padding: var(--vh-space-48) var(--vh-space-32);
}

.front-hero-story__title {
  margin: 0;
  font-family: var(--vh-font-heading);
  font-size: clamp(2.5rem, 3.85vw, 3.125rem);
  font-weight: 700;
  line-height: 1.18;
  max-width: 560px;
}

.front-hero-story__title a {
  color: var(--vh-color-surface);
  text-decoration: none;
}

.front-hero-story__title a:hover,
.front-hero-story__title a:focus-visible {
  color: var(--vh-color-surface);
  text-decoration: none;
}

.front-hero-story__lead,
.front-hero-story__meta,
.front-hero-story__meta a {
  color: var(--vh-color-surface);
}

.front-hero-story__lead {
  display: -webkit-box;
  overflow: hidden;
  max-width: 480px;
  font-size: 1rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.front-hero-story__lead p {
  margin: 0;
}

.front-hero-story__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vh-space-8);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  line-height: 1.4;
}

.front-hero-story__button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding-inline: var(--vh-space-32);
  background: var(--vh-color-primary-green);
  color: var(--vh-color-surface);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color var(--vh-transition), transform var(--vh-transition);
}

.front-hero-story__button:hover,
.front-hero-story__button:focus-visible {
  background: var(--vh-color-primary-green-dark);
  transform: translateX(2px);
}

.front-page-body__main {
  display: grid;
  gap: var(--vh-section-gap);
}

.front-leading-label {
  display: inline-flex;
  justify-self: start;
  min-width: 150px;
  margin: 0;
  padding: var(--vh-space-8) var(--vh-space-16);
  background: #aab88b;
  color: var(--vh-color-surface);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.front-lead-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--vh-space-24);
  align-items: center;
}

.front-lead-story__content {
  display: grid;
  gap: var(--vh-space-16);
  align-content: center;
}

.front-lead-story__title {
  max-width: 500px;
  margin: 0;
  font-family: var(--vh-font-heading);
  font-size: clamp(2rem, 2.8vw, 2.625rem);
  font-weight: 700;
  line-height: 1.28;
}

.front-lead-story__title a,
.front-featured-story__title a,
.front-section__lead-title a,
.front-section__item-title a {
  color: var(--vh-color-headline);
  text-decoration: none;
}

.front-lead-story__title a:hover,
.front-lead-story__title a:focus-visible,
.front-featured-story__title a:hover,
.front-featured-story__title a:focus-visible,
.front-section__lead-title a:hover,
.front-section__lead-title a:focus-visible,
.front-section__item-title a:hover,
.front-section__item-title a:focus-visible {
  color: var(--vh-color-primary-green);
}

.front-lead-story__excerpt {
  display: -webkit-box;
  overflow: hidden;
  max-width: 520px;
  color: var(--vh-color-headline);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.front-lead-story__excerpt p,
.front-section__excerpt p {
  margin: 0;
}

.front-lead-story__meta,
.front-featured-story__meta,
.front-section__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vh-space-8);
  color: var(--vh-color-muted);
  font-size: 0.8125rem;
  line-height: 1.35;
}

.front-lead-story__meta > * + *::before,
.front-featured-story__meta > * + *::before,
.front-section__meta > * + *::before {
  margin-inline-end: var(--vh-space-8);
  color: var(--vh-color-border);
  content: "•";
}

.front-lead-story__media {
  display: block;
  aspect-ratio: var(--vh-ratio-square);
  overflow: hidden;
  background: var(--vh-color-surface);
}

.front-lead-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.front-featured-stories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--vh-space-24);
  padding-block-end: calc(var(--vh-section-gap) + var(--vh-space-8));
  border-bottom: 2px solid #aab88b;
}

.front-featured-story {
  display: grid;
  gap: var(--vh-space-12);
  align-items: start;
  align-content: start;
  min-width: 0;
}

.front-featured-story__media {
  display: block;
  overflow: hidden;
}

.front-featured-story__media img {
  width: 100%;
  aspect-ratio: var(--vh-ratio-wide);
  object-fit: cover;
}

.front-featured-story__content {
  display: grid;
  gap: var(--vh-space-8);
  align-content: start;
  min-width: 0;
}

.front-featured-story__title {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  font-family: var(--vh-font-heading);
  font-size: clamp(1.125rem, 1.35vw, 1.375rem);
  font-weight: 700;
  hyphens: auto;
  line-height: 1.24;
  overflow-wrap: anywhere;
  word-break: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.front-featured-story__excerpt,
.front-section__lead-excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--vh-color-muted);
  font-size: 0.9375rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
}

.front-featured-story__excerpt {
  -webkit-line-clamp: 2;
}

.front-section__lead-excerpt {
  -webkit-line-clamp: 3;
}

.front-featured-story__excerpt p,
.front-section__lead-excerpt p {
  margin: 0;
}

.front-section {
  padding-block-end: var(--vh-space-24);
  border-bottom: 1px solid var(--vh-color-border);
}

.front-section__layout {
  display: grid;
  gap: var(--vh-space-24);
}

.front-section--wide .front-section__layout {
  grid-template-columns: minmax(220px, 34%) minmax(0, 1fr);
}

.front-section__lead {
  display: grid;
  gap: var(--vh-space-12);
  align-content: start;
}

.front-section--wide .front-section__lead,
.front-section--compact .front-section__lead {
  display: contents;
}

.front-section--wide .front-section__lead-media {
  grid-column: 1;
  grid-row: 1/span 2;
}

.front-section--wide .front-section__lead-content {
  grid-column: 2;
  grid-row: 1;
}

.front-section--wide .front-section__items {
  grid-column: 2;
  grid-row: 2;
}

.front-section--compact .front-section__layout {
  grid-template-columns: minmax(112px, 38%) minmax(0, 1fr);
  gap: var(--vh-space-16);
  align-items: start;
}

.front-section--compact .front-section__lead-media {
  grid-column: 1;
  grid-row: 1/span 2;
}

.front-section--compact .front-section__lead-content {
  grid-column: 2;
  grid-row: 1;
}

.front-section--compact .front-section__items {
  grid-column: 2;
  grid-row: 2;
}

.front-section__lead-media {
  display: block;
  overflow: hidden;
}

.front-section__lead-media img {
  width: 100%;
  aspect-ratio: var(--vh-ratio-square);
  object-fit: cover;
}

.front-section__lead-content {
  display: grid;
  gap: var(--vh-space-8);
}

.front-section__lead-title {
  margin: 0;
  font-family: var(--vh-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.32;
}

.front-section--compact .front-section__lead-title {
  font-size: 1.125rem;
  line-height: 1.32;
}

.front-section__items {
  display: grid;
  gap: 0;
  align-content: start;
}

.front-section__item {
  display: grid;
  gap: var(--vh-space-4);
  padding-block: var(--vh-space-12);
  border-bottom: 1px solid var(--vh-color-border);
}

.front-section--compact .front-section__item {
  padding-block: var(--vh-space-8);
}

.front-section__item:first-child {
  padding-block-start: 0;
}

.front-section__item:last-child {
  border-bottom: 0;
}

.front-section__item-title {
  margin: 0;
  font-family: var(--vh-font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.32;
}

.front-section--compact .front-section__item-title {
  font-family: var(--vh-font-body);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.38;
}

.front-section--compact .front-section__item:first-child .front-section__item-title {
  font-family: var(--vh-font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.34;
}

.front-section__excerpt {
  display: -webkit-box;
  overflow: hidden;
  color: var(--vh-color-muted);
  font-size: 0.875rem;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.front-section--compact .front-section__excerpt {
  display: none;
}

.front-section__link {
  margin-block-start: var(--vh-space-12);
  font-size: 1.125rem;
  font-weight: 400;
}

.front-section-pairs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--vh-space-32);
  border-bottom: 1px solid var(--vh-color-border);
}

.front-section-pairs .front-section {
  border-bottom: 0;
}

.front-story-cards__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--vh-space-24);
}

.front-story-cards {
  margin-block-start: calc(var(--vh-space-48) * -1);
}

.front-featured-topics {
  padding-block-start: 0;
  border-top: 1px solid var(--vh-color-border);
}

.front-featured-topics__items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--vh-space-24);
  align-items: stretch;
}

.front-sidebar {
  display: grid;
  gap: var(--vh-section-gap);
}

.front-section-title a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.front-section-title a:hover,
.front-section-title a:focus-visible {
  color: inherit;
}

.front-section > .front-section-title {
  display: inline-block;
  width: fit-content;
  margin: 0 0 var(--vh-space-16);
  padding: 0.5rem 0.75rem;
  border: 0;
  background: #abb58d;
  background: color-mix(in srgb, var(--vh-color-primary-green-dark) 49%, white);
  color: var(--vh-color-surface);
  font-family: var(--vh-font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.front-section > .front-section-title > a {
  padding: 0;
}

@media (width > 900px) {
  .front-leading-label {
    display: inline-block;
    justify-self: start;
    width: fit-content;
    margin: var(--vh-space-8) 0 calc(var(--vh-space-16) - var(--vh-section-gap));
    padding: 0.5rem 0.75rem;
    background: #abb58d;
    background: color-mix(in srgb, var(--vh-color-primary-green-dark) 49%, white);
    color: var(--vh-color-surface);
    font-family: var(--vh-font-body);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
  }
  .front-section-title {
    font-size: 1.0625rem;
  }
  .front-sidebar {
    padding-block-start: var(--vh-space-8);
  }
  .front-hero-story__lead,
  .front-lead-story__excerpt {
    font-size: 1.0625rem;
  }
  .front-hero-story__meta,
  .front-lead-story__meta,
  .front-featured-story__meta,
  .front-section__meta {
    font-size: 0.875rem;
  }
  .front-featured-story__title {
    font-size: clamp(1.1875rem, 1.4vw, 1.4375rem);
  }
  .front-featured-story__excerpt,
  .front-section__lead-excerpt,
  .front-section__excerpt {
    font-size: 0.9375rem;
  }
  .front-section__item-title {
    font-size: 1.25rem;
  }
  .front-section--compact .front-section__item-title {
    font-size: 0.9375rem;
  }
  .front-section--compact .front-section__item:first-child .front-section__item-title {
    font-size: 1rem;
  }
}
@media (width <= 900px) {
  .site-main--front {
    gap: var(--vh-space-20, 20px);
    padding-block: var(--vh-space-20, 20px) var(--vh-space-48);
  }
  .front-hero,
  .front-page-body,
  .front-lead-story,
  .front-section--wide .front-section__layout,
  .front-section--compact .front-section__layout,
  .front-section-pairs,
  .front-featured-topics__items {
    grid-template-columns: 1fr;
  }
  .front-page-body,
  .front-page-body__main {
    gap: var(--vh-space-32);
  }
  .front-leading-label,
  .front-section-title {
    display: inline-block;
    justify-self: start;
    width: fit-content;
    margin: 0;
    padding: 0.5rem 0.75rem;
    border: 0;
    background: var(--vh-color-primary-green-dark);
    color: var(--vh-color-surface);
    font-family: var(--vh-font-body);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
  }
  .front-section-title:has(> a) {
    padding: 0;
  }
  .front-section-title > a {
    padding: 0.5rem 0.75rem;
  }
  .front-leading-label {
    background: #abb58d;
    background: color-mix(in srgb, var(--vh-color-primary-green-dark) 49%, white);
  }
  .front-hero-story__content {
    padding: var(--vh-space-24);
  }
  .front-hero-story__title {
    font-size: clamp(2rem, 7vw, 2.5rem);
  }
  .front-story-cards {
    margin-block-start: 0;
  }
  .front-lead-story {
    gap: var(--vh-space-24);
    padding-block-end: var(--vh-space-32);
  }
  .front-lead-story__media {
    aspect-ratio: var(--vh-ratio-square);
    order: -1;
  }
  .front-section__lead-media img {
    aspect-ratio: var(--vh-ratio-wide);
  }
  .front-featured-stories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--vh-space-24);
    padding-block-end: var(--vh-space-32);
  }
  .front-featured-story {
    grid-template-columns: 1fr;
  }
  .front-section--wide .front-section__lead,
  .front-section--compact .front-section__lead {
    display: grid;
  }
  .front-section--wide .front-section__lead-media,
  .front-section--wide .front-section__lead-content,
  .front-section--wide .front-section__items,
  .front-section--compact .front-section__lead-media,
  .front-section--compact .front-section__lead-content,
  .front-section--compact .front-section__items {
    grid-column: auto;
    grid-row: auto;
  }
  .front-section,
  .front-section-pairs {
    padding-block-end: 0;
  }
  .front-section-pairs {
    gap: var(--vh-space-32);
  }
  .front-section-title {
    margin-block-end: 14px;
  }
  .front-section__layout,
  .front-section--compact .front-section__layout {
    gap: var(--vh-space-16);
  }
  .front-section__lead-title,
  .front-section--compact .front-section__lead-title {
    font-size: 1.375rem;
  }
  .front-section__lead-excerpt {
    font-size: 0.9375rem;
  }
  .front-section__items {
    gap: 0;
  }
  .front-section__item,
  .front-section--compact .front-section__item {
    padding-block: var(--vh-space-12);
  }
  .front-section__item .entry-categories,
  .front-section__item .front-section__meta {
    display: none;
  }
  .front-section__item-title,
  .front-section--compact .front-section__item-title,
  .front-section--compact .front-section__item:first-child .front-section__item-title {
    font-family: var(--vh-font-heading);
    font-size: 1.0625rem;
    line-height: 1.32;
  }
  .front-sidebar {
    padding-block-start: 0;
  }
}
@media (431px <= width <= 900px) {
  .site-main--front .front-sidebar .vh-popular-posts-module__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-main--front .front-sidebar .vh-popular-posts-module__item {
    grid-template-columns: 1fr;
    align-content: start;
  }
  .site-main--front .front-sidebar .vh-popular-posts-module__media img,
  .site-main--front .front-sidebar .vh-popular-posts-module__placeholder {
    aspect-ratio: var(--vh-ratio-wide);
    height: auto;
    object-fit: cover;
  }
}
@media (768px <= width <= 900px) {
  .front-page-body {
    grid-template-columns: minmax(0, 2.4fr) minmax(220px, 0.9fr);
    gap: var(--vh-space-24);
  }
  .front-sidebar {
    grid-template-columns: minmax(0, 1fr);
  }
  .front-lead-story {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }
  .front-lead-story__media {
    aspect-ratio: var(--vh-ratio-square);
    order: 0;
  }
  .front-section--wide .front-section__layout,
  .front-section--compact .front-section__layout {
    grid-template-columns: minmax(0, 38%) minmax(0, 1fr);
  }
  .front-section--wide .front-section__lead,
  .front-section--compact .front-section__lead {
    display: contents;
  }
  .front-section--wide .front-section__lead-media,
  .front-section--compact .front-section__lead-media {
    grid-column: 1;
    grid-row: 1/span 2;
    align-self: start;
    aspect-ratio: var(--vh-ratio-square);
  }
  .front-section--wide .front-section__lead-content,
  .front-section--compact .front-section__lead-content {
    grid-column: 2;
    grid-row: 1;
  }
  .front-section--wide .front-section__items,
  .front-section--compact .front-section__items {
    grid-column: 2;
    grid-row: 2;
  }
  .front-section__lead-media img {
    height: 100%;
    aspect-ratio: auto;
  }
  .front-section-pairs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-main--front .front-sidebar .vh-popular-posts-module__items {
    grid-template-columns: 1fr;
  }
}
@media (768px <= width <= 1023px) {
  .front-section-pairs {
    grid-template-columns: 1fr;
  }
  .front-section--wide .front-section__layout,
  .front-section--compact .front-section__layout {
    grid-template-columns: minmax(0, 38%) minmax(0, 1fr);
    gap: var(--vh-space-16);
  }
  .front-section--wide .front-section__lead,
  .front-section--compact .front-section__lead {
    display: contents;
  }
  .front-section--wide .front-section__lead-media,
  .front-section--compact .front-section__lead-media {
    grid-column: 1;
    grid-row: 1/span 2;
    align-self: start;
    aspect-ratio: var(--vh-ratio-square);
  }
  .front-section--wide .front-section__lead-content,
  .front-section--compact .front-section__lead-content {
    grid-column: 2;
    grid-row: 1;
  }
  .front-section--wide .front-section__items,
  .front-section--compact .front-section__items {
    grid-column: 2;
    grid-row: 2;
  }
  .front-section__lead-media img {
    height: 100%;
    aspect-ratio: auto;
  }
  .front-section__lead-title,
  .front-section--compact .front-section__lead-title {
    font-size: 1.375rem;
  }
  .front-section__lead-excerpt {
    font-size: 0.9375rem;
  }
  .front-section__items {
    gap: 0;
  }
  .front-section__item,
  .front-section--compact .front-section__item {
    padding-block: var(--vh-space-12);
  }
  .front-section__item .entry-categories,
  .front-section__item .front-section__meta {
    display: none;
  }
  .front-section__item-title,
  .front-section--compact .front-section__item-title,
  .front-section--compact .front-section__item:first-child .front-section__item-title {
    font-family: var(--vh-font-heading);
    font-size: 1.0625rem;
    line-height: 1.32;
  }
}
@media (width <= 600px) {
  .front-featured-stories,
  .front-story-cards__items {
    grid-template-columns: 1fr;
  }
}
@media (525px <= width < 768px) {
  .front-lead-story {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }
  .front-lead-story__media {
    aspect-ratio: var(--vh-ratio-square);
    order: 0;
  }
  .front-featured-stories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .front-section--wide .front-section__layout,
  .front-section--compact .front-section__layout {
    grid-template-columns: minmax(0, 38%) minmax(0, 1fr);
  }
  .front-section--wide .front-section__lead,
  .front-section--compact .front-section__lead {
    display: contents;
  }
  .front-section--wide .front-section__lead-media,
  .front-section--compact .front-section__lead-media {
    grid-column: 1;
    grid-row: 1/span 2;
    align-self: start;
    aspect-ratio: var(--vh-ratio-square);
  }
  .front-section--wide .front-section__lead-content,
  .front-section--compact .front-section__lead-content {
    grid-column: 2;
    grid-row: 1;
  }
  .front-section--wide .front-section__items,
  .front-section--compact .front-section__items {
    grid-column: 2;
    grid-row: 2;
  }
  .front-section__lead-media img {
    height: 100%;
    aspect-ratio: auto;
  }
}
@media (width <= 524px) {
  .site-main--front,
  .front-page-body {
    gap: var(--vh-space-24);
  }
  .front-page-body__main,
  .front-section-pairs {
    gap: var(--vh-space-32);
  }
  .front-leading-label,
  .front-section-title {
    font-size: 0.875rem;
  }
  .front-lead-story__media img,
  .front-featured-story__media img,
  .front-section__lead-media img,
  .front-page-body__main .vh-story-card__media img {
    aspect-ratio: var(--vh-ratio-wide);
    object-fit: cover;
  }
  .site-main--front .front-sidebar .vh-popular-posts-module__items {
    grid-template-columns: 1fr;
  }
}
/* A címlapi Balaton–Bakony rovat különálló, világoszöld kiemelése. */
.front-section-pairs--featured-regions {
  gap: var(--vh-space-24);
  border-bottom: 0;
}

.front-section-pairs--featured-regions .front-section--featured-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: var(--vh-space-32);
  border-bottom: 0;
  background: var(--vh-color-module-header);
}

.front-section--featured-panel .front-section__layout,
.front-section--featured-panel .front-section__lead {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vh-space-16);
}

.front-section--featured-panel .front-section__lead-media,
.front-section--featured-panel .front-section__lead-content,
.front-section--featured-panel .front-section__items {
  grid-column: auto;
  grid-row: auto;
}

.front-section--featured-panel .front-section__lead-media {
  width: 100%;
  aspect-ratio: var(--vh-ratio-wide);
}

.front-section--featured-panel .front-section__lead-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.front-section--featured-panel .front-section__lead-title a,
.front-section--featured-panel .front-section__item-title a,
.front-section--featured-panel .front-section__lead-excerpt,
.front-section--featured-panel .front-section__meta {
  color: var(--vh-color-headline);
}

.front-section--featured-panel .front-section__link {
  align-self: end;
  color: var(--vh-color-primary-green-dark);
}

.front-section--featured-panel .front-section__lead-title a:hover,
.front-section--featured-panel .front-section__lead-title a:focus-visible,
.front-section--featured-panel .front-section__item-title a:hover,
.front-section--featured-panel .front-section__item-title a:focus-visible,
.front-section--featured-panel .front-section__link:hover,
.front-section--featured-panel .front-section__link:focus-visible {
  color: var(--vh-color-primary-green);
}

@media (width <= 900px) {
  .front-section-pairs--featured-regions {
    grid-template-columns: 1fr;
    gap: var(--vh-space-24);
  }
  .front-section-pairs--featured-regions .front-section--featured-panel {
    padding: var(--vh-space-24);
  }
}
@media (width <= 524px) {
  .front-section-pairs--featured-regions .front-section--featured-panel {
    padding: var(--vh-space-16);
  }
}
.site-main--single {
  padding-block: var(--vh-space-32) var(--vh-space-64);
}

.article-page {
  display: grid;
  grid-template-columns: minmax(0, var(--vh-main-column)) minmax(0, var(--vh-sidebar-column));
  gap: var(--vh-column-gap);
  width: 100%;
}

.article-page__main {
  min-width: 0;
  container-type: inline-size;
}

.article-page__sidebar {
  display: grid;
  align-content: start;
  gap: var(--vh-section-gap);
  min-width: 0;
}

.single-entry {
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.article-header,
.opinion-header {
  display: grid;
  gap: calc(var(--vh-space-16) + var(--vh-space-4));
  margin-block-end: var(--vh-space-24);
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vh-space-8);
  margin-block-end: var(--vh-space-8);
  color: #8a8a8a;
  font-family: var(--vh-font-body);
  font-size: 0.6875rem;
  line-height: 1.4;
}

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

.article-breadcrumb a:hover,
.article-breadcrumb a:focus-visible {
  color: var(--vh-color-primary-green);
}

.article-section-label {
  justify-self: start;
  color: var(--vh-color-primary-green);
  font-family: var(--vh-font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

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

.article-section-label:hover,
.article-section-label:focus-visible,
.article-section-label a:hover,
.article-section-label a:focus-visible {
  color: var(--vh-color-primary-green-dark);
}

.article-header__title {
  max-width: 760px;
  margin: 0;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-heading);
  font-size: clamp(2rem, 2.8vw, 2.625rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.28;
  text-decoration: none;
}

.article-header__taxonomy-row {
  display: flex;
  gap: var(--vh-space-12);
  align-items: center;
  min-width: 0;
}

.article-header__topic-divider {
  flex: 1 1 auto;
  min-width: var(--vh-space-24);
  border-block-start: 1px solid rgba(17, 17, 17, 0.14);
}

.article-header__taxonomy-row--topic-only {
  justify-content: flex-end;
}

.article-header__topic-tag {
  flex: 0 1 auto;
  max-width: min(18rem, 45%);
  color: rgba(17, 17, 17, 0.68);
  font-family: var(--vh-font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.3;
  text-align: right;
  text-decoration: none;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.article-header__topic-tag:hover,
.article-header__topic-tag:focus-visible {
  color: var(--vh-color-primary-green-dark);
}

.article-header__meta-row,
.opinion-header__meta-band {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vh-space-16) var(--vh-space-24);
  align-items: center;
  justify-content: space-between;
  padding-block-start: var(--vh-space-8);
}

.article-author-meta {
  min-width: 0;
  font-family: var(--vh-font-body);
}

.article-author-meta__body {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--vh-space-4) var(--vh-space-12);
  align-items: center;
  min-width: 0;
}

.article-author-meta__avatar-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.article-author-meta__text {
  display: grid;
  gap: var(--vh-space-4);
  min-width: 0;
}

.article-author-meta__identity {
  display: inline-flex;
  align-items: center;
  color: var(--vh-color-headline);
  text-decoration: none;
}

.article-author-meta__name {
  color: var(--vh-color-headline);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
}

.article-author-meta__identity:hover .article-author-meta__name,
.article-author-meta__identity:focus-visible .article-author-meta__name {
  color: var(--vh-color-primary-green);
}

.article-author-meta__details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vh-space-4) var(--vh-space-8);
  align-items: center;
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
  font-size: 0.8125rem;
  line-height: 1.3;
}

.article-author-meta__details > * + *::before {
  margin-inline-end: var(--vh-space-8);
  color: var(--vh-color-border);
  content: "•";
}

.article-author-meta__updated {
  color: #777777;
}

.article-tools {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vh-space-8);
  align-items: center;
  justify-content: flex-end;
  margin-inline-start: auto;
  font-family: var(--vh-font-body);
}

.article-tools__item {
  display: inline-grid;
  place-items: center;
  width: 36px;
  min-width: 36px;
  height: 36px;
  min-height: 36px;
  padding: 0;
  border: 1px solid rgba(116, 144, 31, 0.28);
  background: var(--vh-color-surface);
  color: var(--vh-color-primary-green);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: border-color var(--vh-transition), color var(--vh-transition);
}

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

.article-tools__item:hover,
.article-tools__item:focus-visible {
  border-color: var(--vh-color-primary-green);
  color: var(--vh-color-primary-green-dark);
}

.vh-icon {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.article-lead {
  max-width: 760px;
  margin: 0 0 var(--vh-space-24);
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  font-size: clamp(1.0625rem, 1vw, 1.1875rem);
  font-weight: 600;
  line-height: 1.5;
}

.article--culture .article-lead,
.article--opinion .article-lead {
  font-family: var(--vh-font-heading);
}

.article-featured-image {
  margin: 0 0 calc(var(--vh-space-32) + var(--vh-space-8));
}

.article-featured-image img {
  display: block;
  width: 100%;
  aspect-ratio: var(--vh-ratio-wide);
  height: auto;
  object-fit: cover;
}

.article-featured-image figcaption {
  margin-block-start: var(--vh-space-8);
  color: var(--vh-color-muted);
  font-family: var(--vh-font-heading);
  font-size: 0.8125rem;
  line-height: 1.4;
}

.single-entry .entry-content {
  max-width: 760px;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  font-size: 1.15625rem;
  line-height: 1.74;
}

.article--culture .entry-content,
.article--opinion .entry-content {
  font-family: var(--vh-font-heading);
}

.single-entry .entry-content > * {
  margin-block-start: 0;
  margin-block-end: var(--vh-space-24);
}

.single-entry .entry-content > p {
  margin-block-end: var(--vh-space-16);
}

.single-entry .entry-content ul {
  list-style-type: square;
}

.single-entry .entry-content ul li::marker {
  color: var(--vh-color-primary-green);
  font-size: 0.68em;
}

.single-entry .entry-content h2,
.single-entry .entry-content h3 {
  color: var(--vh-color-headline);
  font-family: var(--vh-font-heading);
  font-weight: 700;
  line-height: 1.18;
}

.single-entry .entry-content h2 {
  margin-block-start: var(--vh-space-40, 40px);
  font-size: 1.875rem;
}

.single-entry .entry-content h3 {
  margin-block-start: var(--vh-space-32);
  font-size: 1.4375rem;
}

.single-entry .entry-content a {
  color: var(--vh-color-primary-green);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.single-entry .entry-content blockquote,
.article-quote {
  position: relative;
  isolation: isolate;
  max-width: 560px;
  margin: var(--vh-space-16) 0;
  padding: var(--vh-space-8) 0 var(--vh-space-8) var(--vh-space-16);
  border-left: 2px solid var(--vh-color-primary-green);
  background: transparent;
  text-align: left;
}

.single-entry .entry-content blockquote::before,
.article-quote::before,
.article-quote blockquote::before,
.single-entry .entry-content .article-quote blockquote::before {
  content: none;
}

.single-entry .entry-content blockquote p,
.article-quote blockquote p {
  max-width: 540px;
  margin: 0;
  font-family: var(--vh-font-heading);
  font-size: 1.1875rem;
  font-style: italic;
  line-height: 1.45;
  text-align: left;
}

.single-entry .entry-content cite,
.article-quote figcaption {
  display: grid;
  gap: var(--vh-space-4);
  margin-block-start: var(--vh-space-12);
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  font-size: 0.875rem;
  font-style: normal;
  line-height: 1.35;
}

.article-quote .quote-author,
.article-quote figcaption strong {
  display: block;
  font-weight: 700;
}

.article-quote .quote-role {
  display: block;
  color: var(--vh-color-muted);
}

.article-quote blockquote,
.single-entry .entry-content .article-quote blockquote {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.article-quote figcaption {
  position: relative;
  z-index: 1;
}

.article-quote--subtle,
.single-entry .entry-content .is-style-vh-subtle-quote {
  max-width: 560px;
  margin-block: var(--vh-space-16);
  padding: var(--vh-space-8) 0 var(--vh-space-8) var(--vh-space-16);
  background: transparent;
}

.article-quote--subtle p,
.article-quote--subtle blockquote p,
.single-entry .entry-content .is-style-vh-subtle-quote p {
  max-width: 540px;
  font-size: 1.1875rem;
  line-height: 1.45;
}

.article-quote--featured,
.single-entry .entry-content .is-style-vh-featured-quote,
.single-entry .entry-content .wp-block-pullquote {
  max-width: 720px;
  margin-block: var(--vh-space-32);
  padding: var(--vh-quote-padding) var(--vh-quote-padding) calc(var(--vh-space-32) + var(--vh-space-8)) calc(var(--vh-space-64) + var(--vh-space-20, 20px));
  border-left: 2px solid var(--vh-quote-border);
  background: var(--vh-quote-bg);
  text-align: left;
}

.article-quote--featured::before,
.single-entry .entry-content .is-style-vh-featured-quote::before,
.single-entry .entry-content .wp-block-pullquote::before {
  position: absolute;
  top: calc(var(--vh-space-32) - 66px);
  left: var(--vh-space-16);
  z-index: 0;
  color: var(--vh-quote-mark-color);
  content: "„";
  font-family: var(--vh-font-heading);
  font-size: var(--vh-quote-mark-size);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.article-quote--featured p,
.article-quote--featured blockquote p,
.single-entry .entry-content .is-style-vh-featured-quote p,
.single-entry .entry-content .wp-block-pullquote p {
  max-width: 620px;
  font-size: clamp(1.25rem, 1.55vw, 1.5rem);
  line-height: 1.28;
}

.single-entry .entry-content .is-style-vh-featured-quote cite,
.single-entry .entry-content .wp-block-pullquote cite {
  display: grid;
  gap: var(--vh-space-4);
  margin-block-start: var(--vh-space-16);
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.single-entry .entry-content blockquote.wp-block-quote.is-style-vh-featured-quote,
.single-entry .entry-content blockquote.is-style-vh-featured-quote,
.single-entry .entry-content blockquote.article-quote--featured,
.single-entry .entry-content .wp-block-pullquote {
  position: relative;
  isolation: isolate;
  max-width: 720px;
  margin-block: var(--vh-space-32);
  padding: var(--vh-quote-padding) var(--vh-quote-padding) calc(var(--vh-space-32) + var(--vh-space-8)) calc(var(--vh-space-64) + var(--vh-space-20, 20px));
  border-left: 2px solid var(--vh-quote-border);
  background: var(--vh-quote-bg);
  text-align: left;
}

.single-entry .entry-content blockquote.wp-block-quote.is-style-vh-featured-quote::before,
.single-entry .entry-content blockquote.is-style-vh-featured-quote::before,
.single-entry .entry-content blockquote.article-quote--featured::before,
.single-entry .entry-content .wp-block-pullquote::before {
  position: absolute;
  top: calc(var(--vh-space-32) - 66px);
  left: var(--vh-space-16);
  z-index: 0;
  color: var(--vh-quote-mark-color);
  content: "„";
  font-family: var(--vh-font-heading);
  font-size: var(--vh-quote-mark-size);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.single-entry .entry-content blockquote.wp-block-quote.is-style-vh-featured-quote p,
.single-entry .entry-content blockquote.is-style-vh-featured-quote p,
.single-entry .entry-content blockquote.article-quote--featured p,
.single-entry .entry-content .wp-block-pullquote p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  font-size: clamp(1.25rem, 1.55vw, 1.5rem);
  line-height: 1.28;
}

.single-entry .entry-content blockquote.wp-block-quote.is-style-vh-featured-quote cite,
.single-entry .entry-content blockquote.is-style-vh-featured-quote cite,
.single-entry .entry-content blockquote.article-quote--featured cite,
.single-entry .entry-content .wp-block-pullquote cite {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--vh-space-4);
  margin-block-start: var(--vh-space-16);
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.single-entry .entry-content .wp-block-pullquote blockquote {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.single-entry .entry-content .wp-block-pullquote {
  margin-block: var(--vh-space-32) !important;
  padding: var(--vh-quote-padding) var(--vh-quote-padding) calc(var(--vh-space-32) + var(--vh-space-8)) calc(var(--vh-space-64) + var(--vh-space-20, 20px)) !important;
}

.vh-info-box {
  width: auto;
  max-width: none;
  margin: var(--vh-space-32) 0 var(--vh-space-32) max(12.5%, (100% - 540px) / 2);
  border: 1px solid rgba(116, 144, 31, 0.26);
  border-radius: 6px;
  background: var(--vh-quote-bg);
  box-shadow: none;
  font-family: inherit;
}

.vh-info-box__inner {
  padding: var(--vh-space-24);
}

.vh-info-box__header {
  margin-block-end: var(--vh-space-16);
  padding-block-end: var(--vh-space-12);
  border-bottom: 1px solid rgba(116, 144, 31, 0.26);
}

.vh-info-box__title {
  margin: 0;
  color: var(--vh-color-primary-green);
  font-family: var(--vh-font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.vh-info-box__content {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.6;
}

.vh-info-box__content > :first-child {
  margin-block-start: 0;
}

.vh-info-box__content > :last-child {
  margin-block-end: 0;
}

.vh-info-box__content h2,
.vh-info-box__content h3,
.vh-info-box__content h4 {
  margin-block: var(--vh-space-16) var(--vh-space-8);
  font-family: var(--vh-font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.vh-info-box__content ul,
.vh-info-box__content ol {
  margin-block: 0 var(--vh-space-16);
  padding-inline-start: 1.35em;
}

.single-entry .entry-content table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--vh-font-body);
  font-size: 0.9375rem;
  line-height: 1.45;
}

.single-entry .entry-content th,
.single-entry .entry-content td {
  padding: var(--vh-space-12);
  border: 1px solid var(--vh-color-border);
  text-align: left;
  vertical-align: top;
}

.single-entry .entry-content th {
  background: var(--vh-color-primary-green-light);
  color: var(--vh-color-primary-green);
  font-weight: 700;
}

.single-entry .entry-content .wp-block-table {
  overflow-x: auto;
}

.single-entry .entry-content .wp-block-table figcaption,
.single-entry .entry-content figcaption {
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
  font-size: 0.8125rem;
  line-height: 1.4;
}

.article-terms {
  display: grid;
  gap: var(--vh-space-24);
  max-width: 760px;
  margin-block: var(--vh-space-40, 40px) var(--vh-space-16);
  font-family: var(--vh-font-body);
}

.article-terms__group {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--vh-space-12);
  row-gap: var(--vh-space-8);
  align-items: flex-start;
}

.article-terms__group--locations {
  margin-block-end: var(--vh-space-16);
}

.article-terms__label {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 30px;
  color: var(--vh-color-headline);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-terms__items {
  display: flex;
  flex: 1 1 0;
  flex-wrap: wrap;
  gap: var(--vh-space-8);
  min-width: 0;
}

.article-terms__item {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: var(--vh-space-4) var(--vh-space-12);
  border: 1px solid rgba(116, 144, 31, 0.28);
  background: var(--vh-color-background);
  color: var(--vh-color-headline);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.article-terms__item:hover,
.article-terms__item:focus-visible {
  border-color: var(--vh-color-primary-green);
  background: var(--vh-color-primary-green);
  color: var(--vh-color-surface);
}

.article-author-box,
.article-author-more {
  max-width: 760px;
  margin-block-start: var(--vh-space-48);
}

.article-post-navigation {
  width: 100%;
  margin-block-start: var(--vh-space-64);
}

.article-author-more {
  margin-block-start: var(--vh-space-32);
}

.article-author-box {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: var(--vh-space-24);
  align-items: center;
  padding: var(--vh-space-24);
  border: 1px solid rgba(17, 17, 17, 0.09);
  background: var(--vh-color-surface);
  font-family: var(--vh-font-body);
}

.article-author-box__name {
  margin: 0 0 var(--vh-space-8);
  font-family: var(--vh-font-body);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
}

.article-author-box__name a {
  color: var(--vh-color-headline);
  text-decoration: none;
}

.article-author-box__name a:hover,
.article-author-box__name a:focus-visible {
  color: var(--vh-color-primary-green);
}

.article-author-box p {
  margin: 0;
  color: var(--vh-color-headline);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.article-section-title {
  margin: 0 0 var(--vh-space-16);
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-related-section {
  margin-block: var(--vh-space-48);
  padding: var(--vh-space-24);
  border-top: 1px solid var(--vh-color-border);
  background: var(--vh-color-module-header);
}

.article-related-section .article-section-title {
  color: var(--vh-color-primary-green);
}

.article-related-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--vh-space-16);
}

.article-related-card {
  min-width: 0;
}

.article-related-card__link {
  display: grid;
  grid-template-columns: 125px minmax(0, 1fr);
  gap: var(--vh-space-12);
  align-items: start;
  height: 100%;
  color: var(--vh-color-headline);
  text-decoration: none;
}

.article-related-card__link:not(:has(.article-related-card__media)) {
  grid-template-columns: minmax(0, 1fr);
}

.article-related-card__link:hover .article-related-card__title,
.article-related-card__link:focus-visible .article-related-card__title {
  color: var(--vh-color-primary-green);
}

.article-related-card__media {
  display: block;
  width: 125px;
  background: var(--vh-color-light-gray);
}

.article-related-card__image {
  display: block;
  width: 100%;
  aspect-ratio: var(--vh-ratio-square);
  height: auto;
  object-fit: cover;
}

.article-related-card__body {
  display: grid;
  align-content: start;
  gap: var(--vh-space-8);
}

.article-related-card__title {
  display: -webkit-box;
  overflow: hidden;
  font-family: var(--vh-font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.article-related-card__date {
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
  font-size: 0.8125rem;
  line-height: 1.3;
}

.article-author-more__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--vh-space-24);
}

.article-author-more__item {
  display: grid;
  gap: var(--vh-space-8);
  align-content: start;
  padding-block-start: var(--vh-space-16);
  border-top: 1px solid var(--vh-color-border);
}

.article-author-more__media {
  display: block;
  background: var(--vh-color-light-gray);
}

.article-author-more__media img {
  display: block;
  width: 100%;
  aspect-ratio: var(--vh-ratio-wide);
  height: auto;
  object-fit: cover;
}

.article-author-more__title {
  margin: 0;
  font-family: var(--vh-font-heading);
  font-size: 1rem;
  line-height: 1.18;
}

.article-author-more__title a {
  color: var(--vh-color-headline);
  text-decoration: none;
}

.article-author-more__title a:hover,
.article-author-more__title a:focus-visible {
  color: var(--vh-color-primary-green);
}

.article-author-more__date {
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
  font-size: 0.75rem;
}

.article-sidebar-related {
  padding-block: var(--vh-space-24);
  border-top: 1px solid var(--vh-color-border);
}

.article-sidebar-related__items {
  display: grid;
  gap: var(--vh-space-16);
}

.article-sidebar-related__item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: var(--vh-space-12);
  align-items: start;
}

.article-sidebar-related__item:not(:has(.article-sidebar-related__media)) {
  grid-template-columns: minmax(0, 1fr);
}

.article-sidebar-related__item + .article-sidebar-related__item {
  padding-block-start: var(--vh-space-16);
  border-top: 1px solid var(--vh-color-border);
}

.article-sidebar-related__media {
  display: block;
  background: var(--vh-color-light-gray);
}

.article-sidebar-related__media img {
  display: block;
  width: 72px;
  aspect-ratio: var(--vh-ratio-square);
  height: auto;
  object-fit: cover;
}

.article-sidebar-related__body {
  display: grid;
  gap: var(--vh-space-8);
}

.article-sidebar-title {
  margin: 0 0 var(--vh-space-16);
  color: var(--vh-color-primary-green);
  font-family: var(--vh-font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.article-sidebar-related__title {
  margin: 0;
  font-family: var(--vh-font-heading);
  font-size: 1rem;
  line-height: 1.18;
}

.article-sidebar-related__title a {
  color: var(--vh-color-headline);
  text-decoration: none;
}

.article-sidebar-related__title a:hover,
.article-sidebar-related__title a:focus-visible {
  color: var(--vh-color-primary-green);
}

.article-sidebar-related__date {
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
  font-size: 0.75rem;
  line-height: 1.3;
}

.article-post-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--vh-space-24);
  align-items: start;
  padding-block: var(--vh-space-32);
  border-top: 1px solid var(--vh-color-border);
}

.article-post-navigation__link {
  display: flex;
  gap: var(--vh-space-16);
  align-items: center;
  min-height: 0;
  padding-block: 0;
  color: var(--vh-color-headline);
  text-decoration: none;
}

.article-post-navigation__link > span {
  min-width: 0;
}

.article-post-navigation .vh-icon {
  width: 22px;
  height: 22px;
  stroke-width: 1.7;
}

.article-post-navigation__link--next {
  grid-column: 2;
  justify-content: end;
  text-align: right;
}

.article-post-navigation__label {
  display: block;
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
}

.article-post-navigation__title {
  display: -webkit-box;
  overflow: hidden;
  margin-block-start: var(--vh-space-8);
  color: rgba(17, 17, 17, 0.7);
  font-family: var(--vh-font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.36;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.article-post-navigation__link:hover .article-post-navigation__title,
.article-post-navigation__link:focus-visible .article-post-navigation__title {
  color: var(--vh-color-primary-green);
}

@media (width > 1024px) {
  .article-breadcrumb {
    font-size: 0.75rem;
  }
  .article-section-label {
    font-size: 0.875rem;
  }
  .article-header__title,
  .article-lead {
    max-width: 800px;
  }
  .article-header__title {
    font-size: clamp(2.125rem, 2.9vw, 2.75rem);
  }
  .article-author-meta__name {
    font-size: 0.9375rem;
  }
  .article-author-meta__details {
    font-size: 0.875rem;
  }
  .article-lead {
    font-size: clamp(1.1875rem, 1.1vw, 1.3125rem);
  }
  .single-entry .entry-content {
    max-width: 800px;
    font-size: 1.25rem;
    line-height: 1.7;
  }
  .single-entry .entry-content h2 {
    font-size: 2rem;
  }
  .single-entry .entry-content h3 {
    font-size: 1.5625rem;
  }
  .single-entry .entry-content blockquote p,
  .article-quote blockquote p,
  .article-quote--subtle p,
  .article-quote--subtle blockquote p,
  .single-entry .entry-content .is-style-vh-subtle-quote p {
    font-size: 1.3125rem;
  }
  .single-entry .entry-content cite,
  .article-quote figcaption {
    font-size: 0.9375rem;
  }
  .article-quote--featured p,
  .article-quote--featured blockquote p,
  .single-entry .entry-content .is-style-vh-featured-quote p,
  .single-entry .entry-content blockquote.wp-block-quote.is-style-vh-featured-quote p,
  .single-entry .entry-content blockquote.is-style-vh-featured-quote p,
  .single-entry .entry-content blockquote.article-quote--featured p,
  .single-entry .entry-content .wp-block-pullquote p {
    font-size: clamp(1.375rem, 1.65vw, 1.625rem);
  }
  .single-entry .entry-content .is-style-vh-featured-quote cite,
  .single-entry .entry-content blockquote.wp-block-quote.is-style-vh-featured-quote cite,
  .single-entry .entry-content blockquote.is-style-vh-featured-quote cite,
  .single-entry .entry-content blockquote.article-quote--featured cite,
  .single-entry .entry-content .wp-block-pullquote cite {
    font-size: 0.8125rem;
  }
  .vh-info-box {
    margin-inline: 0;
  }
  .vh-info-box__title {
    font-size: 1rem;
  }
  .vh-info-box__content,
  .vh-info-box__content h2,
  .vh-info-box__content h3,
  .vh-info-box__content h4 {
    font-size: 1.0625rem;
  }
  .single-entry .entry-content table {
    font-size: 1rem;
  }
  .single-entry .entry-content .wp-block-table figcaption,
  .single-entry .entry-content figcaption,
  .article-featured-image figcaption {
    font-size: 0.875rem;
  }
  .article-sidebar-related__title {
    font-size: 1.0625rem;
  }
  .article-sidebar-related__date {
    font-size: 0.8125rem;
  }
}
@media (width <= 900px) {
  .site-main--single {
    padding-block-start: var(--vh-space-20, 20px);
  }
}
@media (768px <= width <= 1024px) {
  .article-page {
    grid-template-columns: minmax(0, 2.7fr) minmax(220px, 1fr);
    gap: var(--vh-space-24);
  }
  .article-sidebar {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (width < 768px) {
  .article-page {
    grid-template-columns: 1fr;
  }
  .article-page__sidebar {
    max-width: 760px;
  }
}
@media (width <= 720px) {
  .site-main--single {
    padding-block-start: var(--vh-space-20, 20px);
  }
  .article-page {
    width: 100%;
  }
  .article-header__title {
    font-size: clamp(1.75rem, 8vw, 2.125rem);
  }
  .article-header__topic-tag {
    max-width: 50%;
    font-size: 0.75rem;
  }
  .article-header,
  .opinion-header {
    gap: var(--vh-space-16);
    margin-block-end: var(--vh-space-24);
  }
  .article-header__meta-row,
  .opinion-header__meta-band,
  .article-tools {
    align-items: flex-start;
  }
  .article-tools {
    flex-basis: 100%;
    justify-content: flex-start;
    margin-inline-start: 0;
  }
  .single-entry .entry-content {
    font-size: 1.0625rem;
  }
  .article-quote--featured,
  .single-entry .entry-content .is-style-vh-featured-quote,
  .single-entry .entry-content blockquote.wp-block-quote.is-style-vh-featured-quote,
  .single-entry .entry-content blockquote.is-style-vh-featured-quote,
  .single-entry .entry-content blockquote.article-quote--featured,
  .single-entry .entry-content .wp-block-pullquote {
    margin-block: var(--vh-space-24);
    padding: var(--vh-space-32) var(--vh-space-24) var(--vh-space-32) calc(var(--vh-space-48) + var(--vh-space-8));
  }
  .single-entry .entry-content .wp-block-pullquote {
    margin-block: var(--vh-space-24) !important;
    padding: var(--vh-space-32) var(--vh-space-24) var(--vh-space-32) calc(var(--vh-space-48) + var(--vh-space-8)) !important;
  }
  .vh-info-box {
    margin-inline-start: 0;
    max-width: none;
  }
  .vh-info-box__inner {
    padding: var(--vh-space-16);
  }
  .article-quote--featured::before,
  .single-entry .entry-content .is-style-vh-featured-quote::before,
  .single-entry .entry-content blockquote.wp-block-quote.is-style-vh-featured-quote::before,
  .single-entry .entry-content blockquote.is-style-vh-featured-quote::before,
  .single-entry .entry-content blockquote.article-quote--featured::before,
  .single-entry .entry-content .wp-block-pullquote::before {
    top: calc(var(--vh-space-24) - 30px);
    left: var(--vh-space-16);
    font-size: calc(var(--vh-quote-mark-size) * 0.76);
  }
  .article-author-more__grid,
  .article-related-section__grid,
  .article-post-navigation {
    grid-template-columns: 1fr;
  }
  .article-post-navigation {
    padding-block: var(--vh-space-24);
  }
  .article-post-navigation__link {
    gap: var(--vh-space-12);
  }
  .article-post-navigation .vh-icon {
    width: 20px;
    height: 20px;
  }
  .article-post-navigation__label {
    font-size: 12px;
  }
  .article-post-navigation__link--next {
    grid-column: 1;
    justify-content: start;
    text-align: left;
  }
  .article-author-box {
    grid-template-columns: 1fr;
  }
}
.opinion-header__label {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vh-space-8);
  align-items: center;
}

.opinion-header__title {
  max-width: 760px;
  margin: 0;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-heading);
  font-size: clamp(2rem, 2.8vw, 2.625rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.28;
  text-decoration: none;
}

.opinion-hero-media {
  margin: 0 0 calc(var(--vh-space-32) + var(--vh-space-8));
}

.opinion-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: var(--vh-ratio-wide);
  height: auto;
  object-fit: cover;
}

.opinion-hero-media figcaption {
  margin-block-start: var(--vh-space-8);
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
  font-size: 0.8125rem;
  line-height: 1.4;
}

.opinion-entry__content {
  max-width: 700px;
  font-size: clamp(1.21875rem, 1.5vw, 1.375rem);
  line-height: 1.76;
}

.opinion-entry__content > p {
  margin-block-end: var(--vh-space-24);
}

.opinion-entry__content h2,
.opinion-entry__content h3 {
  font-family: var(--vh-font-heading);
  line-height: 1.12;
}

.opinion-sidebar-module,
.opinion-week-sentence {
  padding-block: var(--vh-space-24);
  border-top: 1px solid var(--vh-color-border);
}

.opinion-sidebar-module:first-child,
.opinion-week-sentence:first-child {
  padding-block-start: 0;
  border-top: 0;
}

.opinion-sidebar-module__title {
  margin: 0 0 var(--vh-space-16);
  color: var(--vh-color-primary-green);
  font-family: var(--vh-font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.opinion-sidebar-list {
  display: grid;
  gap: var(--vh-space-16);
}

.opinion-sidebar-list__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--vh-space-8);
}

.opinion-sidebar-list__item + .opinion-sidebar-list__item {
  padding-block-start: var(--vh-space-16);
  border-top: 1px solid var(--vh-color-border);
}

.opinion-sidebar-list__media {
  display: block;
  width: 80px;
  background: var(--vh-color-light-gray);
}

.opinion-sidebar-list__media img {
  display: block;
  width: 80px;
  aspect-ratio: var(--vh-ratio-square);
  height: auto;
  object-fit: cover;
}

.opinion-sidebar-list__item:has(.opinion-sidebar-list__media) {
  grid-template-columns: 80px minmax(0, 1fr);
  gap: var(--vh-space-12);
  align-items: start;
}

.opinion-sidebar-list__date,
.opinion-sidebar-list__author {
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
  font-size: 0.75rem;
  line-height: 1.3;
}

.opinion-sidebar-list__title {
  margin: 0;
  font-family: var(--vh-font-heading);
  font-size: 1.0625rem;
  line-height: 1.18;
}

.opinion-sidebar-list__title a {
  color: var(--vh-color-headline);
  text-decoration: none;
}

.opinion-sidebar-list__title a:hover,
.opinion-sidebar-list__title a:focus-visible {
  color: var(--vh-color-primary-green);
}

.opinion-week-sentence {
  position: relative;
  overflow: hidden;
  padding: var(--vh-space-24);
  border-left: 2px solid var(--vh-quote-border);
  background: var(--vh-quote-bg);
}

.opinion-week-sentence__link {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--vh-space-12);
  padding-inline-start: calc(var(--vh-space-48) + var(--vh-space-16));
  color: var(--vh-color-headline);
  text-decoration: none;
}

.opinion-week-sentence__link:hover .opinion-week-sentence__quote,
.opinion-week-sentence__link:focus-visible .opinion-week-sentence__quote {
  color: var(--vh-color-primary-green);
}

.opinion-week-sentence__quote {
  margin: 0;
  font-family: var(--vh-font-heading);
  font-size: clamp(1.0625rem, 1.45vw, 1.25rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.34;
  transition: color var(--vh-transition);
}

.opinion-week-sentence__source {
  font-family: var(--vh-font-body);
  font-size: 0.8125rem;
  line-height: 1.3;
}

@media (width <= 720px) {
  .opinion-header__title {
    font-size: clamp(1.875rem, 8vw, 2.25rem);
  }
  .opinion-entry__content {
    font-size: 1.125rem;
    line-height: 1.7;
  }
  .opinion-week-sentence__link {
    padding-inline-start: calc(var(--vh-space-48) + var(--vh-space-8));
  }
}
.site-main--author {
  padding-block: var(--vh-space-32) var(--vh-space-64);
}

.author-page {
  display: grid;
  grid-template-columns: minmax(0, var(--vh-main-column)) minmax(0, var(--vh-sidebar-column));
  gap: var(--vh-column-gap);
  width: 100%;
}

.author-page__main {
  min-width: 0;
}

.author-page__sidebar {
  display: grid;
  align-content: start;
  gap: var(--vh-section-gap);
  min-width: 0;
}

.author-profile {
  display: grid;
  gap: var(--vh-space-16);
  margin-block-end: var(--vh-space-48);
  padding-block-end: var(--vh-space-32);
  border-bottom: 1px solid var(--vh-color-border);
}

.author-profile__breadcrumb {
  margin-block-end: 0;
}

.author-profile__name {
  max-width: 760px;
  margin: 0;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-heading);
  font-size: clamp(2rem, 3vw, 2.875rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.14;
}

.author-profile__role {
  margin: 0;
  color: var(--vh-color-primary-green);
  font-family: var(--vh-font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.35;
}

.author-profile__accent {
  width: 56px;
  height: 2px;
  background: var(--vh-color-primary-green);
}

.author-profile__body {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  gap: var(--vh-space-32);
  align-items: start;
  margin-block-start: var(--vh-space-8);
}

.author-profile__portrait {
  display: flex;
  align-items: flex-start;
}

.author-profile__content {
  display: grid;
  gap: var(--vh-space-24);
  max-width: 620px;
  font-family: var(--vh-font-body);
}

.author-profile__bio {
  color: var(--vh-color-headline);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.author-profile__bio p {
  margin: 0 0 var(--vh-space-16);
}

.author-profile__bio > :last-child {
  margin-block-end: 0;
}

.author-profile__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vh-space-12) var(--vh-space-24);
  align-items: center;
  padding-block-start: var(--vh-space-8);
  border-top: 1px solid var(--vh-color-border);
}

.author-profile__contact {
  display: inline-flex;
  gap: var(--vh-space-8);
  align-items: center;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
}

.author-profile__contact:hover,
.author-profile__contact:focus-visible {
  color: var(--vh-color-primary-green);
}

.author-profile__contact-icon {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.author-posts {
  display: grid;
  gap: var(--vh-space-24);
}

.author-posts__title {
  margin: 0;
  padding-block-end: var(--vh-space-12);
  border-bottom: 2px solid var(--vh-color-primary-green);
  color: var(--vh-color-primary-green);
  font-family: var(--vh-font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.author-posts__list {
  display: grid;
  border-top: 1px solid var(--vh-color-border);
}

.author-post-item {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: var(--vh-space-24);
  padding-block: var(--vh-space-24);
  border-bottom: 1px solid var(--vh-color-border);
}

.author-post-item__media {
  display: block;
  background: var(--vh-color-light-gray);
}

.author-post-item__media img,
.author-post-item__media-fallback {
  display: block;
  width: 100%;
  aspect-ratio: var(--vh-ratio-wide);
  height: auto;
  object-fit: cover;
}

.author-post-item__media-fallback {
  background: linear-gradient(135deg, var(--vh-color-light-gray), #eeeeee);
}

.author-post-item__content {
  display: grid;
  gap: var(--vh-space-8);
  align-content: start;
}

.author-post-item__title {
  max-width: 560px;
  margin: 0;
  font-family: var(--vh-font-heading);
  font-size: clamp(1.35rem, 1.9vw, 1.75rem);
  font-weight: 700;
  line-height: 1.16;
}

.author-post-item__title a {
  color: var(--vh-color-headline);
  text-decoration: none;
}

.author-post-item__title a:hover,
.author-post-item__title a:focus-visible {
  color: var(--vh-color-primary-green);
}

.author-post-item__excerpt {
  max-width: 560px;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  font-size: 0.9375rem;
  line-height: 1.45;
}

.author-post-item__excerpt p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.author-post-item__meta {
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
  font-size: 0.8125rem;
  line-height: 1.3;
}

@media (width <= 1024px) {
  .author-page {
    grid-template-columns: 1fr;
  }
  .author-page__sidebar {
    max-width: 760px;
  }
}
@media (width <= 720px) {
  .site-main--author {
    padding-block-start: var(--vh-space-24);
  }
  .author-profile__name {
    font-size: clamp(1.875rem, 9vw, 2.375rem);
  }
  .author-profile__body,
  .author-post-item {
    grid-template-columns: 1fr;
  }
  .author-profile__portrait {
    max-width: 220px;
  }
  .author-post-item__media {
    max-width: 100%;
  }
}
.site-main--search {
  padding-block: var(--vh-space-32) var(--vh-space-64);
}

.search-page {
  display: grid;
  grid-template-columns: minmax(0, var(--vh-main-column)) minmax(0, var(--vh-sidebar-column));
  gap: var(--vh-column-gap);
  width: 100%;
}

.search-page__content,
.search-page__sidebar {
  min-width: 0;
}

.search-page__sidebar {
  display: grid;
  align-content: start;
  gap: var(--vh-section-gap);
}

.search-header {
  display: grid;
  gap: var(--vh-space-20, 20px);
  margin-block-end: var(--vh-space-32);
  padding-block-end: var(--vh-space-24);
  border-bottom: 1px solid var(--vh-color-border);
}

.search-header__breadcrumb {
  margin-block-end: 0;
}

.search-header__title {
  max-width: 760px;
  margin: 0;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-heading);
  font-size: clamp(2rem, 3vw, 2.875rem);
  font-weight: 700;
  line-height: 1.14;
}

.search-header__summary {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vh-space-8) var(--vh-space-24);
  align-items: center;
  justify-content: space-between;
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
  font-size: 0.9375rem;
  line-height: 1.4;
}

.search-header__summary p {
  margin: 0;
  color: var(--vh-color-headline);
  font-weight: 600;
}

.vh-search-form {
  position: relative;
  display: grid;
  gap: var(--vh-space-8);
  max-width: 760px;
}

.vh-search-form__control {
  display: flex;
  min-height: 56px;
  border: 1px solid var(--vh-color-border);
  background: var(--vh-color-surface);
}

.vh-search-form:focus-within .vh-search-form__control {
  border-color: var(--vh-color-primary-green);
}

.vh-search-form__field {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  font-size: 1.0625rem;
  line-height: 1.3;
  padding-inline: var(--vh-space-16);
}

.vh-search-form__field:focus {
  outline: 0;
}

.vh-search-form__submit {
  display: inline-grid;
  place-items: center;
  width: 64px;
  border: 0;
  background: var(--vh-color-primary-green);
  color: var(--vh-color-surface);
  cursor: pointer;
  transition: background-color var(--vh-transition);
}

.vh-search-form__submit:hover,
.vh-search-form__submit:focus-visible {
  background: var(--vh-color-primary-green-dark);
}

.vh-search-form__icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.vh-search-suggestions {
  position: absolute;
  inset-block-start: calc(100% + var(--vh-space-8));
  inset-inline: 0;
  z-index: 20;
  display: grid;
  gap: var(--vh-space-16);
  max-height: 420px;
  overflow-y: auto;
  padding: var(--vh-space-16);
  border: 1px solid var(--vh-color-border);
  background: var(--vh-color-surface);
  box-shadow: none;
}

.vh-search-suggestions[hidden] {
  display: none;
}

.vh-search-suggestions__group {
  display: grid;
  gap: var(--vh-space-8);
}

.vh-search-suggestions__group h3 {
  margin: 0;
  color: var(--vh-color-primary-green);
  font-family: var(--vh-font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.vh-search-suggestions__item {
  display: grid;
  gap: var(--vh-space-4);
  padding: var(--vh-space-8);
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  text-decoration: none;
}

.vh-search-suggestions__item em {
  color: var(--vh-color-muted);
  font-size: 0.75rem;
  font-style: normal;
}

.vh-search-suggestions__item:hover,
.vh-search-suggestions__item:focus-visible,
.vh-search-suggestions__item.is-active {
  background: var(--vh-color-primary-green-light);
  color: var(--vh-color-primary-green-dark);
}

.vh-search-suggestions__status {
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
  font-size: 0.875rem;
}

.search-page__body {
  display: grid;
  grid-template-columns: minmax(210px, 240px) minmax(0, 1fr);
  gap: var(--vh-space-32);
  align-items: start;
}

.search-filters {
  display: grid;
  gap: var(--vh-space-24);
  padding-block: var(--vh-space-24);
  border-block: 1px solid var(--vh-color-border);
  font-family: var(--vh-font-body);
}

.search-filters__title,
.search-filters__group legend,
.search-popular__title {
  color: var(--vh-color-primary-green);
  font-family: var(--vh-font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.search-filters__title {
  margin: 0;
}

.search-filters__group {
  display: grid;
  gap: var(--vh-space-10, 10px);
  margin: 0;
  padding: 0;
  border: 0;
}

.search-filters__group legend {
  margin-block-end: var(--vh-space-8);
  padding: 0;
}

.search-filters__option {
  display: flex;
  gap: var(--vh-space-8);
  align-items: center;
  color: var(--vh-color-headline);
  font-size: 0.9375rem;
  line-height: 1.3;
}

.search-filters__option input {
  accent-color: var(--vh-color-primary-green);
}

.search-filters__dates {
  display: grid;
  gap: var(--vh-space-8);
  padding-block-start: var(--vh-space-8);
}

.search-filters__dates label {
  display: grid;
  gap: var(--vh-space-4);
  color: var(--vh-color-muted);
  font-size: 0.8125rem;
}

.search-filters__dates input {
  min-height: 36px;
  padding: var(--vh-space-4) var(--vh-space-8);
  border: 1px solid var(--vh-color-border);
  background: var(--vh-color-surface);
  color: var(--vh-color-headline);
  font: inherit;
}

.search-filters__submit {
  justify-self: start;
  min-height: 40px;
  padding-inline: var(--vh-space-24);
  border: 1px solid var(--vh-color-primary-green);
  background: var(--vh-color-primary-green);
  color: var(--vh-color-surface);
  font-weight: 700;
  cursor: pointer;
}

.search-results {
  display: grid;
  gap: var(--vh-space-24);
  min-width: 0;
}

.search-popular {
  display: grid;
  gap: var(--vh-space-12);
  padding-block-end: var(--vh-space-16);
  border-bottom: 1px solid var(--vh-color-border);
}

.search-popular__title {
  margin: 0;
}

.search-popular__items {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vh-space-8);
}

.search-popular__link {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding-inline: var(--vh-space-12);
  border: 1px solid rgba(116, 144, 31, 0.26);
  background: var(--vh-color-primary-green-light);
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
}

.search-popular__link:hover,
.search-popular__link:focus-visible {
  background: var(--vh-color-primary-green);
  color: var(--vh-color-surface);
}

.search-results__list {
  display: grid;
  border-top: 1px solid var(--vh-color-border);
}

.search-result-item {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: var(--vh-space-24);
  padding-block: var(--vh-space-24);
  border-bottom: 1px solid var(--vh-color-border);
}

.search-result-item__media {
  display: block;
  background: var(--vh-color-light-gray);
}

.search-result-item__media img,
.search-result-item__media-fallback {
  display: block;
  width: 100%;
  aspect-ratio: var(--vh-ratio-wide);
  height: auto;
  object-fit: cover;
}

.search-result-item__media-fallback {
  background: linear-gradient(135deg, var(--vh-color-light-gray), #eeeeee);
}

.search-result-item__content {
  display: grid;
  gap: var(--vh-space-8);
  align-content: start;
}

.search-result-item__title {
  margin: 0;
  font-family: var(--vh-font-heading);
  font-size: clamp(1.25rem, 1.75vw, 1.625rem);
  font-weight: 700;
  line-height: 1.18;
}

.search-result-item__title a {
  display: -webkit-box;
  overflow: hidden;
  color: var(--vh-color-headline);
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.search-result-item__title a:hover,
.search-result-item__title a:focus-visible {
  color: var(--vh-color-primary-green);
}

.search-result-item__excerpt {
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  font-size: 0.9375rem;
  line-height: 1.45;
}

.search-result-item__excerpt p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.search-result-item__meta {
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
  font-size: 0.8125rem;
  line-height: 1.3;
}

.search-highlight {
  padding-inline: 0.12em;
  background: var(--vh-color-primary-green-light);
  color: var(--vh-color-headline);
}

.search-empty-state {
  display: grid;
  gap: var(--vh-space-12);
  padding-block: var(--vh-space-24);
  border-block: 1px solid var(--vh-color-border);
}

.search-empty-state h2 {
  margin: 0;
  font-family: var(--vh-font-heading);
  font-size: 1.5rem;
  line-height: 1.2;
}

.search-empty-state p {
  max-width: 560px;
  margin: 0;
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
  line-height: 1.5;
}

.search-empty-state__reset {
  justify-self: start;
  color: var(--vh-color-primary-green);
  font-family: var(--vh-font-body);
  font-weight: 700;
  text-decoration: none;
}

.search-load-more {
  justify-self: start;
  margin-block-start: var(--vh-space-8);
  padding-block: var(--vh-space-8);
  color: var(--vh-color-primary-green);
  font-family: var(--vh-font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
}

.search-load-more:hover,
.search-load-more:focus-visible {
  color: var(--vh-color-primary-green-dark);
}

@media (width <= 1100px) {
  .search-page {
    grid-template-columns: 1fr;
  }
  .search-page__sidebar {
    max-width: 760px;
  }
}
@media (width <= 820px) {
  .search-page__body {
    grid-template-columns: 1fr;
  }
  .search-filters {
    padding: var(--vh-space-16);
    border: 1px solid var(--vh-color-border);
  }
}
@media (width <= 640px) {
  .site-main--search {
    padding-block-start: var(--vh-space-24);
  }
  .search-header__title {
    font-size: clamp(1.875rem, 9vw, 2.375rem);
  }
  .vh-search-form__control {
    min-height: 50px;
  }
  .vh-search-form__submit {
    width: 56px;
  }
  .search-result-item {
    grid-template-columns: 1fr;
    gap: var(--vh-space-16);
  }
}
.contact-page {
  display: grid;
  gap: var(--vh-space-48);
  padding-block: var(--vh-space-32) var(--vh-space-64);
}

.contact-page__header {
  display: grid;
  gap: var(--vh-space-16);
  max-width: 820px;
}

.contact-page__breadcrumb {
  margin-block-end: 0;
}

.contact-page__title {
  max-width: 760px;
  margin: 0;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-heading);
  font-size: clamp(2rem, 3vw, 2.875rem);
  font-weight: 700;
  line-height: 1.14;
}

.contact-page__accent,
.contact-section-title::after {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--vh-color-primary-green);
  content: "";
}

.contact-page__intro {
  max-width: 760px;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.contact-page__intro > :last-child {
  margin-block-end: 0;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
  gap: var(--vh-column-gap);
  align-items: start;
}

.contact-section-title {
  display: grid;
  gap: var(--vh-space-12);
  margin: 0 0 var(--vh-space-24);
  color: var(--vh-color-primary-green);
  font-family: var(--vh-font-body);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
}

.contact-details__list {
  display: grid;
  border-top: 1px solid var(--vh-color-border);
}

.contact-details__item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: var(--vh-space-16);
  align-items: start;
  padding-block: var(--vh-space-20, 20px);
  border-bottom: 1px solid var(--vh-color-border);
}

.contact-details__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--vh-color-primary-green-light);
  color: var(--vh-color-primary-green);
}

.contact-details__icon svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-details__content {
  display: grid;
  gap: var(--vh-space-4);
  font-family: var(--vh-font-body);
  line-height: 1.45;
}

.contact-details__content strong {
  color: var(--vh-color-headline);
  font-size: 0.875rem;
  font-weight: 700;
}

.contact-details__content a,
.contact-details__content span {
  color: var(--vh-color-headline);
  font-size: 1rem;
}

.contact-details__content a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.contact-details__content em {
  color: var(--vh-color-muted);
  font-size: 0.8125rem;
  font-style: normal;
}

.contact-form-section {
  min-width: 0;
}

.contact-form {
  display: grid;
  gap: var(--vh-space-20, 20px);
  font-family: var(--vh-font-body);
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--vh-space-16);
}

.contact-form__field {
  display: grid;
  gap: var(--vh-space-8);
}

.contact-form__field label {
  color: var(--vh-color-headline);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25;
}

.contact-form__field label span[aria-hidden=true] {
  color: #9d2f2f;
}

.contact-form__field input:not([type=checkbox]),
.contact-form__field textarea {
  width: 100%;
  border: 1px solid var(--vh-color-border);
  background: var(--vh-color-surface);
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  font-size: 1rem;
  line-height: 1.45;
  padding: var(--vh-space-12);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: var(--vh-color-primary-green);
  outline: 2px solid rgba(116, 144, 31, 0.18);
  outline-offset: 0;
}

.contact-form__field textarea {
  min-height: 168px;
  resize: vertical;
}

.contact-form__field [aria-invalid=true] {
  border-color: #9d2f2f;
}

.contact-form__field--checkbox label {
  display: flex;
  gap: var(--vh-space-8);
  align-items: flex-start;
  font-weight: 500;
}

.contact-form__field--checkbox input {
  margin-block-start: 0.3em;
  accent-color: var(--vh-color-primary-green);
}

.contact-form__privacy-note {
  max-width: 680px;
  margin: 0;
  color: var(--vh-color-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.contact-form__privacy-note a {
  color: var(--vh-color-primary-green);
  font-weight: 600;
  text-decoration: none;
}

.contact-form__privacy-note a:hover,
.contact-form__privacy-note a:focus-visible {
  color: var(--vh-color-primary-green-dark);
}

.contact-form__message {
  margin: 0;
  color: #7a1f1f;
  font-size: 0.8125rem;
  line-height: 1.35;
}

.contact-form__status {
  margin-block-end: var(--vh-space-24);
  padding: var(--vh-space-16);
  border-left: 2px solid var(--vh-color-primary-green);
  background: var(--vh-color-primary-green-light);
  font-family: var(--vh-font-body);
  line-height: 1.45;
}

.contact-form__status--error {
  border-left-color: #9d2f2f;
  background: #fff7f7;
}

.contact-form__honeypot {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-form__submit {
  justify-self: start;
  min-width: 180px;
}

.contact-form__submit:disabled {
  opacity: 0.68;
  cursor: progress;
}

.contact-info-note {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: var(--vh-space-16);
  max-width: 820px;
  padding: var(--vh-space-24);
  border-left: 2px solid var(--vh-color-primary-green);
  background: var(--vh-color-primary-green-light);
}

.contact-info-note__icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--vh-color-primary-green);
  border-radius: 50%;
  color: var(--vh-color-primary-green);
  font-family: var(--vh-font-body);
  font-weight: 700;
}

.contact-info-note h2 {
  margin: 0 0 var(--vh-space-8);
  color: var(--vh-color-primary-green);
  font-family: var(--vh-font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-info-note p {
  margin: 0;
  font-family: var(--vh-font-body);
  font-size: 0.9375rem;
  line-height: 1.55;
}

@media (width <= 900px) {
  .contact-page__grid,
  .contact-form__row {
    grid-template-columns: 1fr;
  }
}
@media (width <= 640px) {
  .contact-page {
    gap: var(--vh-space-32);
    padding-block-start: var(--vh-space-24);
  }
  .contact-page__title {
    font-size: clamp(1.875rem, 9vw, 2.375rem);
  }
  .contact-details__item {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: var(--vh-space-12);
  }
  .contact-details__icon {
    width: 38px;
    height: 38px;
  }
  .contact-form__submit {
    width: 100%;
  }
  .contact-info-note {
    grid-template-columns: 1fr;
  }
}
.impressum-page {
  display: grid;
  gap: var(--vh-space-48);
  padding-block: var(--vh-space-32) var(--vh-space-64);
}

.impressum-page__header {
  display: grid;
  gap: var(--vh-space-16);
  max-width: 820px;
}

.impressum-page__breadcrumb {
  margin-block-end: 0;
}

.impressum-page__title {
  max-width: 760px;
  margin: 0;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-heading);
  font-size: clamp(2rem, 3vw, 2.875rem);
  font-weight: 700;
  line-height: 1.14;
}

.impressum-page__accent,
.impressum-section__title::after {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--vh-color-primary-green);
  content: "";
}

.impressum-page__intro {
  max-width: 760px;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.impressum-page__intro > :last-child {
  margin-block-end: 0;
}

.impressum-page__sections {
  display: grid;
  max-width: 960px;
  border-top: 1px solid var(--vh-color-border);
}

.impressum-section {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: var(--vh-space-24);
  padding-block: var(--vh-space-32);
  border-bottom: 1px solid var(--vh-color-border);
}

.impressum-section__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--vh-color-primary-green-light);
  color: var(--vh-color-primary-green);
}

.impressum-section__icon svg {
  display: block;
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.impressum-section__body {
  min-width: 0;
}

.impressum-section__title {
  display: grid;
  gap: var(--vh-space-12);
  margin: 0 0 var(--vh-space-20, 20px);
  color: var(--vh-color-primary-green);
  font-family: var(--vh-font-body);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.impressum-section__content {
  display: grid;
  gap: var(--vh-space-8);
  max-width: 760px;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  font-size: 1rem;
  line-height: 1.6;
}

.impressum-section__content p {
  margin: 0;
}

.impressum-authors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--vh-space-16) var(--vh-space-24);
  max-width: 760px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.impressum-authors__item {
  display: grid;
  gap: var(--vh-space-4);
  min-width: 0;
}

.impressum-authors__name {
  color: var(--vh-color-headline);
  font-family: var(--vh-font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.24;
  text-decoration: none;
}

.impressum-authors__name:hover,
.impressum-authors__name:focus-visible {
  color: var(--vh-color-primary-green);
}

.impressum-authors__role {
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
  font-size: 0.875rem;
  line-height: 1.3;
}

.impressum-contact-list {
  display: grid;
  gap: var(--vh-space-16);
  max-width: 760px;
  font-family: var(--vh-font-body);
}

.impressum-contact-list p {
  display: grid;
  gap: var(--vh-space-4);
  margin: 0;
}

.impressum-contact-list strong {
  color: var(--vh-color-muted);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.impressum-contact-list a,
.impressum-contact-list span {
  color: var(--vh-color-headline);
  font-size: 1rem;
  line-height: 1.45;
}

.impressum-page__more-link {
  display: inline-flex;
  gap: var(--vh-space-8);
  align-items: center;
  margin-block-start: var(--vh-space-24);
  color: var(--vh-color-primary-green);
  font-family: var(--vh-font-body);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}

.impressum-page__more-link:hover,
.impressum-page__more-link:focus-visible {
  color: var(--vh-color-primary-green-dark);
}

@media (width <= 760px) {
  .impressum-page {
    gap: var(--vh-space-32);
    padding-block-start: var(--vh-space-24);
  }
  .impressum-page__title {
    font-size: clamp(1.875rem, 9vw, 2.375rem);
  }
  .impressum-section {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: var(--vh-space-16);
    padding-block: var(--vh-space-24);
  }
  .impressum-section__icon {
    width: 40px;
    height: 40px;
  }
  .impressum-authors {
    grid-template-columns: 1fr;
  }
}
.privacy-page {
  display: grid;
  gap: var(--vh-space-48);
  padding-block: var(--vh-space-32) var(--vh-space-64);
}

.privacy-page__header {
  display: grid;
  gap: var(--vh-space-16);
  max-width: 860px;
}

.privacy-page__breadcrumb {
  margin-block-end: 0;
}

.privacy-page__eyebrow {
  margin: 0;
  color: var(--vh-color-primary-green);
  font-family: var(--vh-font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.privacy-page__title {
  max-width: 760px;
  margin: 0;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-heading);
  font-size: clamp(2rem, 3vw, 2.875rem);
  font-weight: 700;
  line-height: 1.14;
}

.privacy-page__accent,
.privacy-section h2::after,
.privacy-toc__title::after {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--vh-color-primary-green);
  content: "";
}

.privacy-page__intro {
  max-width: 780px;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.privacy-page__intro > :last-child {
  margin-block-end: 0;
}

.privacy-page__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vh-space-16) var(--vh-space-32);
  padding: var(--vh-space-16) 0 0;
  margin: 0;
  border-top: 1px solid var(--vh-color-border);
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
  font-size: 0.875rem;
}

.privacy-page__meta div {
  display: grid;
  gap: var(--vh-space-4);
}

.privacy-page__meta dt {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.privacy-page__meta dd {
  margin: 0;
}

.privacy-page__layout {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: var(--vh-space-48);
  align-items: start;
  max-width: 1120px;
}

.privacy-toc {
  position: sticky;
  top: var(--vh-space-24);
  display: grid;
  gap: var(--vh-space-16);
  padding-block: var(--vh-space-24);
  border-block: 1px solid var(--vh-color-border);
  font-family: var(--vh-font-body);
}

.privacy-toc__title {
  display: grid;
  gap: var(--vh-space-12);
  margin: 0;
  color: var(--vh-color-primary-green);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.privacy-toc ul {
  display: grid;
  gap: var(--vh-space-8);
  padding: 0;
  margin: 0;
  list-style: none;
}

.privacy-toc a {
  color: var(--vh-color-headline);
  font-size: 0.9375rem;
  line-height: 1.35;
  text-decoration: none;
}

.privacy-toc a:hover,
.privacy-toc a:focus-visible {
  color: var(--vh-color-primary-green);
}

.privacy-page__content {
  display: grid;
  border-top: 1px solid var(--vh-color-border);
}

.privacy-section {
  display: grid;
  gap: var(--vh-space-16);
  padding-block: var(--vh-space-32);
  border-bottom: 1px solid var(--vh-color-border);
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  font-size: 1rem;
  line-height: 1.62;
}

.privacy-section h2 {
  display: grid;
  gap: var(--vh-space-12);
  margin: 0 0 var(--vh-space-8);
  color: var(--vh-color-primary-green);
  font-family: var(--vh-font-body);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.privacy-section h3 {
  margin: 0;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
}

.privacy-section p,
.privacy-section ul {
  max-width: 780px;
  margin-block: 0;
}

.privacy-section li + li {
  margin-block-start: var(--vh-space-8);
}

.privacy-card {
  max-width: 820px;
  padding: var(--vh-space-24);
  border-left: 2px solid var(--vh-color-primary-green);
  background: var(--vh-color-primary-green-light);
}

.privacy-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--vh-space-16) var(--vh-space-24);
  margin: 0;
}

.privacy-details div {
  display: grid;
  gap: var(--vh-space-4);
  min-width: 0;
}

.privacy-details dt {
  color: var(--vh-color-muted);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.privacy-details dd {
  margin: 0;
  color: var(--vh-color-headline);
  line-height: 1.45;
}

.privacy-table-wrap {
  overflow-x: auto;
  max-width: 100%;
  border: 1px solid var(--vh-color-border);
}

.privacy-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--vh-color-surface);
  font-family: var(--vh-font-body);
  font-size: 0.9375rem;
  line-height: 1.45;
}

.privacy-table th,
.privacy-table td {
  padding: var(--vh-space-12);
  border-bottom: 1px solid var(--vh-color-border);
  text-align: left;
  vertical-align: top;
}

.privacy-table th {
  color: var(--vh-color-primary-green);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.privacy-table tr:last-child td {
  border-bottom: 0;
}

.privacy-table--compact {
  min-width: 560px;
}

.privacy-rights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--vh-space-16) var(--vh-space-24);
  max-width: 860px;
}

.privacy-rights__item {
  display: grid;
  gap: var(--vh-space-8);
  padding-block-start: var(--vh-space-16);
  border-top: 1px solid var(--vh-color-border);
}

.privacy-rights__item p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.privacy-section--notice {
  padding: var(--vh-space-24);
  border-bottom: 0;
  border-left: 2px solid var(--vh-color-primary-green);
  background: var(--vh-color-primary-green-light);
}

.privacy-page__more-link {
  display: inline-flex;
  gap: var(--vh-space-8);
  align-items: center;
  justify-self: start;
  color: var(--vh-color-primary-green);
  font-family: var(--vh-font-body);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}

.privacy-page__more-link:hover,
.privacy-page__more-link:focus-visible {
  color: var(--vh-color-primary-green-dark);
}

@media (width <= 960px) {
  .privacy-page__layout {
    grid-template-columns: 1fr;
    gap: var(--vh-space-32);
  }
  .privacy-toc {
    position: static;
  }
}
@media (width <= 760px) {
  .privacy-page {
    gap: var(--vh-space-32);
    padding-block-start: var(--vh-space-24);
  }
  .privacy-page__title {
    font-size: clamp(1.875rem, 9vw, 2.375rem);
  }
  .privacy-details,
  .privacy-rights {
    grid-template-columns: 1fr;
  }
  .privacy-card,
  .privacy-section--notice {
    padding: var(--vh-space-20, 20px);
  }
}
@media print {
  .privacy-toc {
    position: static;
  }
  .privacy-page {
    padding-block: 0;
  }
  .privacy-page__layout {
    display: block;
  }
  .privacy-table-wrap {
    overflow: visible;
  }
}
.error-404-page {
  display: grid;
  place-items: center;
  min-height: min(720px, 72vh);
  padding-block: var(--vh-space-64);
}

.error-404-content {
  display: grid;
  justify-items: center;
  width: min(100%, 820px);
  text-align: center;
}

.error-404-code {
  margin: 0;
  color: var(--vh-color-primary-green);
  font-family: var(--vh-font-heading);
  font-size: clamp(4.95rem, 13.5vw, 9.9rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.9;
}

.error-404-title {
  max-width: 760px;
  margin: var(--vh-space-16) 0 0;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-heading);
  font-size: clamp(1.8rem, 2.7vw, 2.6rem);
  font-weight: 700;
  line-height: 1.14;
}

.error-404-divider {
  width: 56px;
  height: 2px;
  margin-block: var(--vh-space-24);
  background: var(--vh-color-primary-green);
}

.error-404-message {
  display: grid;
  gap: var(--vh-space-8);
  max-width: 640px;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.error-404-message p {
  margin: 0;
}

.error-404-home-link {
  margin-block-start: var(--vh-space-32);
}

.error-404-search-link {
  margin: var(--vh-space-16) 0 0;
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.error-404-search-link a {
  color: var(--vh-color-primary-green);
  font-weight: 600;
}

.error-404-silhouette {
  display: block;
  width: min(100%, 620px);
  height: auto;
  margin-block-start: var(--vh-space-48);
}

@media (width <= 640px) {
  .error-404-page {
    min-height: auto;
    padding-block: var(--vh-space-48) var(--vh-space-64);
  }
  .error-404-title {
    font-size: clamp(1.6875rem, 8.1vw, 2.125rem);
  }
  .error-404-home-link {
    width: 100%;
    max-width: 320px;
  }
  .error-404-silhouette {
    margin-block-start: var(--vh-space-32);
  }
}
.vh-weather-page {
  display: grid;
  gap: var(--vh-space-48);
  padding-block: var(--vh-space-32) var(--vh-space-64);
}

.vh-weather-page__header {
  display: grid;
  gap: var(--vh-space-16);
  max-width: 820px;
}

.vh-weather-page__breadcrumb {
  margin-block-end: 0;
}

.vh-weather-page__title {
  max-width: 800px;
  margin: 0;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-heading);
  font-size: clamp(2rem, 3vw, 2.875rem);
  font-weight: 700;
  line-height: 1.14;
}

.vh-weather-page__intro {
  max-width: 760px;
  margin: 0;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.vh-weather-page__section-title {
  display: grid;
  gap: var(--vh-space-12);
  margin: 0 0 var(--vh-space-24);
  color: var(--vh-color-primary-green);
  font-family: var(--vh-font-body);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.vh-weather-page__section-title::after {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--vh-color-primary-green);
  content: "";
}

.vh-weather-current,
.vh-weather-page__empty,
.vh-county-map,
.vh-weather-summary {
  border-left: 2px solid var(--vh-color-primary-green);
  background: var(--vh-color-primary-green-light);
}

.vh-weather-current {
  display: grid;
  grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.64fr);
  gap: var(--vh-space-32);
  padding: var(--vh-space-32);
}

.vh-weather-current h2,
.vh-weather-page__empty h2 {
  margin: 0;
  color: var(--vh-color-primary-green);
  font-family: var(--vh-font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.vh-weather-current__main {
  display: grid;
  gap: var(--vh-space-24);
  align-content: start;
}

.vh-weather-current__hero {
  display: flex;
  gap: var(--vh-space-20, 20px);
  align-items: center;
}

.vh-weather-current__icon {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
}

.vh-weather-current__hero strong {
  display: block;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-heading);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 700;
  line-height: 1;
}

.vh-weather-current__hero span {
  display: block;
  margin-block-start: var(--vh-space-8);
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
  font-size: 1rem;
  line-height: 1.35;
}

.vh-weather-current__details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: rgba(116, 144, 31, 0.18);
}

.vh-weather-current__details div {
  display: grid;
  gap: var(--vh-space-4);
  padding: var(--vh-space-16);
  background: var(--vh-color-primary-green-light);
}

.vh-weather-current__details dt,
.vh-weather-current__details dd {
  margin: 0;
  font-family: var(--vh-font-body);
  line-height: 1.3;
}

.vh-weather-current__details dt {
  color: var(--vh-color-muted);
  font-size: 0.8125rem;
}

.vh-weather-current__details dd {
  color: var(--vh-color-headline);
  font-size: 1rem;
  font-weight: 600;
}

.vh-county-map {
  display: grid;
  gap: var(--vh-space-24);
  padding: var(--vh-space-32);
}

.vh-county-map__header {
  display: grid;
  gap: var(--vh-space-8);
  max-width: 720px;
}

.vh-county-map__header p {
  margin: 0;
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.vh-county-map__canvas {
  position: relative;
  aspect-ratio: 16/9;
  min-height: 360px;
  overflow: visible;
  background: rgba(255, 255, 255, 0.72);
}

.vh-county-map__shape {
  position: absolute;
  inset: 5%;
  width: 90%;
  height: 90%;
  color: var(--vh-color-primary-green);
}

.vh-county-map__shape path:first-child {
  fill: rgba(116, 144, 31, 0.07);
  stroke: rgba(116, 144, 31, 0.32);
  stroke-width: 2;
}

.vh-county-map__shape path:not(:first-child) {
  fill: none;
  stroke: rgba(116, 144, 31, 0.18);
  stroke-width: 1.4;
}

.vh-county-map__marker {
  position: absolute;
  z-index: 2;
  left: var(--vh-map-x);
  top: var(--vh-map-y);
  display: grid;
  gap: 2px;
  place-items: center;
  min-width: 88px;
  padding: var(--vh-space-8);
  border: 0;
  background: transparent;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  text-align: center;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.vh-county-map__marker::before {
  position: absolute;
  z-index: -1;
  inset: 4px;
  border: 1px solid rgba(116, 144, 31, 0.24);
  background: rgba(255, 255, 255, 0.86);
  content: "";
}

.vh-county-map__marker:hover,
.vh-county-map__marker:focus-visible {
  color: var(--vh-color-primary-green-dark);
  outline: 0;
}

.vh-county-map__marker:hover::before,
.vh-county-map__marker:focus-visible::before {
  border-color: var(--vh-color-primary-green);
}

.vh-county-map__icon svg {
  width: 22px;
  height: 22px;
}

.vh-county-map__label {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.1;
}

.vh-county-map__temp {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.vh-county-map__tooltip {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: calc(100% + 8px);
  display: none;
  width: max-content;
  max-width: 220px;
  padding: var(--vh-space-12);
  border: 1px solid var(--vh-color-border);
  background: var(--vh-color-surface);
  color: var(--vh-color-headline);
  box-shadow: none;
  font-size: 0.8125rem;
  line-height: 1.35;
  text-align: left;
  transform: translateX(-50%);
}

.vh-county-map__tooltip strong,
.vh-county-map__tooltip span {
  display: block;
}

.vh-county-map__marker:hover .vh-county-map__tooltip,
.vh-county-map__marker:focus-visible .vh-county-map__tooltip {
  display: block;
}

.vh-weather-county__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--vh-space-24);
}

.vh-weather-town {
  display: grid;
  gap: var(--vh-space-8);
  min-height: 246px;
  padding-block: var(--vh-space-20, 20px);
  border-block: 1px solid var(--vh-color-border);
  font-family: var(--vh-font-body);
}

.vh-weather-town h3 {
  margin: 0;
  color: var(--vh-color-primary-green);
  font-family: var(--vh-font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.vh-weather-town__icon {
  width: 42px;
  height: 42px;
}

.vh-weather-town strong {
  color: var(--vh-color-headline);
  font-family: var(--vh-font-heading);
  font-size: 2rem;
  line-height: 1;
}

.vh-weather-town > span {
  color: var(--vh-color-muted);
  font-size: 0.9375rem;
  line-height: 1.35;
}

.vh-weather-town ul,
.vh-weather-summary ul {
  display: grid;
  gap: var(--vh-space-8);
  padding: 0;
  margin: var(--vh-space-8) 0 0;
  list-style: none;
}

.vh-weather-town li,
.vh-weather-summary li {
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  font-size: 0.9375rem;
  line-height: 1.4;
}

.vh-weather-hourly__list {
  display: grid;
  grid-template-columns: repeat(12, minmax(88px, 1fr));
  gap: var(--vh-space-8);
  overflow-x: auto;
  padding-block-end: var(--vh-space-8);
}

.vh-weather-hourly__item,
.vh-weather-weekly__day {
  display: grid;
  gap: var(--vh-space-8);
  justify-items: center;
  padding: var(--vh-space-16) var(--vh-space-12);
  border-block: 1px solid var(--vh-color-border);
  font-family: var(--vh-font-body);
  text-align: center;
}

.vh-weather-hourly__item time,
.vh-weather-weekly__day span {
  color: var(--vh-color-primary-green);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.2;
}

.vh-weather-hourly__item strong,
.vh-weather-weekly__day strong {
  color: var(--vh-color-headline);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.vh-weather-hourly__item span,
.vh-weather-weekly__day em {
  color: var(--vh-color-muted);
  font-size: 0.75rem;
  font-style: normal;
  line-height: 1.25;
}

.vh-weather-weekly__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: var(--vh-space-12);
}

.vh-weather-summary {
  padding: var(--vh-space-32);
}

.vh-weather-page__source {
  margin: 0;
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
  font-size: 0.8125rem;
  line-height: 1.4;
}

.vh-weather-page__empty {
  display: grid;
  gap: var(--vh-space-12);
  max-width: 760px;
  padding: var(--vh-space-32);
}

.vh-weather-page__empty p {
  margin: 0;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  line-height: 1.55;
}

.vh-balaton-weather-page {
  --vh-balaton-map-bg: color-mix(in srgb, var(--vh-color-primary-green) 7%, #fff);
  max-width: var(--vh-layout-max-width);
}

.vh-balaton-current,
.vh-balaton-map-section,
.vh-balaton-summary,
.vh-balaton-water,
.vh-balaton-level,
.vh-balaton-hourly,
.vh-balaton-daily,
.vh-balaton-storm,
.vh-balaton-sources {
  display: grid;
  gap: var(--vh-space-24);
}

.vh-balaton-current__grid,
.vh-balaton-water__grid,
.vh-balaton-daily__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--vh-space-24);
}

.vh-balaton-basin-card,
.vh-balaton-water-card,
.vh-balaton-daily__basin,
.vh-balaton-level,
.vh-balaton-summary,
.vh-balaton-storm,
.vh-balaton-sources {
  padding: var(--vh-space-24);
  border-left: 3px solid var(--vh-color-border);
  background: var(--vh-color-surface);
}

.vh-balaton-basin-card--primary,
.vh-balaton-water-card--primary {
  border-left-color: var(--vh-color-primary-green);
  background: var(--vh-balaton-map-bg);
}

.vh-balaton-basin-card h3,
.vh-balaton-water-card h3,
.vh-balaton-daily__basin h3 {
  margin: 0 0 var(--vh-space-8);
  color: var(--vh-color-primary-green);
  font-family: var(--vh-font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.vh-balaton-basin-card p,
.vh-balaton-basin-card span,
.vh-balaton-water-card p,
.vh-balaton-storm p,
.vh-balaton-sources li,
.vh-balaton-summary li {
  margin: 0;
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.vh-balaton-basin-card__hero {
  display: flex;
  align-items: center;
  gap: var(--vh-space-16);
  margin-block: var(--vh-space-16);
}

.vh-balaton-basin-card__hero strong,
.vh-balaton-water-card strong,
.vh-balaton-level strong {
  color: var(--vh-color-headline);
  font-family: var(--vh-font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1;
}

.vh-balaton-basin-card dl {
  display: grid;
  gap: var(--vh-space-8);
  margin: var(--vh-space-20) 0 0;
}

.vh-balaton-basin-card dl div,
.vh-balaton-daily__basin div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--vh-space-16);
  padding-block: var(--vh-space-8);
  border-top: 1px solid var(--vh-color-border);
}

.vh-balaton-basin-card dt,
.vh-balaton-basin-card dd,
.vh-balaton-daily__basin span,
.vh-balaton-daily__basin strong,
.vh-balaton-daily__basin em {
  margin: 0;
  font-family: var(--vh-font-body);
  font-size: 0.8125rem;
  line-height: 1.3;
}

.vh-balaton-basin-card dt,
.vh-balaton-daily__basin em {
  color: var(--vh-color-muted);
  font-style: normal;
}

.vh-balaton-basin-card dd,
.vh-balaton-daily__basin strong {
  color: var(--vh-color-headline);
  font-weight: 700;
}

.vh-balaton-map {
  margin: 0;
  padding: var(--vh-space-24);
  background: var(--vh-balaton-map-bg);
}

.vh-balaton-map__svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 280px;
}

.vh-balaton-map__lake {
  fill: color-mix(in srgb, var(--vh-color-primary-green) 18%, #fff);
  stroke: var(--vh-color-primary-green);
  stroke-width: 4;
}

.vh-balaton-map__basin {
  fill: color-mix(in srgb, var(--vh-color-primary-green) 10%, #fff);
  opacity: 0.8;
}

.vh-balaton-map__basin--central {
  opacity: 0.55;
}

.vh-balaton-map__basin--east {
  opacity: 0.4;
}

.vh-balaton-map__weather-point circle {
  fill: #fff;
  stroke: var(--vh-color-primary-green);
  stroke-width: 3;
}

.vh-balaton-map__weather-point text,
.vh-balaton-map__station text {
  font-family: var(--vh-font-body);
  fill: var(--vh-color-headline);
}

.vh-balaton-map__weather-temp {
  font-size: 1.25rem;
  font-weight: 700;
}

.vh-balaton-map__weather-wind,
.vh-balaton-map__station-value {
  font-size: 0.75rem;
  font-weight: 600;
}

.vh-balaton-map__station circle {
  fill: var(--vh-color-primary-green);
}

.vh-balaton-map__station text {
  font-size: 0.75rem;
  font-weight: 700;
}

.vh-balaton-map__station--muted {
  opacity: 0.55;
}

.vh-balaton-map__caption {
  margin-block-start: var(--vh-space-16);
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
  font-size: 0.8125rem;
  line-height: 1.4;
}

.vh-balaton-hourly__basin {
  display: grid;
  gap: var(--vh-space-16);
}

.vh-balaton-hourly__basin h3 {
  margin: 0;
  color: var(--vh-color-headline);
  font-family: var(--vh-font-heading);
  font-size: 1.375rem;
  line-height: 1.2;
}

.vh-balaton-summary ul,
.vh-balaton-sources ul {
  display: grid;
  gap: var(--vh-space-8);
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 980px) {
  .vh-weather-current {
    grid-template-columns: 1fr;
  }
  .vh-weather-current__details,
  .vh-weather-county__grid,
  .vh-balaton-current__grid,
  .vh-balaton-water__grid,
  .vh-balaton-daily__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .vh-weather-weekly__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .vh-weather-page {
    gap: var(--vh-space-32);
    padding-block: var(--vh-space-24) var(--vh-space-48);
  }
  .vh-weather-current,
  .vh-county-map,
  .vh-balaton-map,
  .vh-weather-summary,
  .vh-weather-page__empty {
    padding: var(--vh-space-24);
  }
  .vh-weather-current__details,
  .vh-weather-county__grid,
  .vh-weather-weekly__grid,
  .vh-balaton-current__grid,
  .vh-balaton-water__grid,
  .vh-balaton-daily__grid {
    grid-template-columns: 1fr;
  }
  .vh-county-map__canvas {
    aspect-ratio: 4/5;
    min-height: 480px;
  }
  .vh-county-map__marker {
    min-width: 72px;
    padding: var(--vh-space-4);
  }
  .vh-county-map__label {
    font-size: 0.6875rem;
  }
  .vh-county-map__temp {
    font-size: 0.875rem;
  }
  .vh-weather-hourly__list {
    grid-template-columns: repeat(12, minmax(76px, 1fr));
  }
  .vh-balaton-map__svg {
    min-height: 220px;
  }
  .vh-balaton-map__station text {
    font-size: 0.625rem;
  }
}
.vh-table-wrap {
  max-width: var(--vh-content);
  margin-block: var(--vh-space-32);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.vh-table {
  width: 100%;
  min-width: 520px;
  border: 0;
  border-collapse: collapse;
  background: var(--vh-color-surface);
  color: var(--vh-color-headline);
  font-family: var(--vh-font-body);
  font-size: 1rem;
  line-height: 1.48;
}

.vh-table__caption {
  caption-side: top;
  margin-block-end: var(--vh-space-8);
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
  font-size: 0.875rem;
  line-height: 1.4;
  text-align: left;
}

.vh-table th,
.vh-table td {
  padding: var(--vh-space-12) var(--vh-space-16);
  border: 0;
  background: transparent;
  text-align: left;
  vertical-align: top;
}

.single-entry .entry-content .vh-table th,
.single-entry .entry-content .vh-table td,
.editor-styles-wrapper .vh-table th,
.editor-styles-wrapper .vh-table td {
  border: 0;
  background: transparent;
  color: var(--vh-color-headline);
}

.vh-table thead th {
  color: var(--vh-color-headline);
  font-weight: 700;
}

.vh-table .has-text-align-left {
  text-align: left;
}

.vh-table .has-text-align-center {
  text-align: center;
}

.vh-table .has-text-align-right {
  text-align: right;
}

.vh-table--data thead tr {
  border-bottom: 2px solid var(--vh-color-primary-green);
}

.vh-table--data tbody tr + tr {
  border-top: 1px solid var(--vh-color-border);
}

.vh-table--data tbody th,
.vh-table--data tbody td {
  font-weight: 400;
}

.vh-table--list {
  min-width: 420px;
  background: transparent;
}

.single-entry .entry-content .vh-table--list,
.editor-styles-wrapper .vh-table--list {
  background: transparent;
}

.vh-table--list th,
.vh-table--list td {
  padding-block: var(--vh-space-8);
  font-weight: 400;
}

.single-entry .entry-content .vh-table--list th,
.single-entry .entry-content .vh-table--list td,
.editor-styles-wrapper .vh-table--list th,
.editor-styles-wrapper .vh-table--list td {
  border: 0;
  background: transparent;
}

.vh-table--list thead tr,
.vh-table--list tbody tr {
  border: 0;
}

.vh-table--list tbody th {
  width: 34%;
  font-weight: 400;
  white-space: nowrap;
}

.vh-table-editor {
  font-family: var(--vh-font-body);
}

.vh-table-editor .vh-table-wrap {
  max-width: 100%;
  margin-block: var(--vh-space-16);
}

.vh-table-editor .vh-table {
  table-layout: fixed;
  border: 1px solid #c3c4c7;
  border-collapse: collapse;
  background: #fff;
}

@media (width > 1024px) {
  .single-entry .entry-content .vh-table {
    font-size: 1.0625rem;
  }
  .single-entry .entry-content .vh-table__caption {
    font-size: 0.9375rem;
  }
}
.editor-styles-wrapper .vh-table-editor .vh-table th,
.editor-styles-wrapper .vh-table-editor .vh-table td {
  min-width: 120px;
  padding: var(--vh-space-12);
  border: 1px solid #dcdcde;
  background: #fff;
  vertical-align: middle;
  transition: background-color 120ms ease, box-shadow 120ms ease;
}

.editor-styles-wrapper .vh-table-editor .vh-table thead th {
  border-bottom-color: #9aaa70;
  background: #f1f5e8;
  font-weight: 700;
}

.editor-styles-wrapper .vh-table-editor .vh-table tfoot th,
.editor-styles-wrapper .vh-table-editor .vh-table tfoot td {
  background: #f6f7f7;
  font-weight: 600;
}

.editor-styles-wrapper .vh-table-editor .vh-table th.is-selected,
.editor-styles-wrapper .vh-table-editor .vh-table td.is-selected {
  position: relative;
  z-index: 1;
  background: #f7faef;
  box-shadow: inset 0 0 0 2px #719227;
}

.editor-styles-wrapper .vh-table-editor .vh-table--list th,
.editor-styles-wrapper .vh-table-editor .vh-table--list td {
  background: #fff;
  font-weight: 400;
}

.editor-styles-wrapper .vh-table-editor .vh-table--list thead th {
  border-bottom-color: #dcdcde;
  background: #fff;
  font-weight: 400;
}

.editor-styles-wrapper .vh-table-editor .vh-table--list th.is-selected,
.editor-styles-wrapper .vh-table-editor .vh-table--list td.is-selected {
  background: #fff;
}

.vh-table-editor__cell-content {
  display: block;
  min-height: 1.5em;
  outline: 0;
}

@media (max-width: 640px) {
  .vh-table-wrap {
    margin-block: var(--vh-space-24);
  }
  .vh-table {
    min-width: 480px;
    font-size: 0.9375rem;
  }
  .vh-table--list {
    min-width: 360px;
  }
  .vh-table th,
  .vh-table td {
    padding: var(--vh-space-8) var(--vh-space-12);
  }
}
.vh-video {
  max-width: var(--vh-content);
  margin-block: var(--vh-space-32);
}

.vh-video__embed {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--vh-color-light-gray);
  aspect-ratio: var(--vh-ratio-wide);
}

.vh-video--portrait .vh-video__embed {
  aspect-ratio: 9/16;
}

.vh-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.vh-video__caption {
  margin-block-start: var(--vh-space-8);
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
  font-size: 0.8125rem;
  line-height: 1.4;
}

.vh-video-placeholder {
  max-width: var(--vh-content);
  margin-block: var(--vh-space-24);
  padding: var(--vh-space-24);
  border: 1px dashed var(--vh-color-border);
  color: var(--vh-color-muted);
  font-family: var(--vh-font-body);
}

.vh-video-placeholder p {
  margin: 0;
}

@media (max-width: 640px) {
  .vh-video {
    margin-block: var(--vh-space-24);
  }
}
.alignwide {
  max-width: var(--vh-container);
}

.alignfull {
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
}

.wp-caption,
.wp-caption-text,
.gallery-caption,
.bypostauthor {
  color: inherit;
}

/*# sourceMappingURL=app.css.map */
