:root {
  color-scheme: light;
  --green-900: #053321;
  --green-800: #07432c;
  --green-700: #0b5136;
  --green-600: #177245;
  --gold-500: #f0bd3d;
  --gold-100: #fff7db;
  --sky-600: #2677a8;
  --ink-900: #17231e;
  --ink-700: #3f514a;
  --ink-500: #6d7d77;
  --paper: #ffffff;
  --mist: #f4f8f5;
  --surface: #fbfdfb;
  --line: #d9e5de;
  --shadow: 0 18px 46px rgba(9, 38, 25, 0.11);
  --shadow-soft: 0 12px 30px rgba(9, 38, 25, 0.08);
  --radius: 8px;
  --font-scale: 1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: calc(16px * var(--font-scale));
  color: var(--ink-900);
  background:
    linear-gradient(180deg, rgba(247, 250, 248, 0.96) 0%, rgba(255, 255, 255, 1) 520px),
    var(--paper);
  line-height: 1.5;
}

body.is-contrast {
  --green-900: #000000;
  --green-800: #000000;
  --green-700: #000000;
  --green-600: #111111;
  --gold-500: #ffff00;
  --gold-100: #1f1f00;
  --sky-600: #ffffff;
  --ink-900: #ffffff;
  --ink-700: #ffffff;
  --ink-500: #ffffff;
  --paper: #000000;
  --mist: #000000;
  --surface: #000000;
  --line: #ffffff;
  --shadow: none;
  --shadow-soft: none;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

a:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1520px, calc(100% - 48px));
  margin-inline: auto;
}

.sr-only,
.icon-sprite {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: #fff;
  background: var(--green-900);
  border-radius: 6px;
}

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

.icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 30px rgba(4, 43, 27, 0.07);
  backdrop-filter: blur(14px);
}

.topbar {
  color: #fff;
  background: linear-gradient(90deg, #042c1d, #073624);
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.88rem;
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.text-button,
.contrast-toggle {
  min-height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
  border-radius: 6px;
}

.text-button {
  width: 36px;
}

.contrast-toggle {
  padding: 0 10px;
}

.masthead {
  min-height: 112px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(360px, 580px) minmax(180px, 1fr);
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: min(330px, 48vw);
  height: auto;
}

.site-search {
  min-height: 54px;
  display: grid;
  grid-template-columns: 1fr 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 22px rgba(9, 38, 25, 0.06);
}

.site-search input {
  min-width: 0;
  border: 0;
  padding: 0 16px;
  color: var(--ink-900);
  background: transparent;
}

.site-search input:focus {
  outline: 2px solid var(--gold-500);
  outline-offset: -2px;
}

.site-search button {
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  background: var(--green-700);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-800);
  background: var(--paper);
}

.menu-toggle .close-icon {
  display: none;
}

.main-nav {
  color: #fff;
  background: linear-gradient(90deg, #063621 0%, #075336 55%, #086541 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 10px 24px rgba(4, 43, 27, 0.14);
}

.main-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.main-nav ul,
.main-nav li {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav ul.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.main-nav a,
.main-nav span.separator {
  position: relative;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 0;
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.main-nav a::after,
.main-nav span.separator::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 8px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.main-nav a .icon {
  width: 19px;
  height: 19px;
  opacity: 0.9;
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav li.active > a,
.main-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transform: translateY(-1px);
}

.main-nav a:hover::after,
.main-nav a:focus::after,
.main-nav li.active > a::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.main-nav .nav-link--accent {
  margin-left: 6px;
  background: rgba(240, 189, 61, 0.15);
}

.main-nav .nav-child,
.main-nav ul ul {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 50;
  min-width: 260px;
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  padding: 8px;
  border: 1px solid rgba(7, 67, 44, 0.12);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.main-nav li:hover > .nav-child,
.main-nav li:focus-within > .nav-child,
.main-nav li:hover > ul,
.main-nav li:focus-within > ul {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.main-nav .nav-child a,
.main-nav ul ul a,
.main-nav .nav-child span.separator,
.main-nav ul ul span.separator {
  min-height: 42px;
  width: 100%;
  justify-content: flex-start;
  padding: 0 12px;
  border-radius: 6px;
  color: var(--green-900);
  background: transparent;
  font-size: 0.95rem;
}

.main-nav .nav-child a::after,
.main-nav ul ul a::after,
.main-nav .nav-child span.separator::after,
.main-nav ul ul span.separator::after {
  display: none;
}

.main-nav .nav-child a:hover,
.main-nav ul ul a:hover {
  color: var(--green-900);
  background: var(--mist);
  transform: none;
}

.hero {
  min-height: clamp(430px, 54vh, 580px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--green-900);
}

.hero.hero--slider {
  min-height: 0;
  height: auto;
  display: block;
  overflow: hidden;
  color: inherit;
  background: transparent;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.03);
}

.hero-slider-module {
  position: relative;
  z-index: 1;
  overflow: hidden;
  line-height: 0;
  background: transparent;
}

.hero-slider-module .moduletable {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.hero-slider-module .djslider-loader,
.hero-slider-module .djslider {
  width: 100% !important;
  max-width: none !important;
}

.hero-slider-module .slider-container {
  width: 100% !important;
  max-width: none !important;
}

.hero-slider-module ul,
.hero-slider-module li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.hero-slider-module img {
  display: block;
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
}

.hero-slider-module a {
  position: relative;
  z-index: 5;
}

.hero-slider-module .navigation-container,
.hero-slider-module .navigation-container-custom,
.hero-slider-module .load-button,
.hero-slider-module .prev-button,
.hero-slider-module .next-button,
.hero-slider-module .play-button,
.hero-slider-module .pause-button {
  z-index: 3;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 28, 18, 0.86) 0%, rgba(4, 28, 18, 0.62) 42%, rgba(4, 28, 18, 0.14) 100%),
    linear-gradient(0deg, rgba(4, 28, 18, 0.5), rgba(4, 28, 18, 0.04));
}

.hero__content {
  position: relative;
  padding: 56px 0 72px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-500);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.service-copy h2,
.transparency h2,
.city-links h2 {
  margin: 0;
  line-height: 1.05;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.25rem, 5.1vw, 4.65rem);
  font-weight: 850;
}

.hero p:not(.eyebrow) {
  max-width: 610px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-action,
.secondary-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(5, 28, 18, 0.14);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.primary-action:hover,
.secondary-action:hover,
.primary-action:focus,
.secondary-action:focus {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(5, 28, 18, 0.18);
  text-decoration: none;
}

.primary-action {
  color: var(--green-900);
  background: var(--gold-500);
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.home-command {
  position: relative;
  z-index: 4;
  padding: 24px 0 36px;
  background:
    linear-gradient(180deg, rgba(244, 248, 245, 0.86), #ffffff);
}

.home-command__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr) minmax(260px, 0.7fr);
  gap: 18px;
  align-items: stretch;
}

.home-command__intro,
.edict-search,
.home-command__cards {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.home-command__intro {
  padding: 24px;
}

.home-command__intro h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(1.45rem, 2.1vw, 2.25rem);
  line-height: 1.08;
}

.home-command__intro p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--ink-700);
}

.edict-search {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px;
}

.edict-search label {
  color: var(--green-900);
  font-weight: 850;
}

.edict-search > div {
  min-height: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.edict-search input {
  min-width: 0;
  border: 0;
  padding: 0 16px;
  color: var(--ink-900);
  background: transparent;
}

.edict-search button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  padding: 0 18px;
  color: #fff;
  background: var(--green-700);
  font-weight: 850;
}

.home-command__cards {
  display: grid;
  grid-template-columns: 1fr;
  padding: 10px;
}

.home-command__cards a {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  border-radius: 7px;
  color: var(--green-900);
  font-weight: 850;
}

.home-command__cards a:hover,
.home-command__cards a:focus {
  color: #fff;
  background: var(--green-700);
  text-decoration: none;
}

.municipal-focus {
  padding: 10px 0 38px;
  background: #fff;
}

.municipal-focus__inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.municipal-focus__inner > div:first-child,
.focus-stat {
  border: 1px solid rgba(217, 229, 222, 0.86);
  border-radius: var(--radius);
  background: var(--surface);
}

.municipal-focus__inner > div:first-child {
  padding: 22px;
}

.municipal-focus h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(1.4rem, 2.2vw, 2.25rem);
  line-height: 1.1;
}

.focus-stat {
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 22px;
}

.focus-stat strong {
  color: var(--green-900);
  font-size: 1.04rem;
}

.focus-stat span {
  color: var(--ink-500);
  font-size: 0.94rem;
}

.quick-access,
.news {
  padding: 64px 0;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2,
.service-copy h2,
.transparency h2,
.city-links h2 {
  color: var(--green-900);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
}

.section-heading--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.view-all {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-800);
  font-weight: 800;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.quick-card {
  min-height: 148px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(217, 229, 222, 0.84);
  border-radius: var(--radius);
  color: var(--ink-900);
  background: var(--paper);
  box-shadow: 0 10px 24px rgba(6, 41, 27, 0.045);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.quick-card:hover,
.quick-card:focus {
  border-color: rgba(11, 81, 54, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  text-decoration: none;
}

.quick-card .icon {
  width: 30px;
  height: 30px;
  color: var(--green-700);
}

.quick-card span {
  font-size: 1.1rem;
  font-weight: 850;
}

.quick-card small {
  color: var(--ink-500);
  font-size: 0.92rem;
}

.quick-card--featured {
  color: #fff;
  background: var(--green-800);
}

.quick-card--featured .icon,
.quick-card--featured small {
  color: rgba(255, 255, 255, 0.82);
}

.service-band {
  padding: 64px 0;
  background: linear-gradient(180deg, #f8fbf9 0%, #eef6f1 100%);
}

.service-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: start;
  gap: 40px;
}

.service-copy p:not(.eyebrow),
.transparency p {
  margin: 16px 0 0;
  color: var(--ink-700);
  font-size: 1.06rem;
}

.service-list {
  display: grid;
  gap: 10px;
}

.service-list a {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  border: 1px solid rgba(217, 229, 222, 0.88);
  border-radius: var(--radius);
  background: var(--paper);
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(7, 67, 44, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.service-list a:hover {
  color: #fff;
  background: var(--green-800);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
  text-decoration: none;
}

.edict-panel {
  padding: 66px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(240, 189, 61, 0.16), transparent 30%),
    linear-gradient(135deg, #063d29 0%, #0b5d3d 100%);
  color: #fff;
}

.edict-panel__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.7fr) minmax(300px, 0.8fr);
  gap: 22px;
  align-items: start;
}

.edict-panel__copy h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.1vw, 3rem);
  line-height: 1.05;
}

.edict-panel__copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.edict-panel__actions,
.edict-panel__chips {
  display: grid;
  gap: 10px;
}

.edict-action,
.edict-panel__chips a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 850;
}

.edict-action--primary,
.edict-action:hover,
.edict-action:focus,
.edict-panel__chips a:hover,
.edict-panel__chips a:focus {
  border-color: var(--gold-500);
  color: var(--green-900);
  background: var(--gold-500);
  text-decoration: none;
}

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

.edict-panel__chips a {
  justify-content: center;
  min-height: 48px;
  text-align: center;
}

.spotlights {
  padding: 34px 0;
  background: var(--paper);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.spotlight-card {
  min-height: 190px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  background: var(--green-900);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.spotlight-card:hover,
.spotlight-card:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.spotlight-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 28, 18, 0.82), rgba(5, 28, 18, 0.08));
}

.spotlight-card div {
  position: relative;
  z-index: 1;
  padding: 22px;
}

.spotlight-card span {
  display: block;
  color: var(--gold-500);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.spotlight-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1.4rem;
  line-height: 1.15;
}

.transparency {
  padding: 70px 0;
  color: #fff;
  background:
    linear-gradient(135deg, #052f20 0%, #07452e 62%, #0d6040 100%);
}

.transparency h2,
.transparency p {
  color: #fff;
}

.transparency__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: 48px;
  align-items: start;
}

.transparency-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.transparency-links a {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.transparency-links a:hover {
  color: var(--green-900);
  background: var(--gold-500);
  text-decoration: none;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.news-card {
  min-width: 0;
  border: 1px solid rgba(217, 229, 222, 0.86);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 10px 24px rgba(6, 41, 27, 0.045);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.news-card a {
  display: block;
  height: 100%;
}

.news-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.96);
}

.news-card time,
.news-card h3,
.news-card p {
  display: block;
  margin-inline: 18px;
}

.news-card time {
  margin-top: 18px;
  color: var(--sky-600);
  font-size: 0.84rem;
  font-weight: 800;
}

.news-card h3 {
  margin-top: 8px;
  margin-bottom: 0;
  color: var(--green-900);
  font-size: 1.05rem;
  line-height: 1.2;
}

.news-card p {
  margin-top: 10px;
  margin-bottom: 20px;
  color: var(--ink-700);
}

.news-card:hover {
  border-color: rgba(11, 81, 54, 0.26);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.news-card:hover a {
  text-decoration: none;
}

.news-module .moduletable,
.news-module .k2ItemsBlock {
  margin: 0;
}

.news-module ul,
.news-module .k2ItemsBlock ul,
.news-module ul.latestnews,
.news-module .latestnews {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-module li,
.news-module .k2ItemsBlock ul li,
.news-module ul.latestnews li {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(6, 41, 27, 0.04);
}

.news-module li:hover {
  box-shadow: var(--shadow);
}

.news-module li a {
  color: var(--green-900);
  font-weight: 850;
}

.news-module ul.latestnews li > a,
.news-module .moduleItemTitle,
.news-module .latestnews a {
  display: block;
  padding: 18px 18px 0;
  color: var(--green-900);
  font-size: 1.08rem;
  line-height: 1.2;
  font-weight: 850;
}

.news-module img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.news-module .moduleItemImage,
.news-module .moduleItemImage img {
  display: block;
}

.news-module .moduleItemDateCreated,
.news-module .moduleItemCategory,
.news-module time,
.news-module .createdate {
  display: block;
  margin: 16px 18px 0;
  color: var(--sky-600);
  font-size: 0.84rem;
  font-weight: 800;
}

.news-module .moduleItemIntrotext,
.news-module .introtext {
  margin: 10px 18px 20px;
  color: var(--ink-700);
}

.news-module .moduleItemReadMore {
  display: inline-flex;
  margin: 0 18px 18px;
  color: var(--green-700);
  font-weight: 800;
}

.news-module .allmode-topbox {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.news-module .allmode-topitem {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(6, 41, 27, 0.04);
}

.news-module .allmode-topitem:hover {
  box-shadow: var(--shadow);
}

.news-module .allmode-img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.news-module .allmode-date {
  display: block;
  margin: 16px 18px 0;
  color: var(--sky-600);
  font-size: 0.84rem;
  font-weight: 800;
}

.news-module .allmode-title {
  margin: 8px 18px 0;
  color: var(--green-900);
  font-size: 1.08rem;
  line-height: 1.2;
}

.news-module .allmode-title a {
  color: var(--green-900);
}

.news-module .allmode-text {
  margin: 10px 18px 20px;
  color: var(--ink-700);
}

.city-links {
  padding: 58px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8f5 100%);
}

.city-links__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 30px;
  align-items: center;
}

.city-links nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.city-links nav a {
  min-height: 92px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(217, 229, 222, 0.88);
  border-radius: var(--radius);
  background: var(--paper);
  text-align: center;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(6, 41, 27, 0.045);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.city-links nav a:hover {
  color: #fff;
  background: var(--green-700);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
  text-decoration: none;
}

.home-contact {
  padding: 62px 0;
  background: #fff;
}

.home-contact__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.home-contact h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(1.6rem, 2.8vw, 2.7rem);
  line-height: 1.08;
}

.contact-card {
  min-height: 132px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(217, 229, 222, 0.88);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(6, 41, 27, 0.045);
}

.contact-card .icon {
  width: 30px;
  height: 30px;
  color: var(--green-700);
}

.contact-card strong,
.contact-card span {
  display: block;
}

.contact-card strong {
  color: var(--green-900);
  font-size: 1.06rem;
}

.contact-card span {
  margin-top: 6px;
  color: var(--ink-700);
}

a.contact-card:hover,
a.contact-card:focus {
  border-color: rgba(11, 111, 77, 0.35);
  background: #fff;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.social-feed {
  padding: 64px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8f5 100%);
}

.social-feed__embed {
  min-height: 220px;
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.social-feed__embed iframe,
.social-feed__embed blockquote,
.social-feed__embed .instagram-media {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
}

.social-feed__embed iframe {
  border: 0;
}

.social-feed__embed ul,
.social-feed__embed .social-feed-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-feed__embed li,
.social-feed__embed .social-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.social-feed__embed img {
  width: 100%;
  height: auto;
  display: block;
}

.home-extra {
  padding: 40px 0 64px;
}

.inner-layout {
  padding: 54px 0 84px;
  background:
    linear-gradient(180deg, #eef6f1 0%, #f8fbf9 34%, #ffffff 100%);
}

.inner-layout__grid {
  display: grid;
  gap: 36px;
  align-items: start;
}

.inner-layout__grid.has-sidebar {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.inner-content,
.inner-sidebar .moduletable,
.inner-sidebar .moduletable_menu,
.home-extra .moduletable {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.inner-content {
  min-width: 0;
  padding: clamp(30px, 3.2vw, 56px);
  color: #22352e;
  font-size: 1.04rem;
  line-height: 1.68;
}

.inner-content h1,
.inner-content h2,
.inner-content h3 {
  color: var(--green-900);
  line-height: 1.15;
}

.inner-content h1,
.inner-content .itemTitle {
  margin-top: 0;
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  letter-spacing: 0;
}

.inner-content h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
}

.inner-content p,
.inner-content .itemFullText,
.inner-content .itemIntroText {
  font-size: 1.06rem;
}

.inner-content a {
  color: var(--green-700);
  font-weight: 700;
}

.search-results {
  margin: 24px 0 0;
}

.search-results dt.result-title {
  margin: 30px 0 6px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--green-900);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.35;
}

.search-results dt.result-title:first-child {
  margin-top: 10px;
  padding-top: 0;
  border-top: 0;
}

.search-results dd {
  margin-left: 0;
}

.search-results .result-category {
  margin-bottom: 10px;
  color: var(--ink-500);
  font-size: 0.95rem;
}

.search-results .result-text {
  margin: 10px 0 10px;
  padding: 2px 0 2px 18px;
  border-left: 4px solid rgba(11, 111, 77, 0.24);
  color: #243832;
  font-size: 1.02rem;
  line-height: 1.78;
}

.search-results .result-text a {
  display: inline-flex;
  align-items: center;
  margin: 4px 5px 4px 0;
  padding: 3px 9px;
  border: 1px solid rgba(11, 111, 77, 0.18);
  border-radius: 999px;
  background: rgba(11, 111, 77, 0.07);
  color: var(--green-800);
  line-height: 1.35;
  text-decoration: none;
}

.search-results .result-text a:hover,
.search-results .result-text a:focus {
  border-color: rgba(11, 111, 77, 0.4);
  background: rgba(11, 111, 77, 0.12);
  text-decoration: underline;
}

.search-results .result-created {
  margin-top: 8px;
  color: var(--ink-500);
  font-size: 0.92rem;
}

.search-results .highlight {
  border-radius: 4px;
  background: #fff1a8;
  color: #1c2f29;
  font-weight: 800;
}

.pgcenter,
.inner-content .pgcenter {
  margin: 34px auto 10px;
  text-align: center;
}

.pgcenter .pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  align-items: center;
  margin: 0;
}

.pgcenter .pginline {
  display: inline-flex !important;
  gap: 8px;
  align-items: center;
  margin: 0 !important;
  color: var(--ink-500);
  font-size: 0.95rem;
}

.pgcenter .inputbox {
  min-height: 34px;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink-900);
}

#pg-pagination,
.sectiontablefooter#pg-pagination {
  display: block !important;
  width: 100%;
  margin: 8px 0 0 !important;
}

#pg-pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#pg-pagination li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#pg-pagination .pagenav {
  display: inline-flex;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: 1px solid rgba(11, 111, 77, 0.2);
  border-radius: 8px;
  background: rgba(11, 111, 77, 0.06);
  color: var(--green-800);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

#pg-pagination span.pagenav {
  border-color: rgba(36, 56, 50, 0.12);
  background: #f2f6f4;
  color: var(--ink-500);
  font-weight: 700;
}

#pg-pagination li:not(.pagination-start):not(.pagination-prev):not(.pagination-next):not(.pagination-end) span.pagenav {
  border-color: var(--green-700);
  background: var(--green-700);
  color: #fff;
}

#pg-pagination a.pagenav:hover,
#pg-pagination a.pagenav:focus {
  border-color: var(--green-700);
  background: var(--green-700);
  color: #fff;
}

.pgcenter .pagecounter {
  display: block !important;
  width: 100%;
  margin: 8px 0 0 !important;
  color: var(--ink-500);
  font-size: 0.95rem;
}

.pd-cb + div[style*="text-align: center"] {
  margin: 22px 0 0;
}

.inner-content img {
  height: auto;
  border-radius: var(--radius);
}

.inner-content .itemImageBlock,
.inner-content .itemImage {
  margin: 28px 0;
  text-align: center;
}

.inner-content .itemImageBlock img,
.inner-content .itemImage img {
  width: auto;
  max-width: 100%;
}

.inner-content .itemDateCreated,
.inner-content .itemAuthor,
.inner-content .itemRatingBlock,
.inner-content .itemToolbar,
.inner-content .itemCategory {
  color: var(--ink-500);
  font-size: 0.92rem;
}

.inner-content table {
  width: 100%;
  border-collapse: collapse;
}

.inner-content th,
.inner-content td {
  padding: 10px;
  border: 1px solid var(--line);
  text-align: left;
}

.inner-sidebar {
  display: grid;
  gap: 18px;
}

.inner-sidebar .moduletable,
.inner-sidebar .moduletable_menu,
.home-extra .moduletable {
  padding: 22px;
}

.inner-sidebar img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.inner-sidebar h3,
.home-extra h3 {
  margin: 0 0 16px;
  color: var(--green-900);
  font-size: 1.28rem;
}

.inner-sidebar ul,
.home-extra ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.inner-sidebar li + li,
.home-extra li + li {
  border-top: 1px solid var(--line);
}

.inner-sidebar li a,
.home-extra li a {
  display: block;
  padding: 12px 0;
  color: var(--green-800);
  font-weight: 800;
}

.inner-sidebar li a:hover,
.home-extra li a:hover {
  color: var(--green-600);
  text-decoration: none;
}

.breadcrumbs {
  margin: -6px 0 22px;
  color: var(--ink-500);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--green-700);
}

#system-message-container {
  width: min(1520px, calc(100% - 48px));
  margin: 18px auto 0;
}

#system-message {
  margin: 0;
}

#system-message dt {
  display: none;
}

#system-message dd {
  margin: 0 0 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.site-footer {
  padding: 56px 0;
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(135deg, #042719 0%, #053321 54%, #073d29 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.footer-logo {
  width: 220px;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1rem;
}

.site-footer p {
  margin: 0 0 8px;
  max-width: 360px;
}

.site-footer a {
  display: inline-flex;
  width: fit-content;
  margin: 0 10px 10px 0;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 700;
}

.site-footer a:hover,
.site-footer a:focus {
  border-color: var(--gold-500);
  color: var(--green-900);
  background: var(--gold-500);
  text-decoration: none;
}

/* High contrast mode */
body.is-contrast {
  color: #fff;
  background: #000;
}

body.is-contrast a,
body.is-contrast .view-all,
body.is-contrast .footer-links a,
body.is-contrast .search-results a {
  color: #ffff00;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

body.is-contrast .site-header,
body.is-contrast .topbar,
body.is-contrast .main-nav,
body.is-contrast .hero,
body.is-contrast .service-band,
body.is-contrast .transparency,
body.is-contrast .site-footer,
body.is-contrast .inner-layout,
body.is-contrast .home-command,
body.is-contrast .municipal-focus,
body.is-contrast .quick-access,
body.is-contrast .latest-news,
body.is-contrast .city-links,
body.is-contrast .home-contact,
body.is-contrast .social-feed,
body.is-contrast .home-extra {
  color: #fff;
  background: #000;
  box-shadow: none;
}

body.is-contrast .masthead,
body.is-contrast .main-nav__inner,
body.is-contrast .hero__content,
body.is-contrast .inner-content,
body.is-contrast .inner-sidebar,
body.is-contrast .home-command__intro,
body.is-contrast .edict-search,
body.is-contrast .home-command__cards,
body.is-contrast .quick-card,
body.is-contrast .service-list,
body.is-contrast .service-list li,
body.is-contrast .spotlight-card,
body.is-contrast .news-card,
body.is-contrast .city-links__inner,
body.is-contrast .contact-card,
body.is-contrast .focus-stat,
body.is-contrast .edict-panel,
body.is-contrast .social-feed__embed,
body.is-contrast .breadcrumbs,
body.is-contrast #system-message-container,
body.is-contrast .item-page,
body.is-contrast .blog,
body.is-contrast .items-leading,
body.is-contrast .category-list,
body.is-contrast .search,
body.is-contrast .search-results,
body.is-contrast .phocadownload,
body.is-contrast .pdfile,
body.is-contrast .pdcategory {
  color: #fff;
  background: #000;
  border-color: #fff;
  box-shadow: none;
}

body.is-contrast .hero::before,
body.is-contrast .hero::after {
  background: none;
}

body.is-contrast .hero-slider,
body.is-contrast .hero-slider img,
body.is-contrast .dj-slide,
body.is-contrast .dj-image {
  filter: none;
}

body.is-contrast h1,
body.is-contrast h2,
body.is-contrast h3,
body.is-contrast h4,
body.is-contrast h5,
body.is-contrast h6,
body.is-contrast p,
body.is-contrast li,
body.is-contrast span,
body.is-contrast strong,
body.is-contrast small,
body.is-contrast label,
body.is-contrast legend,
body.is-contrast .eyebrow,
body.is-contrast .section-heading p,
body.is-contrast .quick-card span,
body.is-contrast .news-card__date,
body.is-contrast .footer-brand p,
body.is-contrast .footer-contact p {
  color: #fff;
}

body.is-contrast .eyebrow,
body.is-contrast .focus-stat strong,
body.is-contrast .home-command__cards strong,
body.is-contrast .search-results .result-title a,
body.is-contrast .search-results dt a,
body.is-contrast .pdtitle,
body.is-contrast .pdtitle a {
  color: #ffff00;
}

body.is-contrast .site-search,
body.is-contrast .edict-search form,
body.is-contrast input,
body.is-contrast select,
body.is-contrast textarea,
body.is-contrast button {
  color: #fff;
  background: #000;
  border-color: #fff;
}

body.is-contrast input::placeholder,
body.is-contrast textarea::placeholder {
  color: #d8d8d8;
  opacity: 1;
}

body.is-contrast .site-search button,
body.is-contrast .primary-action,
body.is-contrast .secondary-action,
body.is-contrast .edict-search button,
body.is-contrast .text-button,
body.is-contrast .contrast-toggle,
body.is-contrast .menu-toggle,
body.is-contrast .pagenav,
body.is-contrast .pagination a,
body.is-contrast .pagination span,
body.is-contrast #pg-pagination a,
body.is-contrast #pg-pagination span,
body.is-contrast .search-results .result-text a {
  color: #000;
  background: #ffff00;
  border: 2px solid #ffff00;
  box-shadow: none;
}

body.is-contrast .main-nav a,
body.is-contrast .main-nav span.separator,
body.is-contrast .main-nav .nav-child a,
body.is-contrast .main-nav ul ul a {
  color: #ffff00;
  background: #000;
  border-color: #fff;
}

body.is-contrast .main-nav a:hover,
body.is-contrast .main-nav a:focus,
body.is-contrast .main-nav .active > a,
body.is-contrast .main-nav .current > a,
body.is-contrast .main-nav .active > span.separator,
body.is-contrast .main-nav .current > span.separator {
  color: #000;
  background: #ffff00;
  text-decoration: none;
}

body.is-contrast .main-nav span.separator::after,
body.is-contrast .quick-card::after,
body.is-contrast .news-card::after {
  background: #ffff00;
}

body.is-contrast .quick-card:hover,
body.is-contrast .news-card:hover,
body.is-contrast .spotlight-card:hover,
body.is-contrast .contact-card:hover {
  transform: none;
}

body.is-contrast .search-results .highlight {
  color: #000;
  background: #ffff00;
}

body.is-contrast :focus,
body.is-contrast :focus-visible {
  outline: 3px solid #ffff00;
  outline-offset: 3px;
}

body.is-contrast img {
  background: #fff;
}

[vw] {
  z-index: 1200;
}

@media (max-width: 900px) {
  .masthead {
    min-height: 82px;
    grid-template-columns: 1fr auto;
  }

  .site-search {
    grid-column: 1 / -1;
    order: 3;
    margin-bottom: 14px;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    display: none;
    box-shadow: 0 18px 35px rgba(5, 51, 33, 0.18);
    background: #063d29;
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav__inner {
    display: grid;
    gap: 8px;
    padding: 12px 0 16px;
  }

  .main-nav ul.menu {
    display: grid;
    width: 100%;
    gap: 8px;
  }

  .main-nav a,
  .main-nav span.separator {
    min-height: 50px;
    width: 100%;
    justify-content: flex-start;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
  }

  .main-nav a::after,
  .main-nav span.separator::after {
    left: 12px;
    right: auto;
    bottom: 8px;
    width: 42px;
    transform-origin: left;
  }

  .main-nav .nav-child,
  .main-nav ul ul {
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    min-width: 0;
    margin-top: 6px;
    padding: 6px;
    border: 0;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
  }

  .main-nav .nav-child a,
  .main-nav ul ul a {
    color: #fff;
    background: transparent;
  }

  body.menu-open .menu-toggle .menu-icon {
    display: none;
  }

  body.menu-open .menu-toggle .close-icon {
    display: block;
  }

  .quick-grid,
  .news-grid,
  .news-module ul,
  .news-module .k2ItemsBlock ul,
  .news-module ul.latestnews,
  .news-module .latestnews,
  .news-module .allmode-topbox,
  .social-feed__embed ul,
  .social-feed__embed .social-feed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-command__grid,
  .municipal-focus__inner,
  .edict-panel__grid,
  .home-contact__grid,
  .service-band__inner,
  .transparency__inner,
  .city-links__inner,
  .inner-layout__grid.has-sidebar {
    grid-template-columns: 1fr;
  }

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

  .home-contact__grid > div:first-child {
    grid-column: 1 / -1;
  }

  .city-links nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .container,
  #system-message-container {
    width: min(100% - 28px, 1520px);
  }

  .topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 8px 0;
  }

  .masthead {
    gap: 14px;
  }

  .brand img {
    width: 210px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .inner-layout {
    padding: 28px 0 54px;
  }

  .inner-content {
    padding: 22px;
    font-size: 1rem;
  }

  .inner-content h1,
  .inner-content .itemTitle {
    font-size: 2rem;
  }

  .hero {
    min-height: 520px;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .home-command {
    padding: 18px 0 28px;
  }

  .municipal-focus {
    padding: 4px 0 28px;
  }

  .home-command__intro,
  .edict-search,
  .home-command__cards,
  .contact-card {
    padding: 18px;
  }

  .edict-search > div {
    grid-template-columns: 1fr;
  }

  .edict-search button {
    min-height: 48px;
    justify-content: center;
  }

  .home-command__cards,
  .municipal-focus__inner,
  .edict-panel__chips {
    grid-template-columns: 1fr;
  }

  .quick-grid,
  .news-grid,
  .news-module ul,
  .news-module .k2ItemsBlock ul,
  .news-module ul.latestnews,
  .news-module .latestnews,
  .news-module .allmode-topbox,
  .social-feed__embed ul,
  .social-feed__embed .social-feed-grid,
  .spotlight-grid,
  .transparency-links,
  .edict-panel__chips,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-footer a {
    width: 100%;
    justify-content: center;
    margin-right: 0;
  }

  .section-heading--row {
    align-items: start;
    flex-direction: column;
  }

  .city-links nav {
    grid-template-columns: 1fr;
  }
}
