:root {
  --accent: #ef4444;
  --accent-strong: #dc2626;
  --accent-soft: rgba(239, 68, 68, 0.14);
  --heading: #172033;
  --text: #475069;
  --muted: #6f7788;
  --line: rgba(15, 23, 42, 0.1);
  --line-strong: rgba(15, 23, 42, 0.16);
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --surface-alt: rgba(255, 255, 255, 0.72);
  --footer-bg: #08111f;
  --header-surface: rgba(255, 255, 255, 0.78);
  --shadow-lg: 0 26px 70px rgba(15, 23, 42, 0.16);
  --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-sm: 0 10px 28px rgba(15, 23, 42, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1360px;
  --transition: 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --progress-angle: 0deg;
  --pointer-x: 50%;
  --pointer-y: 18%;
}

body.theme-dark {
  --accent: #ff625d;
  --accent-strong: #ff4a43;
  --accent-soft: rgba(255, 98, 93, 0.18);
  --heading: #edf2ff;
  --text: #d1d9e6;
  --muted: #94a3b8;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --surface: rgba(11, 19, 32, 0.82);
  --surface-strong: rgba(12, 21, 36, 0.94);
  --surface-alt: rgba(15, 23, 42, 0.76);
  --footer-bg: #02060d;
  --header-surface: rgba(10, 18, 30, 0.78);
  --shadow-lg: 0 26px 70px rgba(0, 0, 0, 0.36);
  --shadow-md: 0 18px 45px rgba(0, 0, 0, 0.28);
  --shadow-sm: 0 10px 28px rgba(0, 0, 0, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.85;
  background:
    radial-gradient(900px 420px at var(--pointer-x) var(--pointer-y), rgba(239, 68, 68, 0.12), transparent 52%),
    linear-gradient(180deg, #f8fafc 0%, #fef7ef 100%);
  transition:
    background 420ms ease,
    color var(--transition);
  min-height: 100vh;
}

body.theme-dark {
  background:
    radial-gradient(900px 420px at var(--pointer-x) var(--pointer-y), rgba(255, 98, 93, 0.16), transparent 54%),
    linear-gradient(180deg, #030712 0%, #0b1220 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 14%, rgba(255, 255, 255, 0.34), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(255, 255, 255, 0.2), transparent 24%);
  opacity: 0.75;
}

body.theme-dark::before {
  background:
    radial-gradient(circle at 10% 14%, rgba(255, 255, 255, 0.05), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(255, 255, 255, 0.04), transparent 24%);
  opacity: 1;
}

::selection {
  background: rgba(239, 68, 68, 0.18);
  color: var(--heading);
}

body.theme-dark ::selection {
  background: rgba(255, 98, 93, 0.26);
  color: #ffffff;
}

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

iframe {
  border: 0;
}

button,
input,
textarea {
  font: inherit;
}

input,
textarea {
  border: 1px solid var(--line-strong);
  color: var(--heading);
  background: rgba(255, 255, 255, 0.78);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    transform var(--transition);
}

body.theme-dark input,
body.theme-dark textarea {
  background: rgba(10, 18, 30, 0.7);
  color: var(--heading);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(239, 68, 68, 0.7);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition:
    color var(--transition),
    transform var(--transition),
    opacity var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

a:hover,
a:focus {
  color: var(--accent-strong);
}

.c0c6833 {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.c0c6833:focus {
  left: 14px;
  top: 14px;
  width: auto;
  height: auto;
  padding: 14px 18px;
  z-index: 99999;
  background: var(--surface-strong);
  color: var(--heading);
  font-weight: 700;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.c0c687 {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.c0c6841 {
  position: relative;
}

.c0c6830 {
  min-height: 10px;
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.95), rgba(251, 113, 133, 0.75) 48%, rgba(239, 68, 68, 0.95));
  box-shadow: 0 10px 18px rgba(239, 68, 68, 0.16);
}

.c0c6822 {
  display: flex;
  align-items: center;
  min-height: 10px;
}

.c0c6811 {
  margin-left: auto;
  display: flex;
  gap: 18px;
  color: #fff;
  font-size: 14px;
}

.site-header {
  position: relative;
  z-index: 15;
  background: transparent;
  margin-bottom: 44px;
  transition: transform var(--transition);
}

.site-header.is-scrolled .c0c6813 {
  transform: translateY(-2px);
}

.c0c6827 {
  padding: 34px 0 20px;
  background: transparent;
}

.c0c6813 {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  background: var(--header-surface);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.c0c6813:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.c0c6836 {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.c0c6836 a {
  position: relative;
  display: inline-block;
  color: var(--heading);
}

.c0c6836 a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.3), rgba(239, 68, 68, 0.02));
}

.c0c6834 {
  position: sticky;
  top: 14px;
  z-index: 20;
  background: transparent;
}

.c0c6834 .c0c687 {
  background:
    linear-gradient(135deg, rgba(239, 68, 68, 0.96), rgba(197, 36, 36, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  box-shadow:
    0 24px 44px rgba(220, 38, 38, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}

.site-header.is-scrolled .c0c6834 .c0c687 {
  box-shadow:
    0 30px 46px rgba(220, 38, 38, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.nav-inner {
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 0 12px;
}

.c0c6826 {
  min-width: 0;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  position: relative;
  display: block;
  padding: 0 18px;
  line-height: 50px;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: 14px;
  overflow: hidden;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity var(--transition);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 10px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  transition: transform var(--transition);
}

.nav-menu li.c0c681 > a,
.nav-menu li:hover > a,
.nav-menu li:focus-within > a {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.nav-menu li.c0c681 > a::before,
.nav-menu li:hover > a::before,
.nav-menu li:focus-within > a::before,
.nav-menu li.c0c681 > a::after,
.nav-menu li:hover > a::after,
.nav-menu li:focus-within > a::after {
  opacity: 1;
  transform: scaleX(1);
}

.c0c685 {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 8px;
}

.mode-switcher,
.search-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform var(--transition),
    background var(--transition),
    box-shadow var(--transition);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.mode-switcher:hover,
.search-icon-wrap:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.mode-switcher {
  width: 60px;
  justify-content: flex-start;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.32);
}

.mode-switcher span {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #ffffff 0%, #fff6ce 38%, #ffd166 100%);
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.18),
    0 0 0 3px rgba(255, 255, 255, 0.18);
  transition:
    transform var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.mode-switcher.is-active {
  background: rgba(15, 23, 42, 0.72);
  justify-content: flex-end;
}

.mode-switcher.is-active span {
  background:
    radial-gradient(circle at 65% 35%, #ffffff 0%, #dbeafe 40%, #93c5fd 100%);
}

.search-icon-wrap svg {
  width: 19px;
  height: 19px;
  fill: #ffffff;
}

#content {
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(255, 248, 239, 0.55), rgba(255, 250, 244, 0.8)),
    url('https://thereversedboard.com/wp-content/uploads/2026/01/background-beige-bokeh-abstract-2025-02-22-01-06-57-utc-scaled.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  min-height: 100%;
}

body.theme-dark #content {
  background-image:
    linear-gradient(180deg, rgba(4, 10, 19, 0.68), rgba(8, 14, 23, 0.9)),
    url('https://thereversedboard.com/wp-content/uploads/2026/01/background-beige-bokeh-abstract-2025-02-22-01-06-57-utc-scaled.jpg');
}

.c0c6835 {
  padding: 26px 0 8px;
}

.c0c6844 {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.72fr);
  gap: 40px;
  align-items: start;
}

.site-main,
.widget-area .widget {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.site-main {
  position: relative;
  overflow: hidden;
}

.site-main::before,
.widget-area .widget::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.8), rgba(251, 113, 133, 0.4));
  opacity: 0.9;
}

.widget-area .widget {
  position: relative;
}

.site-main:hover,
.widget-area .widget:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 76px rgba(15, 23, 42, 0.18);
}

body.theme-dark .site-main:hover,
body.theme-dark .widget-area .widget:hover {
  box-shadow: 0 34px 76px rgba(0, 0, 0, 0.34);
}

.c0c682 {
  margin-bottom: 28px;
  padding-bottom: 0;
}

.c0c6837 {
  margin: 0;
  color: var(--heading);
  font-family: 'Nunito', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 12ch;
}

.entry-content {
  margin-top: 18px;
  font-size: 16px;
}

.entry-content p {
  margin: 0 0 18px;
  color: var(--text);
}

.entry-content strong {
  font-weight: 700;
  color: var(--heading);
}

.entry-content h2 {
  position: relative;
  margin: 38px 0 16px;
  color: var(--heading);
  font-family: 'Nunito', sans-serif;
  font-size: clamp(27px, 3vw, 36px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  padding-bottom: 12px;
}

.entry-content h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(239, 68, 68, 0.1));
}

.entry-image {
  max-width: 740px;
  margin: 28px auto 32px;
}

.entry-image img {
  width: 100%;
  border-radius: calc(var(--radius-lg) + 2px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.16);
  transform-origin: center;
  transition:
    transform 420ms ease,
    box-shadow 420ms ease,
    filter 420ms ease;
}

.entry-image:hover img {
  transform: scale(1.015);
  box-shadow: 0 26px 58px rgba(15, 23, 42, 0.22);
  filter: saturate(1.04);
}

.widget-area .widget {
  margin-bottom: 30px;
}

.c0c6825 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  padding: 0;
  border: 0;
  color: var(--heading);
  font-family: 'Nunito', sans-serif;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.c0c6825::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), rgba(251, 113, 133, 0.45));
  box-shadow: 0 8px 16px rgba(239, 68, 68, 0.24);
}

.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.widget li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.widget li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 0 0 32px;
  color: var(--heading);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}

.widget li a::before {
  content: '↗';
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 12px;
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition);
}

.widget li a:hover,
.widget li a:hover::before {
  color: var(--accent);
}

.widget li a:hover::before {
  transform: translateY(-50%) translateX(4px);
}

.widget-search label {
  display: block;
  margin-bottom: 14px;
  color: var(--heading);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.c0c6839 {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.search-field {
  flex: 1 1 auto;
  width: auto;
  height: 52px;
  padding: 0 18px;
  border-radius: 16px;
}

.search-field::placeholder {
  color: var(--muted);
}

.c0c689,
.contact-submit {
  position: relative;
  height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(239, 68, 68, 0.24);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    filter var(--transition);
}

.c0c689 {
  flex: 0 0 auto;
}

.c0c689:hover,
.c0c689:focus,
.contact-submit:hover,
.contact-submit:focus {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(239, 68, 68, 0.28);
  filter: brightness(1.03);
}

.widget-search.is-highlighted {
  animation: widgetPulse 1.35s ease;
}

.c0c6823 {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.18);
}

.c0c6823::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.26);
  pointer-events: none;
}

.c0c6823 iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 10px;
}

.form-group label {
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.01em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border-radius: 16px;
  padding: 14px 16px;
}

.form-group textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-submit {
  width: fit-content;
  min-width: 160px;
}

.c0c6824 {
  background: transparent;
  margin-top: 70px;
  padding-bottom: 26px;
}

.c0c6831 {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(8, 17, 31, 0.96), rgba(8, 17, 31, 0.86));
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  padding: 18px 24px;
  font-size: 14px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

#ogma-news-scrollup {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 50;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  opacity: 0;
  transform: translateY(12px) scale(0.94);
  pointer-events: none;
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.18);
  background:
    conic-gradient(var(--accent) var(--progress-angle), rgba(255, 255, 255, 0.22) 0);
  transition:
    opacity var(--transition),
    transform var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

#ogma-news-scrollup::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.98), rgba(197, 36, 36, 0.96));
  z-index: -1;
}

#ogma-news-scrollup.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

#ogma-news-scrollup:hover,
#ogma-news-scrollup:focus {
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 26px 50px rgba(15, 23, 42, 0.24);
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 120;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #fb7185);
  transform-origin: 0 50%;
  transform: scaleX(0);
  transition: transform 80ms linear;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms ease var(--reveal-delay, 0ms),
    transform 620ms ease var(--reveal-delay, 0ms);
}

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

.toast-message {
  position: fixed;
  left: 50%;
  bottom: 30px;
  z-index: 130;
  padding: 14px 18px;
  border-radius: 16px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.92);
  box-shadow: var(--shadow-md);
  transform: translate(-50%, 16px);
  opacity: 0;
  transition:
    opacity var(--transition),
    transform var(--transition);
  pointer-events: none;
  font-weight: 600;
}

.toast-message.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes widgetPulse {
  0% { box-shadow: var(--shadow-lg); }
  35% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0.08), var(--shadow-lg); }
  100% { box-shadow: var(--shadow-lg); }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.mode-switcher:focus-visible,
.search-icon-wrap:focus-visible,
#ogma-news-scrollup:focus-visible {
  outline: 3px solid rgba(239, 68, 68, 0.3);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .c0c6844 {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .widget-area {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
  }

  .widget-area .widget {
    margin-bottom: 0;
  }

  .c0c6837 {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .c0c6834 {
    top: 10px;
  }

  .nav-inner {
    flex-wrap: wrap;
    padding: 10px;
    gap: 10px;
  }

  .nav-menu {
    flex-wrap: wrap;
  }

  .c0c685 {
    width: 100%;
    justify-content: flex-end;
    padding: 0 2px 4px;
  }

  .widget-area {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .c0c687,
  .c0c6831 {
    width: min(var(--container), calc(100% - 22px));
  }

  .c0c6827 {
    padding: 22px 0 16px;
  }

  .c0c6813 {
    padding: 14px 18px;
  }

  .c0c6836 {
    font-size: 28px;
  }

  .c0c6834 .c0c687 {
    border-radius: 18px;
  }

  .nav-menu a {
    line-height: 46px;
    padding: 0 14px;
    margin: 0;
  }

  .c0c6835 {
    padding-top: 18px;
  }

  .site-main,
  .widget-area .widget {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .c0c6837 {
    font-size: 30px;
  }

  .entry-content {
    font-size: 15.5px;
  }

  .entry-content h2 {
    font-size: 25px;
  }

  .c0c6839 {
    flex-direction: column;
  }

  .c0c689,
  .contact-submit {
    width: 100%;
  }

  #ogma-news-scrollup {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition:
    transform var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.mobile-menu-toggle:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition:
    transform var(--transition),
    opacity var(--transition),
    width var(--transition);
}

@media (max-width: 900px) {
  .nav-inner {
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 10px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    order: 1;
    flex: 0 0 auto;
  }

  .c0c685 {
    order: 2;
    width: auto;
    margin-left: auto;
    padding: 0;
    gap: 10px;
    flex: 0 0 auto;
  }

  .c0c6826 {
    order: 3;
    width: 100%;
    flex-basis: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      max-height 0.35s ease,
      opacity var(--transition),
      transform var(--transition),
      visibility var(--transition);
  }

  .nav-inner.menu-open .c0c6826 {
    max-height: 420px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding-top: 8px;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    width: 100%;
    margin: 0;
    padding: 16px 18px;
    line-height: 1.2;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  }

  .nav-menu a::after {
    left: 18px;
    right: 18px;
    bottom: 11px;
  }

  .nav-menu li.c0c681 > a,
  .nav-menu li:hover > a,
  .nav-menu li:focus-within > a {
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  }

  .nav-inner.menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-inner.menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-inner.menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
.c0c6844{
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.75fr);
  grid-template-areas: "sidebar content";
}

.widget-area{
  grid-area: sidebar;
}

.site-main{
  grid-area: content;
}

@media (max-width: 1120px){
  .c0c6844{
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "sidebar";
  }
}

/* Generated theme override */
:root{
  --wf-accent:#385a98;
  --wf-panel-bg:linear-gradient(145deg,rgba(20,35,57,0.9),rgba(13,26,42,0.96));
  --wf-panel-border:rgba(92,120,171,0.32);
  --wf-panel-shadow:0 20px 56px rgba(6,9,15,0.34);
  --wf-site-title-bg:rgba(14,23,38,0.44);
  --wf-site-title-border:rgba(92,120,171,0.28);
  --wf-search-bg:rgba(18,29,49,0.42);
  --wf-scroll-start:rgba(56,90,152,0.96);
  --wf-scroll-end:rgba(88,116,168,0.58);
}
body{color:#364153;background-color:#ecf1f8 !important;}
body.custom-background{background-color:#ecf1f8 !important;}
#page.c0c6841,.site-header{background:transparent !important;}
#main.wrapper{background:#fff !important;border-color:#e5eaf2 !important;box-shadow:0 18px 42px rgba(56,90,152,0.12);}
#primary.c0c683,#content,article.page.hentry{background:transparent !important;}
.c0c6829 a,.c0c6837,.c0c6825,.c0c6810,h1,h2,h3,h4{color:#192439;}
a{color:#385a98;}
a:hover,.nav-menu li a:hover,.nav-menu li.c0c681 a{color:#2e4b7e;}
.c0c688,.c0c6842,.c0c6840{background:#2d497b;color:#ffffff;}
.c0c6840:hover,.c0c6842:hover{background:#385a98;}
.widget{border-color:#e5eaf2;background:#fafbfd !important;box-shadow:0 12px 28px rgba(56,90,152,0.1);}
#colophon,.c0c6831{background:#23385e;color:#ffffff;}
.entry-content h2{border-left:4px solid #385a98;padding-left:12px;}
.entry-content .c0c6838{margin:24px 0 28px;}
.entry-content .c0c6838 figure{margin:0 auto;max-width:1024px;}
.entry-content .c0c6838 img{display:block;width:100%;max-width:1024px;height:auto;aspect-ratio:1024 / 683;object-fit:cover;border:4px solid #ffffff;box-shadow:0 8px 22px rgba(0,0,0,.08);}
.c0c6832{display:block;width:100%;max-width:100%;aspect-ratio:560 / 315;height:auto;min-height:240px;border:0;border-radius:8px;background:#000;}
.c0c6818 .c0c6832{margin:0 auto;}
.c0c6819{margin:12px 0 0;font-size:14px;}
.c0c6819 a{font-weight:700;text-decoration:underline;}
