@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --otter-font-body: 'Space Grotesk', 'Segoe UI', sans-serif;
  --otter-font-display: 'Fraunces', Georgia, serif;
  --otter-container-xl: 94rem; /* broader desktop width, closer to OHDSI-style layouts */
  --otter-container-lg: 78rem;
  --otter-container-md: 60rem;
  --otter-container-sm: 36rem;
  --otter-card-radius: 1rem;

  --otter-bg: #e9f3ff;
  --otter-bg-alt: #f7fbff;
  --otter-surface: rgba(255, 255, 255, 0.86);
  --otter-surface-strong: rgba(255, 255, 255, 0.96);
  --otter-border: rgba(20, 58, 91, 0.14);
  --otter-text: #13253a;
  --otter-text-soft: #3a4f65;
  --otter-accent: #0f7fba;
  --otter-accent-strong: #055e90;
  --otter-link-accent: #d6a300;
  --otter-logo-color: #ffffff;
  --otter-chart-tooltip-bg: rgba(255, 255, 255, 0.96);
  --otter-chart-tooltip-border: rgba(15, 127, 186, 0.35);
  --otter-chart-tooltip-text: #13253a;
  --otter-shadow: 0 18px 38px rgba(6, 28, 47, 0.16);
  --otter-hero-glow: rgba(24, 149, 214, 0.22);
  --scrollbar-thumb: #efefef;
  --scrollbar-track: #ccc;
  --scrollbar-thumb-hover: #fff;
}

:root[data-theme='dark'] {
  --otter-bg: #05121e;
  --otter-bg-alt: #0a1d2f;
  --otter-surface: rgba(9, 30, 47, 0.8);
  --otter-surface-strong: rgba(8, 35, 55, 0.95);
  --otter-border: rgba(137, 195, 234, 0.25);
  --otter-text: #e7f4ff;
  --otter-text-soft: #b7d2e8;
  --otter-accent: #6ec8ff;
  --otter-accent-strong: #9ad9ff;
  --otter-link-accent: #ffd452;
  --otter-logo-color: #ffffff;
  --otter-chart-tooltip-bg: rgba(4, 17, 28, 0.94);
  --otter-chart-tooltip-border: rgba(151, 211, 250, 0.45);
  --otter-chart-tooltip-text: #f4fbff;
  --otter-shadow: 0 18px 38px rgba(2, 12, 20, 0.56);
  --otter-hero-glow: rgba(110, 200, 255, 0.2);
  --scrollbar-thumb: #284760;
  --scrollbar-track: #0c2132;
  --scrollbar-thumb-hover: #3a6482;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) {
    --otter-bg: #05121e;
    --otter-bg-alt: #0a1d2f;
    --otter-surface: rgba(9, 30, 47, 0.8);
    --otter-surface-strong: rgba(8, 35, 55, 0.95);
    --otter-border: rgba(137, 195, 234, 0.25);
    --otter-text: #e7f4ff;
    --otter-text-soft: #b7d2e8;
    --otter-accent: #6ec8ff;
    --otter-accent-strong: #9ad9ff;
    --otter-link-accent: #ffd452;
    --otter-logo-color: #ffffff;
    --otter-chart-tooltip-bg: rgba(4, 17, 28, 0.94);
    --otter-chart-tooltip-border: rgba(151, 211, 250, 0.45);
    --otter-chart-tooltip-text: #f4fbff;
    --otter-shadow: 0 18px 38px rgba(2, 12, 20, 0.56);
    --otter-hero-glow: rgba(110, 200, 255, 0.2);
    --scrollbar-thumb: #284760;
    --scrollbar-track: #0c2132;
    --scrollbar-thumb-hover: #3a6482;
  }
}

* {
  box-sizing: border-box;
}

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

html,
body {
  min-height: 100%;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 25px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
}

body.site,
body.otter-theme,
body.contentpane {
  margin: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
  min-height: 100dvh;
  overflow-x: hidden;
  font-family: var(--otter-font-body);
  color: var(--otter-text);
  background:
    radial-gradient(circle at 12% 14%, rgba(96, 196, 255, 0.35), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(47, 145, 207, 0.28), transparent 34%),
    linear-gradient(140deg, var(--otter-bg) 0%, var(--otter-bg-alt) 100%);
  background-attachment: fixed;
  line-height: 1.7;
}

body.site::before,
body.otter-theme::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.24)),
    url('https://leodenotter.eu/images/yosemite.jpg') center center / cover no-repeat;
  opacity: 1;
  filter: saturate(0.95) contrast(1.02) brightness(1.06);
  transform: translateZ(0);
}

body.site::after,
body.otter-theme::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 14%, rgba(96, 196, 255, 0.18), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(47, 145, 207, 0.12), transparent 34%),
    linear-gradient(140deg, rgba(233, 243, 255, 0.82), rgba(247, 251, 255, 0.78));
}

:root[data-theme='dark'] body.site::after,
:root[data-theme='dark'] body.otter-theme::after {
  background:
    radial-gradient(circle at 12% 14%, rgba(96, 196, 255, 0.12), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(47, 145, 207, 0.1), transparent 34%),
    linear-gradient(140deg, rgba(5, 18, 30, 0.9), rgba(10, 29, 47, 0.86));
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected).site::after,
  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected).otter-theme::after {
    background:
      radial-gradient(circle at 12% 14%, rgba(96, 196, 255, 0.12), transparent 30%),
      radial-gradient(circle at 86% 18%, rgba(47, 145, 207, 0.1), transparent 34%),
      linear-gradient(140deg, rgba(5, 18, 30, 0.9), rgba(10, 29, 47, 0.86));
  }
}

body.contentpane {
  background:
    radial-gradient(circle at 12% 14%, rgba(96, 196, 255, 0.24), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(47, 145, 207, 0.18), transparent 34%),
    linear-gradient(140deg, var(--otter-bg) 0%, var(--otter-bg-alt) 100%);
  background-attachment: fixed;
}

a {
  color: var(--otter-accent);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--otter-accent-strong);
  text-decoration: underline;
}

.otter-content p a,
.otter-content li a,
.otter-content td a,
.otter-content figcaption a,
.otter-sidebar p a,
.otter-sidebar li a,
.otter-footer p a,
.otter-footer li a {
  color: inherit;
  text-decoration: none;
  background-image:
    linear-gradient(var(--otter-link-accent), var(--otter-link-accent)),
    linear-gradient(color-mix(in srgb, var(--otter-link-accent) 38%, transparent), color-mix(in srgb, var(--otter-link-accent) 38%, transparent));
  background-repeat: no-repeat;
  background-position: 0 100%, 0 100%;
  background-size: 0 2px, 100% 1px;
  transition: color 0.22s ease, background-size 0.26s ease, text-shadow 0.22s ease;
}

.otter-content p a:hover,
.otter-content p a:focus-visible,
.otter-content li a:hover,
.otter-content li a:focus-visible,
.otter-content td a:hover,
.otter-content td a:focus-visible,
.otter-content figcaption a:hover,
.otter-content figcaption a:focus-visible,
.otter-sidebar p a:hover,
.otter-sidebar p a:focus-visible,
.otter-sidebar li a:hover,
.otter-sidebar li a:focus-visible,
.otter-footer p a:hover,  
.otter-footer p a:focus-visible,
.otter-footer li a:hover,
.otter-footer li a:focus-visible {
  color: var(--otter-link-accent);
  text-decoration: none;
  background-size: 100% 2px, 100% 1px;
  text-shadow: 0 0 0.45rem color-mix(in srgb, var(--otter-link-accent) 18%, transparent);
}

.otter-content #tblNieuws td a {
  background-image: none !important;
}

.otter-content #tblNieuws td a img {
  transform: translateY(0) scale(1);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.otter-content #tblNieuws td a img:hover,
.otter-content #tblNieuws td a img:focus-visible { 
  transform: translateY(0px) scale(1.25) !important;
  box-shadow: 0px 0px 20px 5px #00acff33;
}

h1,
h2,
h3,
h4,
h5,
h6,
.page-header {
  font-family: var(--otter-font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--otter-text);
  font-size: larger;
}

.otter-skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--otter-accent);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0.6rem;
  z-index: 3000;
}

.otter-skip-link:focus {
  top: 1rem;
}

.otter-container {
  width: min(var(--otter-container-xl), calc(100% - 2rem));
  margin-inline: auto;
}

.otter-header-shell {
  width: min(var(--otter-container-xl), calc(100% - 2rem));
  margin-inline: auto;
}

.otter-site-header {
  position: relative;
  z-index: 1200;
  background:
    radial-gradient(circle at 14% 0%, rgba(105, 208, 255, 0.18), transparent 34%),
    radial-gradient(circle at 74% 16%, rgba(126, 212, 255, 0.09), transparent 42%),
    linear-gradient(112deg, rgba(6, 37, 63, 0.97), rgba(7, 51, 84, 0.88));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(168, 224, 255, 0.22);
  box-shadow: 0 10px 30px rgba(0, 17, 31, 0.28), inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.otter-site-header.is-sticky {
  position: sticky;
  top: 0;
}

:root[data-theme='light'] .otter-site-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.96));
  border-bottom: 1px solid rgba(18, 44, 72, 0.12);
  box-shadow: 0 8px 22px rgba(10, 34, 58, 0.08);
  backdrop-filter: blur(10px);
}

:root[data-theme='light'] .otter-brand {
  color: #102a45;
}

:root[data-theme='light'] .otter-brand:hover,
:root[data-theme='light'] .otter-brand:focus-visible {
  color: #0b2138;
}

:root[data-theme='light'] .otter-brand-logo {
  background-color: #0f2f4f;
}

:root[data-theme='light'] .otter-brand-tagline {
  color: #3f5f7c;
}

:root[data-theme='light'] .otter-nav-shell {
  border-top: 1px solid rgba(18, 44, 72, 0.1);
}

:root[data-theme='light'] .otter-nav-panel .mod-menu > li > a,
:root[data-theme='light'] .otter-nav-panel .mod-menu > li > .separator,
:root[data-theme='light'] .otter-nav-panel .mod-menu > li > .nav-header {
  color: #1f3e5d;
}

:root[data-theme='light'] .otter-nav-panel .mod-menu > li > a:hover,
:root[data-theme='light'] .otter-nav-panel .mod-menu > li > a:focus-visible,
:root[data-theme='light'] .otter-nav-panel .mod-menu > li.active > a,
:root[data-theme='light'] .otter-nav-panel .mod-menu > li.current > a {
  color: #0b2a42;
  background: linear-gradient(180deg, rgba(15, 127, 186, 0.12), rgba(15, 127, 186, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

:root[data-theme='light'] .otter-theme-toggle {
  border-left-color: rgb(151 222 254);
  color: #1e4468;
  background: rgb(0 0 0 / 0%);
}

:root[data-theme='light'] .otter-menu-toggle {
  border-color: rgba(18, 74, 116, 0.24);
  background: rgba(15, 127, 186, 0.08);
  color: #1e4468;
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-site-header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.96));
    border-bottom: 1px solid rgba(18, 44, 72, 0.12);
    box-shadow: 0 8px 22px rgba(10, 34, 58, 0.08);
    backdrop-filter: blur(10px);
  }

  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-brand {
    color: #102a45;
  }

  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-brand:hover,
  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-brand:focus-visible {
    color: #0b2138;
  }

  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-brand-logo {
    background-color: #0f2f4f;
  }

  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-brand-tagline {
    color: #3f5f7c;
  }

  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-shell {
    border-top: 1px solid rgba(18, 44, 72, 0.1);
  }

  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-panel .mod-menu > li > a,
  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-panel .mod-menu > li > .separator,
  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-panel .mod-menu > li > .nav-header {
    color: #1f3e5d;
  }

  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-panel .mod-menu > li > a:hover,
  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-panel .mod-menu > li > a:focus-visible,
  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-panel .mod-menu > li.active > a,
  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-panel .mod-menu > li.current > a {
    color: #0b2a42;
    background: linear-gradient(180deg, rgba(15, 127, 186, 0.12), rgba(15, 127, 186, 0.04));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
  }

  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-theme-toggle {
    border-left-color: rgba(18, 74, 116, 0.28);
    color: #1e4468;
    background: rgba(15, 127, 186, 0.08);
  }

  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-menu-toggle {
    border-color: rgba(18, 74, 116, 0.24);
    background: rgba(15, 127, 186, 0.08);
    color: #1e4468;
  }
}

.otter-header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
  padding: 0.75rem 0 0.7rem;
}

.otter-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  color: #f2fbff;
  text-decoration: none;
}

.otter-brand:hover,
.otter-brand:focus-visible {
  color: #ffffff;
  text-decoration: none;
}

.otter-brand-mark {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: var(--otter-font-display);
  font-size: 1.28rem;
  background: linear-gradient(140deg, #59c7ff, #2b91cf);
  color: #06233a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35), 0 10px 20px rgba(20, 139, 205, 0.35);
}

.otter-brand img {
  width: 2.45rem;
  height: 2.45rem;
  object-fit: contain;
  border-radius: 999px;
  background: transparent;
  box-shadow: 0 6px 14px rgba(7, 30, 50, 0.3);
}

.otter-brand-logo {
  width: 5rem;
  height: 2.45rem;
  flex: 0 0 auto;
  display: inline-block;
  background-color: var(--otter-logo-color);
  -webkit-mask: url('/weer/otter.png') center / contain no-repeat;
  mask: url('/weer/otter.png') center / contain no-repeat;
  -webkit-mask-mode: luminance;
  mask-mode: luminance;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.otter-footer .otter-brand-logo {
  background: url(/templates/otter_theme/otter-1254x1254.png) center / contain no-repeat !important;
  mask: none !important;
  height: 3.45rem !important; 
}

.otter-brand-text {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.otter-brand-title {
  font-family: var(--otter-font-display);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.otter-brand-tagline {
  font-size: 0.8rem;
  color: rgba(235, 248, 255, 0.86);
}

.otter-header-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.55rem;
}

.otter-nav-shell {
  width: min(var(--otter-container-xl), calc(100% - 2rem));
  margin-inline: auto;
  position: relative;
  border-top: 1px solid rgba(173, 223, 251, 0.2);
  min-height: 3.45rem;
}

.otter-nav-panel {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 3.45rem;
  padding: 0;
}

.otter-nav-panel .mod-menu,
.otter-nav-panel .mod-menu ul,
.otter-nav-panel .mod-menu__sub {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

.otter-nav-panel .mod-menu li,
.otter-nav-panel .mod-menu__sub li {
  list-style: none;
  list-style-type: none;
}

.otter-nav-panel .mod-menu li::marker,
.otter-nav-panel .mod-menu__sub li::marker {
  content: '';
}

.otter-nav-panel .mod-menu {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.2rem;
  min-height: 3.45rem;
}

.otter-nav-panel .mod-menu > li {
  position: relative;
  margin: 0;
  padding-bottom: 0;
  border-radius: 0;
  overflow: visible;
}

@media (min-width: 62rem) {
  .otter-nav-panel .mod-menu > li:has(> .mod-menu__sub)::before {
    content: '';
    position: absolute;
    left: 0;
    top: calc(100% - 1px);
    width: max(100%, 15.5rem);
    height: 1rem;
    z-index: 2199;
  }
}

.otter-submenu-toggle {
  display: none;
}

.otter-nav-panel .mod-menu button[class*='toggle-sub'],
.otter-nav-panel .mod-menu button[aria-expanded][class*='menu'] {
  display: none !important;
}

.otter-nav-panel .mod-menu > li > a,
.otter-nav-panel .mod-menu > li > .separator,
.otter-nav-panel .mod-menu > li > .nav-header {
  display: inline-flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 0;
  padding: 0 1.05rem;
  color: rgba(237, 249, 255, 0.9);
  font-size: 0.97rem;
  font-weight: 500;
  line-height: 1;
  min-height: 3.45rem;
  border-top: 0;
  border-bottom: 0;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.otter-nav-panel .mod-menu > li > a::before,
.otter-nav-panel .mod-menu > li > .separator::before,
.otter-nav-panel .mod-menu > li > .nav-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 12%,
    rgba(255, 255, 255, 0.26) 32%,
    rgba(126, 212, 255, 0.12) 48%,
    rgba(255, 255, 255, 0) 62%
  );
  transform: translateX(-135%);
  transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.otter-nav-panel .mod-menu__sub a::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 16%,
    rgba(255, 255, 255, 0.12) 34%,
    rgba(126, 212, 255, 0.05) 48%,
    rgba(255, 255, 255, 0) 64%
  );
  transform: translateX(-125%);
  transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.otter-nav-panel .mod-menu > li > a::after,
.otter-nav-panel .mod-menu > li > .separator::after,
.otter-nav-panel .mod-menu > li > .nav-header::after {
  content: '';
  position: absolute;
  left: 0rem;
  right: 0rem;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(94, 198, 247, 0.7), rgba(151, 224, 255, 0.95));
  transform: scaleX(0.45);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.otter-nav-panel .mod-menu > li > a:hover,
.otter-nav-panel .mod-menu > li > a:focus-visible {
  color: #fff;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(122, 210, 255, 0.08), rgba(122, 210, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.otter-nav-panel .mod-menu > li > a:hover::before,
.otter-nav-panel .mod-menu > li > a:focus-visible::before,
.otter-nav-panel .mod-menu > li > .separator:hover::before,
.otter-nav-panel .mod-menu > li > .separator:focus-visible::before,
.otter-nav-panel .mod-menu > li > .nav-header:hover::before,
.otter-nav-panel .mod-menu > li > .nav-header:focus-visible::before,
.otter-nav-panel .mod-menu__sub a:hover::before,
.otter-nav-panel .mod-menu__sub a:focus-visible::before {
  transform: translateX(135%);
}

.otter-nav-panel .mod-menu > li > a:hover::after,
.otter-nav-panel .mod-menu > li > a:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.otter-nav-panel .mod-menu > li.active > a,
.otter-nav-panel .mod-menu > li.current > a {
  color: #fff;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(118, 205, 248, 0.12), rgba(118, 205, 248, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.otter-nav-panel .mod-menu > li.active > a::after,
.otter-nav-panel .mod-menu > li.current > a::after {
  transform: scaleX(1);
  opacity: 1;
}

.otter-nav-panel .mod-menu__sub {
  position: absolute;
  left: 0;
  top: calc(100% - 1px);
  min-width: 15.5rem;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: rgba(6, 32, 53, 0.985);
  border: 0;
  border-top: 0;
  box-shadow:
    0 26px 48px rgba(0, 7, 14, 0.58),
    0 10px 22px rgba(0, 0, 0, 0.32);
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.25rem);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0s linear 0.3s;
  z-index: 2200;
}

.otter-nav-panel .mod-menu__sub::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -0.7rem;
  height: 0.8rem;
}

.otter-nav-panel .mod-menu__sub a {
  display: block;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #e4f6ff;
  border-radius: 0;
  padding: 0.75rem 0.9rem;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.otter-nav-panel .mod-menu__sub a:hover,
.otter-nav-panel .mod-menu__sub a:focus-visible {
  background: rgba(130, 216, 255, 0.2);
  text-decoration: none;
}

.otter-nav-panel .mod-menu > li:hover > .mod-menu__sub,
.otter-nav-panel .mod-menu > li:focus-within > .mod-menu__sub,
.otter-nav-panel .mod-menu > li.is-open > .mod-menu__sub {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.otter-nav-panel .mod-menu__toggle-sub {
  display: none !important;
}

.otter-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(211, 245, 255, 0.35);
  background: rgba(13, 53, 84, 0.42);
  color: #fff;
  margin-left: 0;
}

.otter-menu-toggle-lines,
.otter-menu-toggle-lines::before,
.otter-menu-toggle-lines::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  position: relative;
  transition: transform 0.2s ease;
}

.otter-menu-toggle-lines::before,
.otter-menu-toggle-lines::after {
  content: '';
  position: absolute;
  left: 0;
}

.otter-menu-toggle-lines::before {
  transform: translateY(-6px);
}

.otter-menu-toggle-lines::after {
  transform: translateY(6px);
}

body.otter-nav-open .otter-menu-toggle-lines {
  background: transparent;
}

body.otter-nav-open .otter-menu-toggle-lines::before {
  transform: rotate(45deg);
}

body.otter-nav-open .otter-menu-toggle-lines::after {
  transform: rotate(-45deg);
}

.otter-theme-toggle {
  display: inline-flex;
  width: auto;
  min-width: 0;
  align-items: center;
  gap: 0.38rem;
  border: 0px;
  border-left: 2px solid rgba(126, 212, 255, 0.72);
  background: rgba(10, 48, 76, 0.26);
  color: rgba(236, 250, 255, 0.95);
  border-radius: 0;
  padding: 0.44rem 0.62rem;
  font: inherit;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: none;
}

.otter-theme-toggle-inline {
  display: inline-flex;
}

.otter-theme-toggle:hover,
.otter-theme-toggle:focus-visible {
  background: rgba(126, 212, 255, 0.12);
  border-color: rgba(188, 238, 255, 0.4);
}

.otter-theme-toggle-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 1.15rem;
  display: inline-block;
  background-color: currentColor;
  -webkit-mask: url('../images/theme-moon.svg') center / contain no-repeat;
  mask: url('../images/theme-moon.svg') center / contain no-repeat;
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
}

.otter-theme-toggle[data-theme='dark'] .otter-theme-toggle-icon {
  -webkit-mask-image: url(../images/theme-sun.svg);
  mask-image: url(../images/theme-sun.svg);
  color: var(--otter-link-accent);
}

.otter-topbar,
.otter-precontent,
.otter-postcontent {
  margin-top: 1rem;
}

.otter-hero {
  margin-top: 1.15rem;
  display: grid;
  gap: 1rem;
}

.otter-hero-main,
.otter-hero-banner,
.otter-component-wrap,
.card,
.moduletable,
.otter-sidebar .card,
.otter-sidebar .moduletable {
  border-radius: var(--otter-card-radius);
  border: 1px solid var(--otter-border);
  background: var(--otter-surface);
  box-shadow: var(--otter-shadow);
  backdrop-filter: blur(6px);
}

.otter-hero-main,
.otter-hero-banner {
  padding: 0.35rem;
  position: relative;
  overflow: hidden;
  background: var(--otter-surface);
  border: 1px solid var(--otter-border);
  box-shadow: var(--otter-shadow);
  backdrop-filter: blur(6px);
}

.otter-hero-main > section::before {
  content: '';
  position: absolute;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(45deg, rgb(0 50 93) 0%, rgb(0 55 103 / 69%) 5%, rgb(15 47 79 / 0%) 25%, rgb(255 255 255 / 0%) 25%, #00000000 35%);
  width: 100%;
}

.otter-hero-main > section::after {
  content: '';
  position: absolute;
  left: clamp(0.95rem, 5rem, 1.5rem);
  bottom: clamp(0.55rem, 5rem, 2rem);
  width: min(24rem, 55vw);
  aspect-ratio: 1844 / 742;
  background: url(/images/watermark-large.png) left bottom / contain no-repeat;
  opacity: 1;
  z-index: 3;
  pointer-events: none;
  filter: invert(1);
  transform: scale(1.5);
}

:root[data-theme='dark'] .otter-hero-main::after {
  opacity: 0.48;
}

@media (max-width: 62rem) {
  .otter-hero-main > section::before,
  .otter-hero-main > section::after {
    /* display: none !important;
    content: none !important; */
  }

  .jf_pagination {
    display: none !important;
  }

  .otter-hero-main::before {
    right: 24%;
    height: clamp(2.8rem, 12vw, 4.8rem);
  }

  .otter-hero-main::after {
    width: min(16rem, 56vw);
    bottom: clamp(0.48rem, 1.8vw, 0.9rem);
    opacity: 0.37;
  }

  :root[data-theme='dark'] .otter-hero-main::after {
    opacity: 0.42;
  }
}

.otter-hero-main > *,
.otter-hero-banner > * {
  border-radius: inherit;
  overflow: hidden;
  background: transparent !important;
  box-shadow: none !important;
}

.otter-hero .moduletable {
  border: 0;
  border-radius: inherit;
  box-shadow: none;
  background: transparent;
  overflow: hidden;
}

.otter-hero .jf_ss_default,
.otter-hero .jf_ss {
  aspect-ratio: 2172 / 724;
  border-radius: inherit;
  contain: paint;
  height: auto !important;
  isolation: isolate;
  max-height: 288px;
  overflow: hidden;
  transform: translateZ(0);
  width: 100% !important;
}

.otter-hero .jf_ss .slide {
  border-radius: inherit;
  contain: paint;
  isolation: isolate;
  overflow: hidden;
  backface-visibility: hidden;
}

.otter-hero .jf_ss .slide > .backstretch {
  inset: 0 !important;
  border-radius: inherit;
  overflow: hidden !important;
  pointer-events: none;
  z-index: 0 !important;
}

.otter-hero .jf_ss .slide > .backstretch img {
  border-radius: 0 !important;
  top: 50% !important;
  left: 0 !important;
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
  transform: translateY(-50%) !important;
  z-index: 0 !important;
}

.otter-hero .jf_ss .caption,
.otter-hero .jf_ss nav,
.otter-hero .jf_pagination {
  position: absolute;
  z-index: 2;
}

.otter-hero .jf_pagination {
  bottom: 1rem;
}

.otter-hero img,
.otter-hero picture,
.otter-hero picture > img,
.otter-hero canvas,
.otter-hero video,
.otter-hero iframe,
.otter-hero .moduletable > *,
.otter-hero .moduletable > * > *,
.otter-hero [class*='slider'],
.otter-hero [id*='slider'],
.otter-hero [class*='slideshow'],
.otter-hero [id*='slideshow'],
.otter-hero [class*='carousel'],
.otter-hero [id*='carousel'],
.otter-hero [class*='slide'],
.otter-hero [class*='slide'] > * {
  border-radius: inherit;
  background: transparent !important;
}

.otter-hero img {
  display: block;
  width: 100%;
}

.otter-layout {
  margin-top: 1.15rem;
  display: grid;
  gap: 1rem;
  align-items: start;
  grid-template-columns: minmax(0, 1fr);
  flex: 1 0 auto;
}

.otter-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.otter-component-wrap,
.otter-breadcrumbs,
.otter-main-top,
.otter-main-bottom {
  margin-bottom: 1.15rem;
}

.otter-component-wrap {
  padding: clamp(0.8rem, 1.8vw, 1.4rem);
  flex: 1 0 auto;
}

.otter-component-wrap > *:last-child {
  margin-bottom: 0;
}

.otter-breadcrumbs {
  --otter-home-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M3 10.6 12 3l9 7.6V21a1 1 0 0 1-1 1h-5.5v-6.5h-5V22H4a1 1 0 0 1-1-1V10.6z'/%3E%3C/svg%3E");
  display: flex;
  align-items: center;
  padding: 0.72rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid var(--otter-border);
  background: color-mix(in srgb, var(--otter-surface-strong) 88%, transparent);
  box-shadow: 0 0.8rem 1.8rem rgba(6, 28, 47, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

:root[data-theme='dark'] .otter-breadcrumbs {
  background: linear-gradient(180deg, rgba(6, 33, 55, 0.88), rgba(4, 26, 45, 0.86));
  border-color: rgba(93, 169, 223, 0.24);
  box-shadow: 0 0.75rem 1.55rem rgba(2, 12, 22, 0.24);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-breadcrumbs {
    background: linear-gradient(180deg, rgba(6, 33, 55, 0.88), rgba(4, 26, 45, 0.86));
    border-color: rgba(93, 169, 223, 0.24);
    box-shadow: 0 0.75rem 1.55rem rgba(2, 12, 22, 0.24);
  }
}

.otter-breadcrumbs .mod-breadcrumbs__wrapper {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
}

.otter-breadcrumbs ol,
.otter-breadcrumbs ul,
.otter-breadcrumbs .breadcrumb {
  margin: 0;
  padding: 0 !important;
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.45rem;
  min-height: 1.55rem;
  min-width: 0;
  overflow: hidden;
}

.otter-breadcrumbs li,
.otter-breadcrumbs .breadcrumb-item {
  list-style: none;
  margin: 0;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  line-height: 1.2;
  font-weight: 600;
  color: var(--otter-text-soft);
  min-width: 0;
}

.otter-breadcrumbs li + li::before,
.otter-breadcrumbs .breadcrumb-item + .breadcrumb-item::before {
  content: '>';
  display: inline-block;
  width: auto;
  height: auto;
  margin: 0 0.35rem 0 0.15rem;
  border: 0;
  transform: none;
  color: color-mix(in srgb, var(--otter-text-soft) 78%, transparent);
  opacity: 0.72;
  font-weight: 700;
  line-height: 1;
}

.otter-breadcrumbs .mod-breadcrumbs__divider,
.otter-breadcrumbs .divider.icon-location,
.otter-breadcrumbs .divider {
  display: none !important;
}

.otter-breadcrumbs .mod-breadcrumbs__item::before {
  content: none !important;
}

.otter-breadcrumbs .mod-breadcrumbs__item + .mod-breadcrumbs__item::before {
  content: '>' !important;
  display: inline-block;
  width: auto;
  height: auto;
  margin: 0 0.35rem 0 0.15rem;
  border: 0;
  transform: none;
  color: color-mix(in srgb, var(--otter-text-soft) 78%, transparent);
  opacity: 0.72;
  font-weight: 700;
  line-height: 1;
}

.otter-breadcrumbs a,
.otter-breadcrumbs a:hover,
.otter-breadcrumbs a:focus-visible {
  text-decoration: none !important;
  background-image: none !important;
  text-shadow: none !important;
}

.otter-breadcrumbs a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--otter-text);
  transition: color 180ms ease;
}

.otter-breadcrumbs a:hover,
.otter-breadcrumbs a:focus-visible {
  color: var(--otter-accent);
}

.otter-breadcrumbs .active,
.otter-breadcrumbs [aria-current='page'] {
  color: var(--otter-accent);
}

.otter-breadcrumbs li:last-child,
.otter-breadcrumbs .breadcrumb-item:last-child,
.otter-breadcrumbs .mod-breadcrumbs__item:last-child {
  flex: 1 1 auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.otter-breadcrumbs li:last-child > *,
.otter-breadcrumbs .breadcrumb-item:last-child > *,
.otter-breadcrumbs .mod-breadcrumbs__item:last-child > * {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.otter-breadcrumbs .mod-breadcrumbs__divider + .mod-breadcrumbs__item a::before,
.otter-breadcrumbs .breadcrumb-item:first-child a::before {
  content: '';
  width: 1.02rem;
  height: 1.02rem;
  display: inline-block;
  flex: 0 0 auto;
  background: currentColor;
  mask: var(--otter-home-icon) center / contain no-repeat;
  -webkit-mask: var(--otter-home-icon) center / contain no-repeat;
  opacity: 0.72;
}

.otter-sidebar {
  min-width: 0;
}

.otter-sidebar .card,
.otter-sidebar .moduletable {
  margin-bottom: 1rem;
}

.moduletable,
.card {
  padding: 0.9rem;
}

.moduletable > :first-child,
.card > :first-child {
  margin-top: 0;
}

.moduletable > :last-child,
.card > :last-child {
  margin-bottom: 0;
}

.moduletable h3,
.card h3,
.moduletable .module-title,
.card .module-title {
  margin-bottom: 0.7rem;
  font-family: var(--otter-font-display);
  font-size: 1.22rem;
}

.otter-footer {
  margin-top: clamp(1.5rem, 2.2vw, 2.5rem);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid var(--otter-border);
  background: linear-gradient(180deg, rgba(7, 34, 54, 0.9), rgba(5, 21, 34, 0.96));
  color: #e6f5ff;
}

.otter-footer::before {
  content: '';
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  bottom: -3.5rem;
  width: clamp(12rem, 18vw, 18rem);
  height: clamp(12rem, 18vw, 18rem);
  pointer-events: none;
  z-index: 0;
  opacity: 0.28;
  background:
    radial-gradient(circle, rgba(110, 200, 255, 0.22) 0%, rgba(110, 200, 255, 0.08) 38%, transparent 72%);
  filter: blur(8px);
}

.otter-footer .otter-container::before {
  content: '';
  position: absolute;
  right: clamp(1.75rem, 10vw, 8.25rem);
  left: auto;
  top: auto;
  width: clamp(7rem, 9vw, 6.25rem);
  aspect-ratio: 2 / 1;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  background-color: #ffffff;
  -webkit-mask: url('../images/otter-watermark.png') center / contain no-repeat;
  mask: url('../images/otter-watermark.png') center / contain no-repeat;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.25));
  transform: scaleX(-1) rotate(0deg);
  transform-origin: bottom center;
  max-height: 75%;
}

.otter-footer .otter-container {
  position: relative;
  z-index: 1;
  padding: 1rem 0;
  text-align: center;
  text-shadow: 1px 1px 3px #000;
}

.otter-footer a {
  color: #8ed8ff;
}

/* Dark header tuning to match the deeper navy look */
:root[data-theme='dark'] .otter-site-header {
  background:
    radial-gradient(circle at 12% 0%, rgba(26, 129, 220, 0.14), transparent 36%),
    radial-gradient(circle at 88% 16%, rgba(0, 112, 198, 0.1), transparent 40%),
    linear-gradient(180deg, rgba(2, 12, 23, 0.98), rgba(2, 18, 34, 0.96));
  border-bottom: 1px solid rgba(82, 162, 221, 0.2);
  box-shadow: 0 14px 30px rgba(1, 8, 16, 0.52), inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}

:root[data-theme='dark'] .otter-nav-shell {
  border-top: 1px solid rgba(82, 162, 221, 0.14);
}

:root[data-theme='dark'] .otter-nav-panel .mod-menu > li > a,
:root[data-theme='dark'] .otter-nav-panel .mod-menu > li > .separator,
:root[data-theme='dark'] .otter-nav-panel .mod-menu > li > .nav-header {
  color: rgba(236, 248, 255, 0.94);
}

:root[data-theme='dark'] .otter-nav-panel .mod-menu > li > a:hover,
:root[data-theme='dark'] .otter-nav-panel .mod-menu > li > a:focus-visible,
:root[data-theme='dark'] .otter-nav-panel .mod-menu > li.active > a,
:root[data-theme='dark'] .otter-nav-panel .mod-menu > li.current > a {
  color: #9ad9ff;
  background: linear-gradient(180deg, rgba(80, 173, 231, 0.14), rgba(80, 173, 231, 0.03));
}

:root[data-theme='dark'] .otter-theme-toggle,
:root[data-theme='dark'] .otter-menu-toggle {
  background: rgba(7, 29, 49, 0.56);
  border-left-color: rgba(98, 186, 242, 0.52);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-site-header {
    background:
      radial-gradient(circle at 12% 0%, rgba(26, 129, 220, 0.14), transparent 36%),
      radial-gradient(circle at 88% 16%, rgba(0, 112, 198, 0.1), transparent 40%),
      linear-gradient(180deg, rgba(2, 12, 23, 0.98), rgba(2, 18, 34, 0.96));
    border-bottom: 1px solid rgba(82, 162, 221, 0.2);
    box-shadow: 0 14px 30px rgba(1, 8, 16, 0.52), inset 0 -1px 0 rgba(255, 255, 255, 0.03);
  }

  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-shell {
    border-top: 1px solid rgba(82, 162, 221, 0.14);
  }

  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-panel .mod-menu > li > a,
  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-panel .mod-menu > li > .separator,
  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-panel .mod-menu > li > .nav-header {
    color: rgba(236, 248, 255, 0.94);
  }

  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-panel .mod-menu > li > a:hover,
  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-panel .mod-menu > li > a:focus-visible,
  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-panel .mod-menu > li.active > a,
  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-panel .mod-menu > li.current > a {
    color: #9ad9ff;
    background: linear-gradient(180deg, rgba(80, 173, 231, 0.14), rgba(80, 173, 231, 0.03));
  }

  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-theme-toggle {
    background: rgba(7, 29, 49, 0.56);
    border-left-color: rgba(98, 186, 242, 0.52);
  }
}

:root[data-theme='light'] .otter-footer {
  border-top: 1px solid rgba(18, 44, 72, 0.12);
  background: linear-gradient(180deg, rgba(246, 250, 255, 0.98), rgba(237, 244, 251, 0.98));
  color: #2a4563;
  text-shadow: none;
}

:root[data-theme='light'] .otter-footer::before,
:root[data-theme='light'] .otter-footer .otter-container::before {
  display: none;
}

:root[data-theme='light'] .otter-footer .otter-container {
  text-shadow: none;
  text-align: left;
  padding: 0;
}

.otter-footer .otter-container::before {
  display: none;
}

.otter-footer-main {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 2rem;
  padding: 1.9rem 0 1.5rem;
}

.otter-footer-col {
  min-width: 0;
}

.otter-footer-col + .otter-footer-col {
  border-left: 1px solid rgba(95, 131, 162, 0.24);
  padding-left: 2rem;
}

.otter-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.otter-footer-brand-text {
  display: grid;
  gap: 0.18rem;
}

.otter-footer-brand-title {
  font-family: var(--otter-font-display);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.1;
}

.otter-footer-brand-tagline {
  font-size: 0.92rem;
  opacity: 0.9;
}

.otter-footer-description {
  margin: 1rem 0 0;
  max-width: 26ch;
  font-size: 1rem;
}

.otter-footer-title {
  margin: 0 0 0.95rem;
  font-size: 1.75rem;
  line-height: 1.1;
}

.otter-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.otter-footer-links li {
  margin: 0;
}

.otter-footer-links a {

}

.otter-footer-bottom {
  border-top: 1px solid rgba(95, 131, 162, 0.24);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 1.25rem;
  padding: 1.05rem 0 1.2rem;
}

.otter-footer-bottom p {
  margin: 0;
  font-weight: 600;
}

.otter-footer-extra {
  display: none;
}

:root[data-theme='light'] .otter-footer .otter-footer-brand,
:root[data-theme='light'] .otter-footer .otter-footer-links a,
:root[data-theme='light'] .otter-footer a {
  color: #213f60;
  text-shadow: none;
}

:root[data-theme='light'] .otter-footer .otter-brand-logo {
  background-color: #102f4f;
}

:root[data-theme='light'] .otter-footer .otter-footer-title,
:root[data-theme='light'] .otter-footer .otter-footer-brand-title,
:root[data-theme='light'] .otter-footer .otter-footer-bottom p,
:root[data-theme='light'] .otter-footer .otter-footer-description,
:root[data-theme='light'] .otter-footer .otter-footer-brand-tagline {
  color: #2f4d6c;
  text-shadow: none;
}

:root[data-theme='light'] .otter-footer p a:hover,
:root[data-theme='light'] .otter-footer p a:focus-visible,
:root[data-theme='light'] .otter-footer li a:hover,
:root[data-theme='light'] .otter-footer li a:focus-visible {
  color: #0f5f91;
  text-shadow: none;
}

:root[data-theme='dark'] .otter-footer-col + .otter-footer-col,
:root[data-theme='dark'] .otter-footer-bottom {
  border-color: rgba(102, 159, 200, 0.2);
}

:root[data-theme='dark'] .otter-footer .otter-container {
  text-align: left;
  padding: 0;
}

:root[data-theme='dark'] .otter-footer .otter-footer-brand,
:root[data-theme='dark'] .otter-footer .otter-footer-links a,
:root[data-theme='dark'] .otter-footer .otter-footer-title,
:root[data-theme='dark'] .otter-footer .otter-footer-brand-title,
:root[data-theme='dark'] .otter-footer .otter-footer-description,
:root[data-theme='dark'] .otter-footer .otter-footer-bottom p {
  color: #d9eeff;
}

@media (max-width: 72rem) {
  .otter-footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .otter-footer-main .otter-footer-col:nth-child(3) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 52rem) {
  .otter-footer .otter-container,
  .otter-footer-main,
  .otter-footer-col,
  .otter-footer-title,
  .otter-footer-links,
  .otter-footer-bottom,
  .otter-footer-bottom p,
  .otter-footer-description,
  .otter-footer-brand,
  .otter-footer-brand-text {
    text-align: center;
    justify-content: center;
  }

  .otter-footer-main {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .otter-footer-col + .otter-footer-col {
    border-left: 0;
    border-top: 1px solid rgba(95, 131, 162, 0.24);
    padding-left: 0;
    padding-top: 1.15rem;
  }

  .otter-footer-title {
    font-size: 1.45rem;
  }

  .otter-footer-brand-title {
    font-size: 1.45rem;
    margin: 0 0 0.95rem;
  }

  .otter-footer-description {
    margin-left: auto;
    margin-right: auto;
  }

  .otter-footer .otter-footer-brand {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: center;
    align-items: center;
    width: 100%;
    gap: 0.28rem;
  }

  .otter-footer .otter-footer-brand .otter-brand-logo {
    width: 3.9rem;
    height: 2rem;
    margin: 0 auto;
  }

  .otter-footer-brand-text {
    gap: 0.1rem;
  }

  .otter-footer-brand-tagline {
    max-width: 30ch;
    margin: 0 auto;
    line-height: 1.3;
  }

  .otter-footer-bottom {
    justify-content: center;
    gap: 0.2rem;
  }

  .otter-footer-bottom p {
    font-size: 0.82rem;
    line-height: 1.3;
    font-weight: 400;
  }

  .otter-footer-bottom p:last-child {
    font-size: 0.78rem;
    font-weight: 400;
  }
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-footer {
    border-top: 1px solid rgba(18, 44, 72, 0.12);
    background: linear-gradient(180deg, rgba(246, 250, 255, 0.98), rgba(237, 244, 251, 0.98));
    color: #2a4563;
    text-shadow: none;
    padding-top: clamp(1.5rem, 2.2vw, 2.5rem);
  }

  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-footer::before,
  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-footer .otter-container::before {
    display: none;
  }

  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-footer .otter-container {
    text-shadow: none;
    text-align: left;
    padding: 0;
  }

  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-footer .otter-footer-brand,
  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-footer .otter-footer-links a,
  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-footer a {
    color: #213f60;
    text-shadow: none;
  }

  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-footer .otter-brand-logo {
    background-color: #102f4f;
  }

  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-footer .otter-footer-title,
  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-footer .otter-footer-brand-title,
  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-footer .otter-footer-bottom p,
  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-footer .otter-footer-description,
  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-footer .otter-footer-brand-tagline {
    color: #2f4d6c;
    text-shadow: none;
  }

  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-footer p a:hover,
  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-footer p a:focus-visible,
  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-footer li a:hover,
  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-footer li a:focus-visible {
    color: #0f5f91;
    text-shadow: none;
  }
}

@media (max-width: 36rem) {
  .otter-footer::before {
    left: 50%;
    right: auto;
    bottom: -3.4rem;
    width: 9.5rem;
    height: 9.5rem;
    opacity: 0.2;
    transform: translateX(-50%);
  }

  .otter-footer .otter-container::before {
    width: 6.2rem;
    left: 50%;
    right: auto;
    bottom: 25%;
    opacity: 0.18;
    transform: translateX(-50%) scaleX(1) rotate(0deg);
  }
}

.otter-back-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 2.9rem;
  height: 2.9rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--otter-accent), var(--otter-accent-strong));
  color: #fff;
  font-size: 0;
  box-shadow: 0 10px 24px rgba(4, 40, 67, 0.35);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 999;
}

.otter-back-top::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.52rem;
  height: 0.52rem;
  border-top: 0.16rem solid currentColor;
  border-right: 0.16rem solid currentColor;
  transform: translate(-50%, -35%) rotate(-45deg);
}

.otter-back-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Improve readability inside Joomla article output */
.item-page,
.blog,
.com-content-article,
.com-content-category-blog {
  color: var(--otter-text);
}

body.otter-theme .otter-content .com-content-article__body {
  font-family: var(--otter-font-body);
  font-size: 1rem;
  line-height: 1.62;
  color: var(--otter-text);
}

body.otter-theme .otter-content .com-content-article__body p {
  margin: 0 0 1rem;
  line-height: 1.62;
}

body.otter-theme .otter-content .com-content-article__body li {
  margin-bottom: 0.4rem;
}

body.otter-theme .otter-content .com-content-article__body strong,
body.otter-theme .otter-content .com-content-article__body b {
  font-weight: 600;
}

body.otter-theme .otter-content .com-content-article__body font:not(.weather-charts *),
body.otter-theme .otter-content .com-content-article__body [style*='font-family']:not(.weather-charts *),
body.otter-theme .otter-content .com-content-article__body [style*='font-size']:not(.weather-charts *),
body.otter-theme .otter-content .com-content-article__body [style*='line-height']:not(.weather-charts *) {
  font-family: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

body.otter-theme .otter-content .com-content-article__body h1,
body.otter-theme .otter-content .com-content-article__body h2,
body.otter-theme .otter-content .com-content-article__body h3,
body.otter-theme .otter-content .com-content-article__body h4 {
  font-family: var(--otter-font-display);
  line-height: 1.2;
  margin-top: 1.1rem;
  margin-bottom: 0.55rem;
}

body.otter-theme .otter-content .com-content-article__body > table,
body.otter-theme .otter-content .com-content-article__body > p + table,
body.otter-theme .otter-content .com-content-article__body > div + table {
  width: 100% !important;
  max-width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}

body.otter-theme .otter-content .com-content-article__body > table td,
body.otter-theme .otter-content .com-content-article__body > table th,
body.otter-theme .otter-content .com-content-article__body > p + table td,
body.otter-theme .otter-content .com-content-article__body > p + table th,
body.otter-theme .otter-content .com-content-article__body > div + table td,
body.otter-theme .otter-content .com-content-article__body > div + table th {
  min-width: 0;
  padding: 0.2rem 0.5rem 0.55rem 0;
  vertical-align: top;
}

body.otter-theme .otter-content .com-content-article__body > table a,
body.otter-theme .otter-content .com-content-article__body > p + table a,
body.otter-theme .otter-content .com-content-article__body > div + table a {
  overflow-wrap: anywhere;
}

/* Phoca Gallery compatibility: keep lightbox and gallery behavior close to default. */
body.com_phocagallery .otter-content #phocagallery a,
body.com_phocagallery .otter-content #phocagallery a:hover,
body.com_phocagallery .otter-content #phocagallery a:focus-visible {
  text-decoration: none !important;
  text-shadow: none !important;
  background-image: none !important;
  line-height: 0 !important;
}

body.com_phocagallery .otter-content #phocagallery img,
body.com_phocagallery .pswp img {
  border-radius: 0 !important;
}

body.com_phocagallery .otter-content #phocagallery {
  position: relative;
}

body.com_phocagallery .otter-component-wrap {
  background: var(--otter-surface);
  border: 1px solid var(--otter-border);
  border-radius: var(--otter-card-radius);
  box-shadow: var(--otter-shadow);
  backdrop-filter: blur(6px);
  background-image:
    radial-gradient(circle at 18% 24%, rgba(15, 127, 186, 0.05), transparent 30%),
    radial-gradient(circle at 78% 72%, rgba(214, 163, 0, 0.045), transparent 34%);
}

body.com_phocagallery .otter-content #phocagallery .pg-msnr-container {
  display: block !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  column-count: 4 !important;
  column-gap: 0.75rem;
}

@media (max-width: 90rem) {
  body.com_phocagallery .otter-content #phocagallery .pg-msnr-container {
    column-count: 3 !important;
  }
}

@media (max-width: 64rem) {
  body.com_phocagallery .otter-content #phocagallery .pg-msnr-container {
    column-count: 2 !important;
  }
}

@media (max-width: 42rem) {
  body.com_phocagallery .otter-content #phocagallery .pg-msnr-container {
    column-count: 2 !important;
  }
}

body.com_phocagallery .otter-content #phocagallery .pg-item-box,
body.com_phocagallery .otter-content #phocagallery .pg-item-box-image {
  border: 0;
}

body.com_phocagallery .otter-content #phocagallery .pg-item-box {
  position: relative !important;
  display: inline-block;
  overflow: visible;
  margin: 0 0 0.75rem !important;
  padding: 0;
  width: 100% !important;
  inset: auto !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  background: transparent;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  transition:
    transform 0.28s cubic-bezier(.34, 1.56, .64, 1),
    filter 0.28s ease;
}

body.com_phocagallery .otter-content #phocagallery .pg-item-box:hover,
body.com_phocagallery .otter-content #phocagallery .pg-item-box:focus-within {
  filter: drop-shadow(0 0.85rem 1.35rem rgba(7, 28, 42, 0.16));
  position: relative;
  z-index: 2 !important;
  transform: translateY(-4px) scale(1.014);
}

body.com_phocagallery .otter-content #phocagallery .pg-item-box figure {
  position: relative;
  margin: 0;
}

body.com_phocagallery .otter-content #phocagallery .pg-photoswipe-button {
  position: relative;
  display: block !important;
  overflow: hidden;
  border-radius: 1rem;
}

body.com_phocagallery .otter-content #phocagallery .pg-photoswipe-button::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(142, 216, 255, 0.55), transparent 34%),
    linear-gradient(315deg, rgba(229, 179, 0, 0.28), transparent 30%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

body.com_phocagallery .otter-content #phocagallery .pg-item-box:hover .pg-photoswipe-button::before,
body.com_phocagallery .otter-content #phocagallery .pg-item-box:focus-within .pg-photoswipe-button::before {
  opacity: 1;
}

body.com_phocagallery .otter-content #phocagallery .pg-item-box-image {
  overflow: hidden;
  border-radius: inherit;
}

body.com_phocagallery .otter-content #phocagallery .pg-item-box-image img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1);
  transition:
    transform 0.42s cubic-bezier(.34, 1.56, .64, 1),
    filter 0.28s ease;
}

body.com_phocagallery .otter-content #phocagallery .pg-item-box:hover .pg-item-box-image img,
body.com_phocagallery .otter-content #phocagallery .pg-item-box:focus-within .pg-item-box-image img {
  transform: scale(1.028);
  filter: saturate(1.06) contrast(1.03) brightness(1.03);
}

body.com_phocagallery .otter-content #phocagallery .pg-item-box-info {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0.9rem;
  z-index: 3;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

body.com_phocagallery .otter-content #phocagallery .pg-item-box-icons-box {
  display: flex;
  position: absolute;
  right: auto;
  bottom: 0;
  left: 50%;
  padding: 0;
  transform: translateX(-50%);
  justify-content: center;
  pointer-events: auto;
}

body.com_phocagallery .otter-content #phocagallery .pg-bs-modal-button {
  display: grid !important;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: #fff !important;
  background: rgba(4, 17, 28, 0.68) !important;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.24);
  opacity: 0.86;
  transform: translateY(0) scale(1);
  transition:
    transform 0.28s cubic-bezier(.34, 1.56, .64, 1),
    opacity 0.28s ease,
    background 0.28s ease;
}

body.com_phocagallery .otter-content #phocagallery .pg-bs-modal-button:hover,
body.com_phocagallery .otter-content #phocagallery .pg-bs-modal-button:focus-visible {
  opacity: 1;
  transform: translateY(-2px) scale(1.08);
  background: rgba(12, 45, 62, 0.94) !important;
}

body.com_phocagallery .otter-content #phocagallery .pg-bs-modal-button svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

body.com_phocagallery .ph-cb.pg-cv-paginaton {
  display: none !important;
}

body.com_phocagallery #phocagallery > form > .pagination {
  display: none !important;
}

body.com_phocagallery #pgCategoryModal[aria-hidden='true'],
body.com_phocagallery #pgCategoryModal:not(.show),
body.com_phocagallery #pgCategoryModal.fade:not(.show) {
  position: fixed !important;
  inset: 0 !important;
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

body.com_phocagallery #pgCategoryModal.show {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483001 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: auto;
  padding: clamp(0.75rem, 2vw, 1.5rem);
  background: rgba(3, 13, 22, 0.72);
}

body.com_phocagallery #pgCategoryModal .modal-dialog {
  max-width: min(52rem, calc(100vw - 1.5rem));
  width: min(52rem, calc(100vw - 1.5rem));
  margin: 0;
  height: auto !important;
  max-height: min(82dvh, 56rem);
  display: flex;
}

body.com_phocagallery #pgCategoryModal .modal-content {
  border: 0;
  border-radius: 0.8rem;
  background: var(--otter-surface-strong);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.35);
  overflow: hidden;
  width: 100%;
  max-height: min(82dvh, 56rem);
  display: flex;
  flex-direction: column;
}

body.com_phocagallery #pgCategoryModal .modal-header,
body.com_phocagallery #pgCategoryModal .modal-footer {
  display: none;
}

body.com_phocagallery #pgCategoryModal .modal-body {
  padding: 0;
  flex: 1 1 auto;
  min-height: 0;
}

body.com_phocagallery #pgCategoryModal iframe {
  display: block;
  width: 100%;
  height: min(70dvh, 48rem);
  min-height: 0;
  max-height: min(70dvh, 48rem);
  border: 0;
  background: transparent;
}

body.com_phocagallery .pswp,
body.com_phocagallery .pswp.pswp--open {
  position: fixed !important;
  inset: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100dvh !important;
  min-width: 100vw !important;
  min-height: 100dvh !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  transform: none !important;
  filter: none !important;
  contain: none !important;
  isolation: isolate !important;
  z-index: 2147483000 !important;
}

body.com_phocagallery:has(.pswp--open),
body.com_phocagallery.otter-phoca-lightbox-open {
  overflow: hidden;
}

body.com_phocagallery .pswp__bg {
  opacity: 1;
  background:
    radial-gradient(
      circle at center,
      rgba(8, 13, 19, 0.42) 0%,
      rgba(5, 9, 14, 0.56) 36%,
      rgba(2, 4, 7, 0.78) 68%,
      rgba(0, 0, 0, 0.92) 100%
    ) !important;
}

body.contentpane.component.otter-theme:has(#phoca-exif) {
  display: block;
  min-height: 0;
  height: auto;
  overflow: visible;
  padding: clamp(0.85rem, 2vw, 1.35rem);
  background-attachment: scroll;
}

body.contentpane.component.otter-theme #phoca-exif {
  max-width: 100%;
  margin: 0;
  max-height: none;
  overflow: visible;
  overscroll-behavior: auto;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid var(--otter-border);
  border-radius: 1rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(233, 243, 255, 0.88));
  box-shadow:
    0 1rem 2.6rem rgba(7, 28, 42, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.68);
}

body.contentpane.component.otter-theme #phoca-exif .phocaexif {
  margin: 0 0 0.9rem;
  font-family: var(--otter-font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.2;
  color: var(--otter-text);
}

body.contentpane.component.otter-theme #phoca-exif table {
  width: 100%;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0 0.45rem;
}

body.contentpane.component.otter-theme #phoca-exif tr {
  vertical-align: top;
}

body.contentpane.component.otter-theme #phoca-exif td {
  padding: 0.68rem 0.9rem;
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(20, 58, 91, 0.12);
  border-bottom: 1px solid rgba(20, 58, 91, 0.12);
  color: var(--otter-text-soft);
  line-height: 1.4;
  overflow-wrap: anywhere;
}

body.contentpane.component.otter-theme #phoca-exif td:first-child {
  width: 42%;
  border-left: 1px solid rgba(20, 58, 91, 0.12);
  border-radius: 0.8rem 0 0 0.8rem;
  color: var(--otter-text);
  font-weight: 600;
}

body.contentpane.component.otter-theme #phoca-exif td:last-child {
  border-right: 1px solid rgba(20, 58, 91, 0.12);
  border-radius: 0 0.8rem 0.8rem 0;
}

body.contentpane.component.otter-theme #phoca-exif td:only-child {
  border-right: 1px solid rgba(20, 58, 91, 0.12);
  border-left: 1px solid rgba(20, 58, 91, 0.12);
  border-radius: 0.8rem;
}

:root[data-theme='dark'] body.contentpane.component.otter-theme:has(#phoca-exif) {
  background:
    radial-gradient(circle at 20% 14%, rgba(82, 155, 214, 0.16), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(126, 104, 42, 0.08), transparent 34%),
    linear-gradient(140deg, rgba(4, 11, 18, 0.98), rgba(8, 20, 32, 0.94));
}

:root[data-theme='dark'] body.contentpane.component.otter-theme #phoca-exif {
  border-color: rgba(143, 184, 219, 0.22);
  background: linear-gradient(160deg, rgba(11, 22, 34, 0.96), rgba(16, 31, 46, 0.92));
  box-shadow:
    0 1rem 2.6rem rgba(0, 0, 0, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

:root[data-theme='dark'] body.contentpane.component.otter-theme #phoca-exif .phocaexif {
  color: #eef6ff;
}

:root[data-theme='dark'] body.contentpane.component.otter-theme #phoca-exif td {
  background: rgba(255, 255, 255, 0.05);
  border-top-color: rgba(170, 201, 230, 0.12);
  border-bottom-color: rgba(170, 201, 230, 0.12);
  color: rgba(228, 237, 247, 0.88);
}

:root[data-theme='dark'] body.contentpane.component.otter-theme #phoca-exif td:first-child {
  border-left-color: rgba(170, 201, 230, 0.12);
  color: #f5fbff;
}

:root[data-theme='dark'] body.contentpane.component.otter-theme #phoca-exif td:last-child,
:root[data-theme='dark'] body.contentpane.component.otter-theme #phoca-exif td:only-child {
  border-right-color: rgba(170, 201, 230, 0.12);
}

@media (max-width: 42rem) {
  body.contentpane.component.otter-theme #phoca-exif {
    padding: 0.9rem;
    border-radius: 0.85rem;
  }

  body.contentpane.component.otter-theme #phoca-exif table,
  body.contentpane.component.otter-theme #phoca-exif tbody,
  body.contentpane.component.otter-theme #phoca-exif tr {
    display: block;
  }

  body.contentpane.component.otter-theme #phoca-exif tr + tr {
    margin-top: 0.55rem;
  }

  body.contentpane.component.otter-theme #phoca-exif td {
    display: block;
    width: 100%;
    padding: 0.6rem 0.75rem;
  }

  body.contentpane.component.otter-theme #phoca-exif td:first-child {
    width: 100%;
    border-right: 1px solid rgba(20, 58, 91, 0.12);
    border-radius: 0.8rem 0.8rem 0 0;
    border-bottom: 0;
    padding-bottom: 0.35rem;
  }

  body.contentpane.component.otter-theme #phoca-exif td:last-child {
    border-left: 1px solid rgba(20, 58, 91, 0.12);
    border-radius: 0 0 0.8rem 0.8rem;
    padding-top: 0.35rem;
  }
}

@media (max-width: 52rem) {
  body.otter-theme .otter-content .com-content-article__body > table,
  body.otter-theme .otter-content .com-content-article__body > p + table,
  body.otter-theme .otter-content .com-content-article__body > div + table {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem 1rem;
  }

  body.otter-theme .otter-content .com-content-article__body > table tbody,
  body.otter-theme .otter-content .com-content-article__body > table tr,
  body.otter-theme .otter-content .com-content-article__body > p + table tbody,
  body.otter-theme .otter-content .com-content-article__body > p + table tr,
  body.otter-theme .otter-content .com-content-article__body > div + table tbody,
  body.otter-theme .otter-content .com-content-article__body > div + table tr {
    display: contents;
  }

  body.otter-theme .otter-content .com-content-article__body > table td,
  body.otter-theme .otter-content .com-content-article__body > table th,
  body.otter-theme .otter-content .com-content-article__body > p + table td,
  body.otter-theme .otter-content .com-content-article__body > p + table th,
  body.otter-theme .otter-content .com-content-article__body > div + table td,
  body.otter-theme .otter-content .com-content-article__body > div + table th {
    display: block;
    width: auto !important;
    padding: 0;
    margin: 0;
  }

  body.otter-theme .otter-content .com-content-article__body > table td:first-child,
  body.otter-theme .otter-content .com-content-article__body > table th:first-child,
  body.otter-theme .otter-content .com-content-article__body > p + table td:first-child,
  body.otter-theme .otter-content .com-content-article__body > p + table th:first-child,
  body.otter-theme .otter-content .com-content-article__body > div + table td:first-child,
  body.otter-theme .otter-content .com-content-article__body > div + table th:first-child {
    display: none;
  }

  body.otter-theme .otter-content .com-content-article__body #tblNieuws {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.75rem;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible;
  }

  body.otter-theme .otter-content .com-content-article__body #tblNieuws td,
  body.otter-theme .otter-content .com-content-article__body #tblNieuws th,
  body.otter-theme .otter-content .com-content-article__body #tblNieuws td:first-child,
  body.otter-theme .otter-content .com-content-article__body #tblNieuws th:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto !important;
    height: auto !important;
    min-height: 5.6rem;
    padding: 0.7rem !important;
    background: color-mix(in srgb, var(--otter-surface-strong) 78%, transparent);
    border: 1px solid color-mix(in srgb, var(--otter-border) 88%, transparent);
  }

  body.otter-theme .otter-content .com-content-article__body #tblNieuws img {
    width: auto !important;
    max-width: 100% !important;
    max-height: 4.2rem !important;
    object-fit: contain;
  }
}

@media (max-width: 34rem) {
  body.otter-theme .otter-content .com-content-article__body > table,
  body.otter-theme .otter-content .com-content-article__body > p + table,
  body.otter-theme .otter-content .com-content-article__body > div + table {
    grid-template-columns: minmax(0, 1fr);
  }

  body.otter-theme .otter-content .com-content-article__body #tblNieuws {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Reusable weather links card grid for article content */
body.otter-theme .otter-content .com-content-article__body .weather-links-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin: 28px 0 !important;
  width: 100% !important;
}

body.otter-theme .otter-content .com-content-article__body .weather-links-grid > a {
  position: relative;
  display: flex !important;
  align-items: center;
  min-height: 58px;
  padding: 14px 18px;
  border-radius: 14px;
  box-sizing: border-box;
  width: auto !important;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 0px 20px 0px rgb(10 35 56 / 15%);
  text-decoration: none !important;
  font-weight: 700;
  line-height: 1.35;
  background-image: none !important;
  text-shadow: none !important;
  transform: translateY(0) scale(1);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease, color 0.28s ease;
}

body.otter-theme .otter-content .com-content-article__body .weather-links-grid > a::before {
  content: '';
  position: absolute;
  left: 18px;
  right: 44px;
  bottom: 11px;
  height: 2px;
  background: color-mix(in srgb, var(--otter-link-accent) 72%, transparent);
  transform: scaleX(0.22);
  transform-origin: left center;
  opacity: 0.62;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
}

body.otter-theme .otter-content .com-content-article__body .weather-links-grid > a::after {
  content: "\203A";
  margin-left: auto;
  padding-left: 14px;
  font-size: 1.35em;
  line-height: 1;
  color: #e5b300;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

body.otter-theme .otter-content .com-content-article__body .weather-links-grid > a:hover,
body.otter-theme .otter-content .com-content-article__body .weather-links-grid > a:focus,
body.otter-theme .otter-content .com-content-article__body .weather-links-grid > a:focus-visible {
  transform: translateY(0px) scale(1.025);
  text-decoration: none !important;
  box-shadow: 0px 0px 16px 0px rgb(0 0 0 / 0%), 0px 0px 16px 0px rgb(9 106 159 / 25%);
}

body.otter-theme .otter-content .com-content-article__body .weather-links-grid > a:hover::after,
body.otter-theme .otter-content .com-content-article__body .weather-links-grid > a:focus::after,
body.otter-theme .otter-content .com-content-article__body .weather-links-grid > a:focus-visible::after {
  transform: translateX(4px);
}

body.otter-theme .otter-content .com-content-article__body .weather-links-grid > a:hover::before,
body.otter-theme .otter-content .com-content-article__body .weather-links-grid > a:focus::before,
body.otter-theme .otter-content .com-content-article__body .weather-links-grid > a:focus-visible::before {
  transform: scaleX(1);
  opacity: 1;
}

@media (max-width: 1100px) {
  body.otter-theme .otter-content .com-content-article__body .weather-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 700px) {
  body.otter-theme .otter-content .com-content-article__body .weather-links-grid {
    grid-template-columns: 1fr !important;
  }

  body.otter-theme .otter-content .com-content-article__body .weather-links-grid > a {
    min-height: 52px;
    padding: 13px 15px;
  }

  body.otter-theme .otter-content .com-content-article__body .weather-links-grid > a::before {
    left: 15px;
    right: 40px;
    bottom: 10px;
  }
}

/* Joomla article meta: Published / Hits aligned flush-left */
body.otter-theme .otter-content .com-content-article .article-info,
body.otter-theme .otter-content .com-content-article .article-info dd,
body.otter-theme .otter-content .com-content-article .article-info dt,
body.otter-theme .otter-content .com-content-article .article-info .list-inline,
body.otter-theme .otter-content .com-content-article .article-info .list-inline-item {
  margin-left: 0 !important;
  padding-left: 0 !important;
  text-align: left;
}

body.otter-theme .otter-content .com-content-article .article-info .list-inline-item {
  display: block;
}

/* Home page: keep map and satellite panel equal height like production */
body.otter-theme .otter-content .com-content-article__body .home.grid-container {
  align-items: stretch;
}

body.otter-theme .otter-content .com-content-article__body .home.grid-container > .grid-item {
  display: flex;
  min-width: 0;
}

body.otter-theme .otter-content .com-content-article__body .home.grid-container > .grid-item > .home.block,
body.otter-theme .otter-content .com-content-article__body .home.grid-container > .grid-item > a {
  width: 100%;
}

body.otter-theme .otter-content .com-content-article__body .home.grid-container #rainRadarContainer {
  width: 100%;
  border-radius: 0.45rem;
}

body.otter-theme .otter-content .com-content-article__body .home.grid-container > .grid-item > a > img {
  width: 100%;
  display: block;
}

@media (min-width: 769px) {
  body.otter-theme .otter-content .com-content-article__body .home.grid-container {
    --otter-home-media-height: 414px;
  }

  body.otter-theme .otter-content .com-content-article__body .home.grid-container #rainRadarContainer {
    height: var(--otter-home-media-height) !important;
  }

  body.otter-theme .otter-content .com-content-article__body .home.grid-container > .grid-item > a > img {
    height: var(--otter-home-media-height) !important;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  body.otter-theme .otter-content .com-content-article__body .home.grid-container > .grid-item {
    display: block;
  }

  body.otter-theme .otter-content .com-content-article__body .home.grid-container #rainRadarContainer {
    display: block !important;
    width: 100% !important;
    min-height: clamp(16rem, 58vw, 26rem);
    height: clamp(16rem, 58vw, 26rem) !important;
  }

  body.otter-theme .otter-content .com-content-article__body .home.grid-container #rainRadarContainer .leaflet-container {
    width: 100% !important;
    height: 100% !important;
    min-height: inherit;
  }

  body.otter-theme .otter-content .com-content-article__body .home.grid-container > .grid-item > a > img {
    height: auto !important;
    object-fit: contain;
  }
}

/* Weather dashboard integration (/weer) */
body.otter-theme .otter-component-wrap #tabs {
  clear: both;
  width: 100% !important;
  margin-left: 0 !important;
  border: 1px solid var(--otter-border);
  border-radius: 0.95rem;
  background: var(--otter-surface);
  padding: 0.3rem 0.55rem 0.9rem;
  border-top: 1px solid rgba(120, 140, 160, 0.28) !important;
  padding-top: 20px !important;
}

body.otter-theme .otter-component-wrap #tabs > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0px 0px 0px -0.45rem;
  padding: 0.25rem 0.25rem 0.5rem 0 !important;
  justify-content: flex-start;
  border: 0 !important;
  background: transparent !important;
}

body.otter-theme .otter-component-wrap #tabs > ul li {
  margin: 0 !important;
  border: 1px solid var(--otter-border) !important;
  border-radius: 999px !important;
  background: transparent !important;
}

body.otter-theme .otter-component-wrap #tabs > ul li a {
  border-radius: 999px;
  padding: 0.44rem 1rem 0.44rem 1rem !important;
  color: var(--otter-text-soft) !important;
  font-weight: 600;
}

body.otter-theme .otter-component-wrap #tabs > ul li.ui-tabs-active,
body.otter-theme .otter-component-wrap #tabs > ul li.ui-state-active {
  background: color-mix(in srgb, var(--otter-accent) 16%, transparent) !important;

}

body.otter-theme .otter-component-wrap #tabs > ul li.ui-tabs-active a,
body.otter-theme .otter-component-wrap #tabs > ul li.ui-state-active a,
body.otter-theme .otter-component-wrap #tabs > ul li a:hover {
  color: var(--otter-text) !important;
  text-decoration: none;
}

body.otter-theme .otter-component-wrap #tabs > ul li a,
body.otter-theme .otter-component-wrap #tabs > ul li a:hover,
body.otter-theme .otter-component-wrap #tabs > ul li a:focus-visible {
  background-image: none !important;
  text-shadow: none !important;
}

body.otter-theme .otter-component-wrap #tabs > ul li a:hover {
  transform: scale(1.05) !important;
}

body.otter-theme .otter-component-wrap .ui-widget-header,
body.otter-theme .otter-component-wrap .ui-widget-content,
body.otter-theme .otter-component-wrap .ui-tabs .ui-tabs-panel {
  border: 0 !important;
  background: transparent !important;
  color: inherit !important;
}

body.otter-theme .otter-component-wrap #tabs-1,
body.otter-theme .otter-component-wrap #tabs-2,
body.otter-theme .otter-component-wrap #tabs-3,
body.otter-theme .otter-component-wrap #tabs-4,
body.otter-theme .otter-component-wrap #tabs-5 {
  background: transparent !important;
}

body.otter-theme .otter-component-wrap .liveweather-header {
  border-bottom-color: var(--otter-border) !important;
  color: var(--otter-text) !important;
}

body.otter-theme .otter-component-wrap .liveweather-meta,
body.otter-theme .otter-component-wrap .liveweather-current,
body.otter-theme .otter-component-wrap .liveweather-column {
  color: var(--otter-text) !important;
}

body.otter-theme .otter-component-wrap .liveweather-column strong {
  color: var(--otter-text-soft) !important;
}

body.otter-theme .otter-component-wrap .liveweather-meta svg {
  stroke: color-mix(in srgb, var(--otter-text-soft) 78%, var(--otter-accent)) !important;
}

body.otter-theme .otter-component-wrap .liveweather-title,
body.otter-theme .otter-component-wrap .liveweather-last-update {
  color: var(--otter-text-soft);
  font-size: 0.95rem;
}

body.otter-theme .otter-component-wrap .liveweather-topline {
  margin-top: 0.4rem !important;
  margin-bottom: 0.6rem !important;
  margin-left: 0 !important;
  width: 100% !important;
  height: 1px !important;
  background-color: var(--otter-border) !important;
}

body.otter-theme .otter-component-wrap .weather-label {
  margin-left: 0 !important;
  margin-bottom: 0.7rem !important;
  padding-top: 1rem !important;
  color: var(--otter-text-soft) !important;
  text-decoration: none !important;
  font-family: var(--otter-font-display);
  font-size: 1.28rem !important;
  font-weight: 600 !important;
}

body.otter-theme .otter-component-wrap [id*='-container-'] {
  width: 100% !important;
  max-width: 100% !important;
  border: 1px solid var(--otter-border);
  border-radius: 0.9rem;
  background: var(--otter-surface-strong);
  box-shadow: none;
  overflow: hidden;
}

body.otter-theme .otter-component-wrap [id*='-container-'] > div,
body.otter-theme .otter-component-wrap [id*='-container-'] .highcharts-container,
body.otter-theme .otter-component-wrap [id*='-container-'] .highcharts-root {
  width: 100% !important;
  max-width: 100% !important;
}

body.otter-theme .otter-component-wrap [id*='-container-'] .highcharts-container {
  left: 0 !important;
}

body.otter-theme .otter-component-wrap .highcharts-background {
  fill: color-mix(in srgb, var(--otter-surface-strong) 88%, transparent) !important;
}

body.otter-theme .otter-component-wrap .highcharts-root text,
body.otter-theme .otter-component-wrap .highcharts-title,
body.otter-theme .otter-component-wrap .highcharts-axis-title,
body.otter-theme .otter-component-wrap .highcharts-axis-labels text,
body.otter-theme .otter-component-wrap .highcharts-legend-item text {
  fill: var(--otter-text-soft) !important;
}

body.otter-theme .otter-component-wrap .highcharts-legend-item text,
body.otter-theme .otter-component-wrap .highcharts-legend-item tspan {
  font-size: 0.85rem !important;
}

body.otter-theme .otter-component-wrap .highcharts-grid-line,
body.otter-theme .otter-component-wrap .highcharts-axis-line,
body.otter-theme .otter-component-wrap .highcharts-tick {
  stroke: color-mix(in srgb, var(--otter-text-soft) 30%, transparent) !important;
}

:root[data-theme='dark'] body.otter-theme .otter-component-wrap .highcharts-windbarb-series .highcharts-point {
  stroke: #ffffff !important;
}

:root[data-theme='dark'] body.otter-theme .otter-component-wrap .highcharts-reset-zoom .highcharts-button-box {
  fill: var(--otter-chart-tooltip-bg) !important;
  stroke: var(--otter-chart-tooltip-border) !important;
}

:root[data-theme='dark'] body.otter-theme .otter-component-wrap .highcharts-reset-zoom text {
  color: var(--otter-text) !important;
  fill: var(--otter-text) !important;
}

:root[data-theme='dark'] body.otter-theme .otter-component-wrap .highcharts-reset-zoom.highcharts-button-hover .highcharts-button-box {
  fill: color-mix(in srgb, var(--otter-accent) 18%, var(--otter-chart-tooltip-bg)) !important;
  stroke: var(--otter-accent) !important;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected).otter-theme .otter-component-wrap .highcharts-windbarb-series .highcharts-point {
    stroke: #ffffff !important;
  }

  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected).otter-theme .otter-component-wrap .highcharts-reset-zoom .highcharts-button-box {
    fill: var(--otter-chart-tooltip-bg) !important;
    stroke: var(--otter-chart-tooltip-border) !important;
  }

  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected).otter-theme .otter-component-wrap .highcharts-reset-zoom text {
    color: var(--otter-text) !important;
    fill: var(--otter-text) !important;
  }

  :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected).otter-theme .otter-component-wrap .highcharts-reset-zoom.highcharts-button-hover .highcharts-button-box {
    fill: color-mix(in srgb, var(--otter-accent) 18%, var(--otter-chart-tooltip-bg)) !important;
    stroke: var(--otter-accent) !important;
  }
}

body.otter-theme .otter-component-wrap .highcharts-plot-band {
  fill: color-mix(in srgb, var(--otter-text-soft) 7%, transparent) !important;
}

body.otter-theme .otter-component-wrap .highcharts-tooltip span {
  color: var(--otter-chart-tooltip-text) !important;
  font-size: 0.92rem !important;
  line-height: 1.35 !important;
  text-shadow: none !important;
}

@media (max-width: 47.998rem) {
  body.otter-theme .otter-component-wrap .highcharts-tooltip span {
    font-size: 0.78rem !important;
    line-height: 1.28 !important;
  }
}

@media (max-width: 30rem) {
  body.otter-theme .otter-component-wrap .highcharts-tooltip span {
    font-size: 0.72rem !important;
  }
}

body.otter-theme .otter-component-wrap .highcharts-tooltip-box {
  fill: var(--otter-chart-tooltip-bg) !important;
  fill-opacity: 1 !important;
  stroke: var(--otter-chart-tooltip-border) !important;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 0.45rem;
}

iframe,
video {
  max-width: 100%;
}

body.menu-from-sidebar-right .otter-sidebar-right .mod-menu {
  display: none;
}

body.otter-theme input[type='text'],
body.otter-theme input[type='email'],
body.otter-theme input[type='password'],
body.otter-theme input[type='search'],
body.otter-theme input[type='number'],
body.otter-theme input[type='url'],
body.otter-theme select,
body.otter-theme textarea {
  border: 1px solid var(--otter-border);
  border-radius: 0.65rem;
  background: var(--otter-surface-strong);
  color: var(--otter-text);
}

body.otter-theme input[type='text']:focus,
body.otter-theme input[type='email']:focus,
body.otter-theme input[type='password']:focus,
body.otter-theme input[type='search']:focus,
body.otter-theme input[type='number']:focus,
body.otter-theme input[type='url']:focus,
body.otter-theme select:focus,
body.otter-theme textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--otter-accent) 45%, transparent);
  outline-offset: 1px;
  box-shadow: none;
}

@media (min-width: 62rem) {
  .otter-layout {
    grid-template-columns: 260px minmax(0, 1fr) 300px;
  }

  body:not(.has-sidebar-left) .otter-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

  body:not(.has-sidebar-right) .otter-layout {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  body:not(.has-sidebar-left):not(.has-sidebar-right) .otter-layout {
    grid-template-columns: minmax(0, 1fr);
  }

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

@media (max-width: 75rem) {
  .otter-container,
  .otter-header-shell,
  .otter-nav-shell {
    width: min(var(--otter-container-lg), calc(100% - 2rem));
  }
}

@media (max-width: 60rem) {
  .otter-container,
  .otter-header-shell,
  .otter-nav-shell {
    width: min(var(--otter-container-md), calc(100% - 1.7rem));
  }

  .otter-brand-tagline {
    display: none;
  }

  .otter-brand-title {
    font-size: 1.16rem;
  }

  .otter-brand-logo {
    width: 4.35rem;
    height: 2.15rem !important;
  }
}

@media (max-width: 61.998rem) {
  .otter-container,
  .otter-hero,
  .otter-layout {
    width: 100%;
  }

  .otter-site-header,
  .otter-nav-shell {
    overflow: visible;
  }

  .otter-header-shell {
    min-height: 4.5rem;
    gap: 0.65rem;
    padding: 0.62rem 0 0.58rem;
  }

  .otter-header-actions {
    gap: 0.52rem;
    flex-shrink: 0;
  }

  .otter-menu-toggle {
    display: inline-flex;
    width: 2.7rem;
    min-width: 2.7rem;
    height: 2.7rem;
    border-radius: 0;
    padding: 0;
    margin-left: auto;
    border-color: transparent;
    border-width: 0;
    border-left: 3px solid var(--otter-accent);
    background: rgba(10, 46, 73, 0.56);
  }

  .otter-theme-toggle-inline {
    display: inline-flex;
    width: 2.7rem;
    height: 2.7rem;
    justify-content: center;
    padding: 0;
    gap: 0;
    min-width: 0;
    border-radius: 0;
    border-left: 3px solid var(--otter-accent);
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    background: rgba(12, 52, 82, 0.64);
  }

  .otter-theme-toggle-label {
    display: none;
  }

  .otter-theme-toggle-icon {
    font-size: 0.62rem;
  }

  .otter-nav-shell {
    border-top: 0;
    min-height: 0;
    width: 100%;
    margin: 0;
  }

  .otter-nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: auto;
    max-height: calc(100dvh - 4.6rem);
    padding: 0;
    border-radius: 0;
    background:
      radial-gradient(circle at 12% 0%, rgba(68, 160, 222, 0.12), transparent 34%),
      linear-gradient(180deg, rgba(4, 20, 34, 0.99), rgba(7, 25, 40, 0.98));
    border: 0;
    box-shadow: 0 20px 44px rgba(1, 10, 18, 0.62);
    backdrop-filter: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    z-index: 2600;
    overflow: auto;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-0.4rem) scale(0.985);
    opacity: 0;
    transition:
      transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.2s ease,
      visibility 0s linear 0.24s;
  }

  body.otter-nav-open .otter-nav-panel {
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0) scale(1);
    opacity: 1;
    transition-delay: 0s;
  }

  body:not(.otter-nav-open) .otter-nav-panel,
  body:not(.otter-nav-open) .otter-nav-panel * {
    pointer-events: none !important;
  }

  .otter-nav-panel::before {
    content: 'MENU';
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    min-height: 3.1rem;
    padding: 0 1.2rem;
    background:
      linear-gradient(90deg, rgba(96, 182, 240, 0.24), rgba(36, 95, 139, 0.5)),
      linear-gradient(180deg, rgba(14, 58, 91, 0.96), rgba(10, 44, 70, 0.96));
    color: #d9f2ff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
  }

  .otter-nav-panel::after {

  }

  .otter-nav-panel .mod-menu {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0 !important;
    padding: 0;
    width: 100%;
    position: relative;
    z-index: 0;
  }

  .otter-nav-panel .mod-menu > li > a,
  .otter-nav-panel .mod-menu > li > .separator,
  .otter-nav-panel .mod-menu > li > .nav-header {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
    justify-content: flex-start;
    border-radius: 0;
    padding: 1rem 2.4rem 1rem 1.2rem;
    min-height: 0;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.015em;
    color: rgba(228, 242, 252, 0.9);
    background: rgba(6, 23, 37, 0.72);
    border-bottom: 1px solid rgba(126, 190, 232, 0.12);
    box-shadow: none;
  }

  .otter-nav-panel .mod-menu__sub {
    position: static;
    display: block;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    min-width: 0;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: rgba(3, 14, 24, 0.9);
    border: 0;
    border-left: 0;
    box-shadow: inset 0 1px 0 rgba(126, 190, 232, 0.08);
  }

  .otter-nav-panel .mod-menu__sub a {
    border-radius: 0;
    font-size: 0.93rem;
    font-weight: 400;
    padding: 0.9rem 1.2rem 0.9rem 2rem;
    border-bottom: 1px solid rgba(126, 190, 232, 0.08);
    color: rgba(220, 236, 248, 0.86);
  }

  .otter-nav-panel .mod-menu > li {
    padding-bottom: 0;
    position: relative;
    width: 100%;
  }

  .otter-nav-panel .mod-menu > li.has-mobile-submenu > a,
  .otter-nav-panel .mod-menu > li.has-mobile-submenu > .separator,
  .otter-nav-panel .mod-menu > li.has-mobile-submenu > .nav-header,
  .otter-nav-panel .mod-menu > li.deeper > a,
  .otter-nav-panel .mod-menu > li.deeper > .separator,
  .otter-nav-panel .mod-menu > li.deeper > .nav-header,
  .otter-nav-panel .mod-menu > li.parent > a,
  .otter-nav-panel .mod-menu > li.parent > .separator,
  .otter-nav-panel .mod-menu > li.parent > .nav-header {
    padding-right: 3.2rem;
  }

  .otter-nav-panel .mod-menu > li > a::after,
  .otter-nav-panel .mod-menu > li > .separator::after,
  .otter-nav-panel .mod-menu > li > .nav-header::after {
    display: none;
  }

  .otter-nav-panel .mod-menu > li.active > a,
  .otter-nav-panel .mod-menu > li.current > a {
    background:
      linear-gradient(90deg, rgba(93, 194, 255, 0.18), rgba(93, 194, 255, 0.04)),
      rgba(9, 35, 56, 0.86);
    box-shadow: inset 0.22rem 0 0 #8ed8ff;
    color: #93dcff;
    font-weight: 700;
  }

  .otter-nav-panel .mod-menu > li.active > a::before,
  .otter-nav-panel .mod-menu > li.current > a::before {
    display: none;
  }

  .otter-nav-panel .mod-menu > li.active > a,
  .otter-nav-panel .mod-menu > li.current > a {
    padding-left: 1.2rem;
  }

  .otter-nav-panel .mod-menu > li.active > a::after,
  .otter-nav-panel .mod-menu > li.current > a::after {
    display: none;
  }

  .otter-nav-panel .mod-menu__sub::before {
    display: none;
  }

  .otter-nav-panel .otter-submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 3rem;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: transparent;
    opacity: 0;
  }

  .otter-nav-panel .otter-submenu-toggle::before {
    display: none;
  }

  .otter-nav-panel .mod-menu > li.has-mobile-submenu > a,
  .otter-nav-panel .mod-menu > li.has-mobile-submenu > .separator,
  .otter-nav-panel .mod-menu > li.has-mobile-submenu > .nav-header,
  .otter-nav-panel .mod-menu > li.deeper > a,
  .otter-nav-panel .mod-menu > li.deeper > .separator,
  .otter-nav-panel .mod-menu > li.deeper > .nav-header,
  .otter-nav-panel .mod-menu > li.parent > a,
  .otter-nav-panel .mod-menu > li.parent > .separator,
  .otter-nav-panel .mod-menu > li.parent > .nav-header {
    position: relative;
  }

  .otter-nav-panel .mod-menu > li.has-mobile-submenu > a::after,
  .otter-nav-panel .mod-menu > li.has-mobile-submenu > .separator::after,
  .otter-nav-panel .mod-menu > li.has-mobile-submenu > .nav-header::after,
  .otter-nav-panel .mod-menu > li.deeper > a::after,
  .otter-nav-panel .mod-menu > li.deeper > .separator::after,
  .otter-nav-panel .mod-menu > li.deeper > .nav-header::after,
  .otter-nav-panel .mod-menu > li.parent > a::after,
  .otter-nav-panel .mod-menu > li.parent > .separator::after,
  .otter-nav-panel .mod-menu > li.parent > .nav-header::after {
    content: '';
    display: block;
    position: absolute;
    left: auto !important;
    right: 0.75rem !important;
    top: 50% !important;
    bottom: auto !important;
    width: 0.55rem;
    height: 0.55rem;
    border-top: 0.16rem solid #fff;
    border-right: 0.16rem solid #fff;
    background: transparent !important;
    box-shadow: none !important;
    transform: translateY(-50%) rotate(135deg);
    pointer-events: none;
    opacity: 0.95;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .otter-nav-panel .mod-menu > li.has-mobile-submenu.is-open > a::after,
  .otter-nav-panel .mod-menu > li.has-mobile-submenu.is-open > .separator::after,
  .otter-nav-panel .mod-menu > li.has-mobile-submenu.is-open > .nav-header::after,
  .otter-nav-panel .mod-menu > li.deeper.is-open > a::after,
  .otter-nav-panel .mod-menu > li.deeper.is-open > .separator::after,
  .otter-nav-panel .mod-menu > li.deeper.is-open > .nav-header::after,
  .otter-nav-panel .mod-menu > li.parent.is-open > a::after,
  .otter-nav-panel .mod-menu > li.parent.is-open > .separator::after,
  .otter-nav-panel .mod-menu > li.parent.is-open > .nav-header::after {
    transform: translateY(-50%) rotate(-45deg);
  }

  .otter-nav-panel .mod-menu > li.current.has-mobile-submenu > a::after,
  .otter-nav-panel .mod-menu > li.active.has-mobile-submenu > a::after,
  .otter-nav-panel .mod-menu > li.current.has-mobile-submenu > .separator::after,
  .otter-nav-panel .mod-menu > li.active.has-mobile-submenu > .separator::after,
  .otter-nav-panel .mod-menu > li.current.has-mobile-submenu > .nav-header::after,
  .otter-nav-panel .mod-menu > li.active.has-mobile-submenu > .nav-header::after,
  .otter-nav-panel .mod-menu > li.current.deeper > a::after,
  .otter-nav-panel .mod-menu > li.active.deeper > a::after,
  .otter-nav-panel .mod-menu > li.current.deeper > .separator::after,
  .otter-nav-panel .mod-menu > li.active.deeper > .separator::after,
  .otter-nav-panel .mod-menu > li.current.deeper > .nav-header::after,
  .otter-nav-panel .mod-menu > li.active.deeper > .nav-header::after,
  .otter-nav-panel .mod-menu > li.current.parent > a::after,
  .otter-nav-panel .mod-menu > li.active.parent > a::after,
  .otter-nav-panel .mod-menu > li.current.parent > .separator::after,
  .otter-nav-panel .mod-menu > li.active.parent > .separator::after,
  .otter-nav-panel .mod-menu > li.current.parent > .nav-header::after,
  .otter-nav-panel .mod-menu > li.active.parent > .nav-header::after {
    display: block;
  }

  .otter-nav-panel .mod-menu li.has-mobile-submenu > .mod-menu__sub {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-0.35rem);
    transition:
      max-height 0.34s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.22s ease,
      transform 0.22s ease,
      visibility 0s linear 0.22s;
  }

  .otter-nav-panel .mod-menu li.has-mobile-submenu.is-open > .mod-menu__sub {
    max-height: 26rem;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .otter-nav-panel .mod-menu li.has-mobile-submenu.is-open > .otter-submenu-toggle::before {
    transform: rotate(-45deg);
  }

  .otter-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    margin-top: 0;
  }

  .otter-hero {
    margin-top: 0;
  }

  .otter-hero-main,
  .otter-hero-banner,
  .otter-breadcrumbs,
  .otter-component-wrap,
  .card,
  .moduletable,
  .otter-sidebar .card,
  .otter-sidebar .moduletable {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .otter-hero-main,
  .otter-hero-banner {
    padding: 0;
  }

  .otter-breadcrumbs,
  .otter-component-wrap,
  .otter-main-top,
  .otter-main-bottom {
    margin-bottom: 0;
  }

  body.otter-nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(1, 10, 18, 0.38);
    z-index: 2400;
    pointer-events: none;
  }

  body.otter-nav-open .otter-site-header {
    z-index: 2500;
  }

  :root[data-theme='light'] .otter-menu-toggle,
  :root[data-theme='light'] .otter-theme-toggle-inline {
    background: rgba(15, 127, 186, 0.08);
    border-left-color: rgba(18, 74, 116, 0.34);
    color: #1e4468;
  }

  :root[data-theme='light'] .otter-nav-panel {
    background: #f3f8fd;
    box-shadow: 0 18px 34px rgba(10, 34, 58, 0.12);
  }

  :root[data-theme='light'] .otter-nav-panel::before {
    background: linear-gradient(180deg, #ffffff, #eef5fc);
    color: #1b3f61;
    border-bottom: 1px solid rgba(18, 44, 72, 0.12);
  }

  :root[data-theme='light'] .otter-nav-panel .mod-menu > li > a,
  :root[data-theme='light'] .otter-nav-panel .mod-menu > li > .separator,
  :root[data-theme='light'] .otter-nav-panel .mod-menu > li > .nav-header {
    color: #1f3e5d;
    background: #f8fbff;
    border-bottom: 1px solid rgba(18, 44, 72, 0.08);
  }

  :root[data-theme='light'] .otter-nav-panel .mod-menu__sub {
    background: #edf4fb;
  }

  :root[data-theme='light'] .otter-nav-panel .mod-menu__sub a {
    color: #355373;
    border-bottom: 1px solid rgba(18, 44, 72, 0.06);
  }

  :root[data-theme='light'] .otter-nav-panel .mod-menu > li.has-mobile-submenu > a::after,
  :root[data-theme='light'] .otter-nav-panel .mod-menu > li.has-mobile-submenu > .separator::after,
  :root[data-theme='light'] .otter-nav-panel .mod-menu > li.has-mobile-submenu > .nav-header::after,
  :root[data-theme='light'] .otter-nav-panel .mod-menu > li.deeper > a::after,
  :root[data-theme='light'] .otter-nav-panel .mod-menu > li.deeper > .separator::after,
  :root[data-theme='light'] .otter-nav-panel .mod-menu > li.deeper > .nav-header::after,
  :root[data-theme='light'] .otter-nav-panel .mod-menu > li.parent > a::after,
  :root[data-theme='light'] .otter-nav-panel .mod-menu > li.parent > .separator::after,
  :root[data-theme='light'] .otter-nav-panel .mod-menu > li.parent > .nav-header::after {
    border-top-color: #2a5178;
    border-right-color: #2a5178;
  }

  @media (prefers-color-scheme: light) {
    :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-menu-toggle,
    :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-theme-toggle-inline {
      background: rgba(15, 127, 186, 0.08);
      border-left-color: rgba(18, 74, 116, 0.34);
      color: #1e4468;
    }

    :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-panel {
      background: #f3f8fd;
      box-shadow: 0 18px 34px rgba(10, 34, 58, 0.12);
    }

    :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-panel::before {
      background: linear-gradient(180deg, #ffffff, #eef5fc);
      color: #1b3f61;
      border-bottom: 1px solid rgba(18, 44, 72, 0.12);
    }

    :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-panel .mod-menu > li > a,
    :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-panel .mod-menu > li > .separator,
    :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-panel .mod-menu > li > .nav-header {
      color: #1f3e5d;
      background: #f8fbff;
      border-bottom: 1px solid rgba(18, 44, 72, 0.08);
    }

    :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-panel .mod-menu__sub {
      background: #edf4fb;
    }

    :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-panel .mod-menu__sub a {
      color: #355373;
      border-bottom: 1px solid rgba(18, 44, 72, 0.06);
    }

    :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-panel .mod-menu > li.has-mobile-submenu > a::after,
    :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-panel .mod-menu > li.has-mobile-submenu > .separator::after,
    :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-panel .mod-menu > li.has-mobile-submenu > .nav-header::after,
    :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-panel .mod-menu > li.deeper > a::after,
    :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-panel .mod-menu > li.deeper > .separator::after,
    :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-panel .mod-menu > li.deeper > .nav-header::after,
    :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-panel .mod-menu > li.parent > a::after,
    :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-panel .mod-menu > li.parent > .separator::after,
    :root:not([data-theme]) body[data-default-theme='auto']:not(.theme-selected) .otter-nav-panel .mod-menu > li.parent > .nav-header::after {
      border-top-color: #2a5178;
      border-right-color: #2a5178;
    }
  }
}

@media (max-width: 48rem) {
  .otter-header-shell,
  .otter-nav-shell {
    width: min(var(--otter-container-sm), calc(100% - 1.4rem));
  }

  .otter-container {
    width: 100%;
  }

  .otter-nav-shell {
    width: 100%;
    margin: 0;
  }

  .otter-header-shell {
    padding-right: 0.2rem;
  }

  .otter-nav-panel {
    top: 0;
    right: 0;
    left: 0;
    bottom: auto;
    max-height: calc(100dvh - 4.6rem);
    border-radius: 0;
  }

  .otter-brand-title {
    font-size: 1.06rem;
  }

  .otter-brand-logo {
    width: 4rem;
    height: 2rem !important;
  }

  .otter-component-wrap {
    padding: 0.82rem;
    border-radius: 0;
  }

  body.otter-theme .otter-component-wrap .liveweather-title,
  body.otter-theme .otter-component-wrap .liveweather-last-update {
    width: 50% !important;
    min-height: 0 !important;
    padding-left: 0 !important;
    margin-top: 0 !important;
  }

  body.otter-theme .otter-component-wrap .liveweather-title {
    float: left !important;
    text-align: left !important;
  }

  body.otter-theme .otter-component-wrap .liveweather-last-update {
    float: right !important;
    text-align: right !important;
  }

  body.otter-theme .otter-component-wrap #tabs > ul {
    gap: 0.35rem;
    padding-left: 1rem !important;
  }

  body.otter-theme .otter-component-wrap #tabs > ul li a {
    padding: 0.42rem 0.8rem !important;
    font-size: 0.95rem;
  }
}

@media (max-width: 61.998rem) {
  .pswp__button.pswp__button--zoom {
    display: none !important;
  }

  body.com_phocagallery .otter-component-wrap {
    border: 0;
    border-radius: 0;
  }

  .otter-breadcrumbs {
    overflow: hidden;
  }

  .otter-breadcrumbs ol,
  .otter-breadcrumbs ul,
  .otter-breadcrumbs .breadcrumb {
    flex-wrap: nowrap;
    gap: 0.32rem;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    font-size: clamp(0.82rem, 3.2vw, 0.98rem);
  }

  .otter-breadcrumbs li,
  .otter-breadcrumbs .breadcrumb-item {
    flex: 0 0 auto;
    min-width: 0;
    white-space: nowrap;
  }

  .otter-breadcrumbs li + li::before,
  .otter-breadcrumbs .breadcrumb-item + .breadcrumb-item::before {
    content: '>';
    display: inline-block;
    flex: 0 0 auto;
    margin: 0 0.28rem 0 0.12rem;
    opacity: 0.9;
  }

  .otter-breadcrumbs li:last-child,
  .otter-breadcrumbs .breadcrumb-item:last-child {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
  }

  .otter-breadcrumbs a,
  .otter-breadcrumbs .active,
  .otter-breadcrumbs [aria-current='page'] {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .otter-breadcrumbs li:not(:last-child) a,
  .otter-breadcrumbs .breadcrumb-item:not(:last-child) a {
    flex: 0 0 auto;
    overflow: visible;
    text-overflow: clip;
  }

  body.otter-theme .otter-component-wrap #tabs,
  body.otter-theme .otter-component-wrap .ui-tabs .ui-tabs-panel,
  body.otter-theme .otter-component-wrap [id*='-container-'] {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
  }

  body.otter-theme .otter-component-wrap #tabs {
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  body.otter-theme .otter-component-wrap #tabs > ul {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 0 !important;
    padding: 0 !important;
    background: color-mix(in srgb, var(--otter-surface) 86%, black 3.5%) !important;
    border-top: 1px solid color-mix(in srgb, var(--otter-border) 90%, transparent) !important;
    border-bottom: 1px solid color-mix(in srgb, var(--otter-border) 90%, transparent) !important;
    border-radius: 0 !important;
    box-shadow: none;
  }

  body.otter-theme .otter-component-wrap #tabs > ul::before,
  body.otter-theme .otter-component-wrap #tabs > ul::after {
    content: none !important;
    display: none !important;
  }

  body.otter-theme .otter-component-wrap #tabs > ul li {
    float: none !important;
    min-width: 0;
    border: 0 !important;
    border-right: 1px solid color-mix(in srgb, var(--otter-border) 78%, transparent) !important;
    border-radius: 0 !important;
    background: transparent !important;
    overflow: hidden;
    position: relative;
  }

  body.otter-theme .otter-component-wrap #tabs > ul li:last-child {
    border-right: 0 !important;
  }

  body.otter-theme .otter-component-wrap #tabs > ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 2.65rem;
    text-align: center;
    padding: 0.48rem 0.2rem !important;
    font-size: 0.9rem;
    line-height: 1.2;
    letter-spacing: 0;
    white-space: nowrap;
  }

  body.otter-theme .otter-component-wrap #tabs > ul li.ui-tabs-active,
  body.otter-theme .otter-component-wrap #tabs > ul li.ui-state-active {
    background: color-mix(in srgb, var(--otter-accent) 12%, var(--otter-surface)) !important;
    box-shadow: inset 0 -3px 0 var(--otter-accent);
  }

  body.otter-theme .otter-component-wrap #tabs > ul li a:hover {
    transform: none !important;
  }

  body.otter-theme .otter-component-wrap .ui-tabs .ui-tabs-panel {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body.otter-theme .otter-component-wrap [id*='-container-'] {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  body.otter-theme .otter-component-wrap [id*='-container-'] > div,
  body.otter-theme .otter-component-wrap [id*='-container-'] .highcharts-container,
  body.otter-theme .otter-component-wrap [id*='-container-'] .highcharts-root {
    width: 100vw !important;
    max-width: 100vw !important;
  }

  body.otter-theme .otter-component-wrap .weather-label {
    padding-left: 1rem !important;
    margin-bottom: 0.85rem !important;
  }
}

@media (max-width: 42rem) {
  .otter-container,
  .otter-hero,
  .otter-layout {
    width: 100%;
  }

  .otter-layout {
    gap: 0;
    margin-top: 0;
  }

  .otter-hero {
    margin-top: 0;
  }

  .otter-hero-main,
  .otter-hero-banner,
  .otter-breadcrumbs,
  .otter-component-wrap,
  .card,
  .moduletable,
  .otter-sidebar .card,
  .otter-sidebar .moduletable {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .otter-hero-main,
  .otter-hero-banner {
    padding: 0;
  }

  .otter-breadcrumbs,
  .otter-component-wrap,
  .otter-main-top,
  .otter-main-bottom {
    margin-bottom: 0;
  }
}

@media (max-width: 30rem) {
  .otter-header-shell,
  .otter-nav-shell {
    width: calc(100% - 1rem);
  }

  .otter-container {
    width: 100%;
  }

  .otter-nav-shell {
    width: 100%;
    margin: 0;
  }

  .otter-nav-panel {
    top: 0;
    right: 0;
    left: 0;
    bottom: auto;
    max-height: calc(100dvh - 4.6rem);
    border-radius: 0;
  }
}
