:root {
  color-scheme: light;
  --blue: #5f88ff;
  --blue-dark: #3f63d9;
  --blue-soft: #eef3ff;
  --teal: #53c2cc;
  --teal-dark: #268f9a;
  --aqua: #a8e0e5;
  --logo-k: #082850;
  --orange: var(--logo-k);
  --ink: #30374f;
  --muted: #6f7890;
  --line: #dbe5f4;
  --paper: #f6f8ff;
  --white: #ffffff;
  --panel: rgba(255, 255, 255, 0.92);
  --signal: #53c2cc;
  --accent: var(--logo-k);
  --shadow-soft: 0 12px 32px rgba(48, 55, 79, 0.08);
  --shadow-lift: 0 18px 42px rgba(48, 55, 79, 0.12);
  --radius: 6px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --blue: #76a2ff;
  --blue-dark: #8cb2ff;
  --blue-soft: #132640;
  --teal: #5ed7df;
  --teal-dark: #7de1e7;
  --aqua: #8bdbe2;
  --logo-k: #dcecff;
  --orange: var(--logo-k);
  --ink: #eef6ff;
  --muted: #a9b8cf;
  --line: rgba(139, 219, 226, 0.2);
  --paper: #081528;
  --white: #101f34;
  --panel: rgba(13, 29, 49, 0.92);
  --signal: #5ed7df;
  --accent: #dcecff;
  --shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.28);
  --shadow-lift: 0 20px 46px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(168, 224, 229, 0.55), transparent 32%),
    radial-gradient(circle at 82% 6%, rgba(95, 136, 255, 0.22), transparent 28%),
    linear-gradient(180deg, #f7fdff 0%, var(--paper) 42%, #f8fdff 100%);
  font-family: Inter, "Helvetica Neue", Arial, Helvetica, sans-serif;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html[data-theme="dark"] body {
  background:
    radial-gradient(circle at 14% 0%, rgba(83, 194, 204, 0.18), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(95, 136, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #07111f 0%, var(--paper) 48%, #081221 100%);
}

html[data-theme="dark"] .site-header {
  background: rgba(8, 18, 32, 0.9);
  box-shadow: 0 1px 0 rgba(139, 219, 226, 0.16);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(83, 194, 204, 0.48);
  outline-offset: 3px;
}

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

.site-header {
  position: relative;
  top: 0;
  z-index: 20;
  overflow-x: clip;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(219, 229, 244, 0.78);
}

.top-strip {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(255, 255, 255, 0.14) 18% 19%, transparent 19% 34%, rgba(83, 194, 204, 0.18) 34% 35%, transparent 35% 100%),
    radial-gradient(circle at 72% 50%, rgba(168, 224, 229, 0.28), transparent 28%),
    linear-gradient(90deg, var(--ink), var(--blue-dark));
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.top-strip::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  opacity: 0.42;
  transform: translateX(-35%);
}

.strip-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-block: 7px;
}

.strip-time {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-left: auto;
  justify-content: flex-end;
  white-space: nowrap;
}

.current-clock {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.strip-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 auto;
}

.strip-inner a {
  color: #ffffff;
  font-weight: 700;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-1px);
}

.social-link svg {
  display: block;
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.member-login-link {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.nav-inner .member-login-link {
  min-height: 44px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  font-size: 12.5px;
  font-weight: 900;
}

.nav-inner .member-login-link:hover {
  background: rgba(255, 255, 255, 0.2);
}

.theme-toggle {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.theme-toggle::before {
  display: inline-grid;
  width: 16px;
  height: 16px;
  place-items: center;
  content: "☾";
  color: var(--logo-k);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-size: 10px;
  line-height: 1;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-1px);
}

html[data-theme="dark"] .theme-toggle::before {
  content: "☼";
}

.member-login-panel .theme-toggle {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--ink);
  background: rgba(83, 194, 204, 0.1);
  border-color: rgba(83, 194, 204, 0.28);
}

.member-login-link:hover {
  background: rgba(255, 255, 255, 0.2);
}

.brand-area {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  justify-items: center;
  min-height: 76px;
  padding-block: 12px 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  max-width: 100%;
  padding: 0;
  color: var(--blue);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  line-height: 1;
}

.brand img {
  width: clamp(152px, 15.5vw, 206px);
  height: auto;
  object-fit: contain;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 320px;
  margin-top: 0;
  color: var(--ink);
  padding-left: 16px;
  font-family: Inter, "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: clamp(14px, 1.18vw, 17px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.18;
  text-transform: none;
  white-space: nowrap;
}

.brand span::before {
  position: absolute;
  inset: -2px auto -2px 0;
  width: 3px;
  content: "";
  background: linear-gradient(180deg, var(--blue), var(--teal));
  border-radius: 999px;
}

.brand-globe {
  position: absolute;
  top: 50%;
  right: clamp(22px, 5vw, 74px);
  left: auto;
  z-index: 1;
  width: clamp(56px, 4.8vw, 74px);
  height: clamp(56px, 4.8vw, 74px);
  flex: 0 0 auto;
  pointer-events: none;
  filter: drop-shadow(0 10px 18px rgba(8, 40, 80, 0.2));
  transform: translateY(-50%);
}

.brand-globe .globe-map {
  transform-box: fill-box;
  transform-origin: center;
  animation: globeTurn 18s linear infinite;
}

.brand-globe .globe-energy {
  transform-box: fill-box;
  transform-origin: center;
  animation: globeEnergyTilt 7s ease-in-out infinite;
}

.brand-globe .kvhs-letter-orbit text {
  fill: #ffffff;
  font-family: Inter, "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 10.8px;
  font-weight: 900;
  letter-spacing: 0;
  text-anchor: middle;
  dominant-baseline: middle;
  filter: drop-shadow(0 1px 1px rgba(8, 40, 80, 0.28));
  animation: letterPulse 4.8s ease-in-out infinite;
}

.brand-globe .letter-v {
  animation-delay: 1.2s;
}

.brand-globe .letter-h {
  animation-delay: 2.4s;
}

.brand-globe .letter-s {
  animation-delay: 3.6s;
}

.brand-globe .energy-ring {
  stroke-dasharray: 8 7;
  animation: energyFlow 3.8s linear infinite;
}

.brand-globe .energy-ring.delay {
  animation-duration: 4.6s;
  animation-direction: reverse;
}

.brand-globe .energy-ring.slow {
  animation-duration: 6s;
}

.brand-globe .energy-core {
  transform-box: fill-box;
  transform-origin: center;
  animation: energyPulse 2.8s ease-in-out infinite;
}

@keyframes globeTurn {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.015);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes globeEnergyTilt {
  0%,
  100% {
    transform: rotate(-6deg);
  }

  50% {
    transform: rotate(7deg);
  }
}

@keyframes letterPulse {
  0%,
  18%,
  100% {
    opacity: 0.92;
    font-size: 10.8px;
  }

  8% {
    opacity: 1;
    font-size: 15px;
  }
}

@keyframes energyFlow {
  to {
    stroke-dashoffset: -60;
  }
}

@keyframes energyPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.82);
  }

  50% {
    opacity: 0.95;
    transform: scale(1.35);
  }
}

.search {
  display: grid;
  gap: 7px;
}

.search label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.search div,
.newsletter form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.search input,
.newsletter input {
  min-width: 0;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font: inherit;
}

.search button,
.newsletter button {
  min-height: 42px;
  padding: 0 15px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border: 0;
  border-radius: 4px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.nav-search {
  flex: 0 0 min(300px, 30vw);
  align-self: center;
  gap: 0;
  margin-left: auto;
  padding: 6px 0 6px 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.nav-search div {
  gap: 6px;
}

.nav-search input {
  min-height: 34px;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.94);
  font-size: 13px;
}

html[data-theme="dark"] input,
html[data-theme="dark"] select,
html[data-theme="dark"] textarea {
  color: var(--ink);
  background: rgba(8, 18, 32, 0.78);
  border-color: var(--line);
}

html[data-theme="dark"] .nav-search input {
  background: rgba(8, 18, 32, 0.72);
  color: var(--ink);
}

html[data-theme="dark"] .nav-search button {
  color: #ffffff;
  background: #10365d;
}

.nav-search input:focus {
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}

.nav-search input.search-empty {
  border-color: rgba(180, 35, 24, 0.7);
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.14);
}

.nav-search button {
  min-height: 34px;
  padding: 0 12px;
  color: #ffffff;
  background: var(--orange);
  font-size: 13px;
}

.page-search-hit {
  padding: 0 3px;
  color: var(--logo-k);
  background: rgba(83, 194, 204, 0.28);
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(38, 143, 154, 0.42);
}

.page-search-hit.is-active {
  background: rgba(95, 136, 255, 0.28);
  box-shadow: 0 0 0 3px rgba(83, 194, 204, 0.22);
}

.publications-band article span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-panel,
.contact-panel {
  display: grid;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
  padding: clamp(28px, 3.6vw, 42px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-panel {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 18px;
}

.about-panel {
  grid-template-columns: 1fr;
  justify-items: stretch;
  background:
    radial-gradient(circle at 86% 0%, rgba(168, 224, 229, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 243, 255, 0.82));
  border-left: 5px solid var(--teal);
  border-top: 0;
  text-align: left;
}

.about-panel,
.contact-panel {
  align-items: center;
}

.about-panel span,
.contact-panel span {
  display: block;
  width: fit-content;
  margin: 0 auto 16px;
  color: var(--blue);
  font-size: clamp(19px, 2.1vw, 27px);
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
  text-transform: none;
}

.about-panel h2,
.contact-panel h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.about-copy,
.contact-copy {
  max-width: 860px;
  margin-inline: auto;
}

.about-copy p,
.contact-copy p {
  margin: 0;
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: clamp(17px, 1.22vw, 18.5px);
  font-weight: 600;
  line-height: 1.72;
  text-align: justify;
  text-align-last: left;
  text-indent: 28px;
}

.contact-actions {
  display: grid;
  gap: 10px;
  align-self: center;
  justify-items: center;
}

.contact-actions a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--logo-k), var(--blue-dark));
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.contact-actions a:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.nav-bar {
  position: sticky;
  top: 0;
  z-index: 25;
  background:
    linear-gradient(90deg, rgba(48, 55, 79, 0.22), transparent 24%, rgba(83, 194, 204, 0.2)),
    linear-gradient(90deg, var(--blue-dark), var(--blue), var(--teal));
}

.nav-inner {
  position: relative;
  display: flex;
  gap: 0;
  align-items: stretch;
  overflow-x: visible;
}

.nav-inner a,
.nav-dropdown-trigger {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 12px;
  color: #ffffff;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12.5px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-inner > a:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-inner a:hover,
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger {
  background: rgba(255, 255, 255, 0.16);
}

.nav-inner a:focus-visible {
  outline-color: rgba(255, 255, 255, 0.7);
}

.nav-dropdown {
  position: static;
  display: inline-flex;
}

.spk-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 30;
  width: min(1080px, calc(100vw - 48px));
  max-height: min(76vh, 680px);
  padding: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(23, 119, 184, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 24px 56px rgba(8, 40, 80, 0.22);
  opacity: 0;
  overflow: auto;
  overscroll-behavior: contain;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.spk-dropdown:hover .spk-menu,
.spk-dropdown:focus-within .spk-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.spk-menu::before {
  position: absolute;
  top: -7px;
  left: 96px;
  width: 14px;
  height: 14px;
  content: "";
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(23, 119, 184, 0.18);
  border-left: 1px solid rgba(23, 119, 184, 0.18);
  transform: rotate(45deg);
}

.spk-menu-head {
  display: grid;
  justify-items: center;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.spk-menu-head strong {
  color: var(--blue-dark);
  font-size: 15px;
  font-weight: 900;
}

.spk-menu-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.spk-menu-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(260px, 0.8fr);
  gap: 18px;
}

.spk-menu section {
  min-width: 0;
  padding: 15px;
  background: rgba(238, 243, 255, 0.48);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.spk-menu h3 {
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.spk-menu ul,
.spk-menu ol {
  max-height: 430px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: auto;
}

.spk-menu ol {
  display: block;
  columns: 2 280px;
  column-gap: 28px;
  list-style: decimal;
  padding-left: 30px;
  scrollbar-gutter: stable;
}

.spk-menu ul {
  display: grid;
  gap: 8px;
  padding-left: 0;
}

.spk-menu li {
  break-inside: avoid;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 12.8px;
  font-weight: 750;
  line-height: 1.42;
}

.spk-source {
  display: inline-flex;
  min-height: 0;
  margin: 14px auto 0;
  padding: 0;
  color: var(--blue-dark);
  border-left: 0;
  font-size: 12px;
  font-weight: 900;
}

.market-ticker {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] .market-ticker {
  background: #07111f;
}

.ticker-track {
  display: flex;
  gap: 0;
  overflow: hidden;
}

.ticker-marquee {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: tickerMarquee 48s linear infinite;
}

.ticker-track:hover .ticker-marquee {
  animation-play-state: paused;
}

.ticker-group {
  display: inline-flex;
  flex: 0 0 auto;
}

.ticker-track span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.78);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.ticker-track span:first-child {
  border-left: 0;
}

.ticker-track strong {
  color: #0f8f63;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 3px 8px;
}

.ticker-track em {
  color: #ffffff;
  font-style: normal;
  font-weight: 900;
}

.ticker-track strong.is-negative {
  color: #b42318;
}

.ticker-track strong.is-positive {
  color: #0f8f63;
}

@keyframes tickerMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-marquee {
    animation: none;
  }
}

.news-pulse {
  position: relative;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 0;
  margin-top: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.pulse-title {
  display: grid;
  align-content: center;
  align-items: center;
  padding: 14px 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: var(--radius) 0 0 var(--radius);
}

.pulse-title span {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.pulse-title strong {
  margin-top: 0;
  font-size: 18px;
  line-height: 1.15;
}

.pulse-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  padding-right: 0;
}

.pulse-list a {
  display: grid;
  gap: 6px;
  min-height: 76px;
  align-content: center;
  padding: 14px;
  border-left: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.25;
}

.pulse-list a:hover {
  color: var(--blue-dark);
  background: rgba(238, 243, 255, 0.56);
}

.pulse-list time {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
}

.headline-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.86fr);
  gap: 18px;
  padding-block: 18px 18px;
}

.main-headline,
.headline-stack article,
.post-card,
.widget {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.main-headline:hover,
.headline-stack article:hover,
.post-card:hover,
.widget:hover {
  border-color: rgba(95, 136, 255, 0.26);
  box-shadow: var(--shadow-lift);
  transform: translateY(-1px);
}

.main-headline a {
  display: grid;
}

.main-headline img {
  width: 100%;
  aspect-ratio: 16 / 8.4;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.main-headline h1 {
  max-width: 620px;
  margin: 16px auto 0;
  padding: 0 20px;
  text-align: center;
  text-wrap: balance;
}

.main-headline .headline-summary {
  display: -webkit-box;
  max-width: 560px;
  margin: 8px auto 12px;
  padding: 0 20px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.42;
  text-align: center;
  text-wrap: balance;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.headline-read-more {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-self: center;
  margin: 0 auto 18px;
  padding: 0 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--logo-k), var(--blue-dark));
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
}

.main-headline:hover .headline-read-more {
  background: linear-gradient(135deg, var(--blue-dark), var(--teal-dark));
}

.category {
  display: inline-flex;
  width: fit-content;
  margin: 18px 20px 0;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  line-height: 1.14;
}

h1 {
  padding: 12px 22px 0;
  font-size: clamp(30px, 3.1vw, 40px);
  max-width: 830px;
}

.meta {
  margin: 12px 20px 20px;
  color: var(--muted);
  font-size: 13px;
}

.headline-stack {
  display: grid;
  gap: 12px;
}

.headline-stack article a {
  display: grid;
  min-height: 136px;
  align-content: end;
  padding: 17px;
}

.headline-stack .category {
  margin: 0 0 10px;
}

.headline-stack h2 {
  font-size: 19px;
}

.headline-stack .meta {
  margin: 10px 0 0;
}

.headline-calendar {
  display: grid;
  align-content: start;
  padding: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(8, 40, 80, 0.08);
}

.event-calendar-head.compact-calendar-head {
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom-width: 2px;
  justify-content: center;
  text-align: center;
}

.event-calendar-head.compact-calendar-head span {
  color: var(--logo-k);
  background: linear-gradient(90deg, var(--logo-k), var(--blue-dark), var(--teal-dark));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-shadow: 0 8px 18px rgba(83, 194, 204, 0.18);
  -webkit-text-fill-color: transparent;
}

.event-calendar-head.compact-calendar-head button {
  min-height: 32px;
  padding-inline: 11px;
  font-size: 12px;
}

.kvhs-calendar.compact-kvhs-calendar {
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.compact-kvhs-calendar .calendar-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-bottom: 10px;
}

.compact-kvhs-calendar .calendar-controls label {
  min-width: 0;
  flex: initial;
  font-size: 10.5px;
}

.compact-kvhs-calendar .calendar-controls select {
  min-height: 36px;
  padding-left: 10px;
  font-size: 13px;
}

.compact-kvhs-calendar .calendar-month {
  padding: 12px;
  border-radius: 12px;
}

.compact-kvhs-calendar .calendar-month header {
  min-height: 30px;
  margin-bottom: 8px;
  padding-bottom: 8px;
}

.compact-kvhs-calendar .calendar-month h3 {
  font-size: 15px;
}

.compact-kvhs-calendar .calendar-weekdays {
  gap: 3px;
}

.compact-kvhs-calendar .calendar-weekdays span {
  min-height: 20px;
  font-size: 9.5px;
}

.compact-kvhs-calendar .calendar-days {
  gap: 3px;
}

.compact-kvhs-calendar .calendar-day {
  min-height: 48px;
  gap: 3px;
  padding: 5px;
}

.compact-kvhs-calendar .calendar-day-number {
  font-size: 10.5px;
}

.compact-kvhs-calendar .calendar-event {
  min-height: 19px;
  padding: 3px 5px;
  font-size: 8.5px;
  line-height: 1.15;
}

.compact-kvhs-calendar .calendar-event span {
  width: 6px;
  height: 6px;
}

.compact-kvhs-calendar .calendar-detail {
  min-height: 0;
  padding: 14px;
}

.compact-kvhs-calendar .calendar-detail h3 {
  margin-bottom: 7px;
  font-size: 16px;
}

.compact-kvhs-calendar .calendar-detail time {
  margin-bottom: 8px;
  padding: 5px 8px;
  font-size: 11px;
}

.compact-kvhs-calendar .calendar-detail p {
  font-size: 12px;
  line-height: 1.45;
}

.intelligence-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 1.08fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 20px;
  padding: clamp(22px, 3vw, 30px);
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 0%, rgba(255, 255, 255, 0.26), transparent 28%),
    linear-gradient(135deg, rgba(63, 99, 217, 0.96), rgba(83, 194, 204, 0.9)),
    var(--blue);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(95, 136, 255, 0.18);
}

.mica-hero {
  background:
    radial-gradient(circle at 86% 0%, rgba(168, 224, 229, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(8, 40, 80, 0.98), rgba(63, 99, 217, 0.9), rgba(38, 143, 154, 0.9));
  box-shadow: 0 16px 38px rgba(8, 40, 80, 0.16);
}

html[data-theme="dark"] .intelligence-hero {
  background:
    radial-gradient(circle at 82% 0%, rgba(83, 194, 204, 0.14), transparent 30%),
    linear-gradient(135deg, #0a1d34, #123d66 58%, #166d78);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .intelligence-hero p,
html[data-theme="dark"] .intel-metrics span,
html[data-theme="dark"] .intel-metrics small {
  color: rgba(255, 255, 255, 0.84);
}

.intelligence-hero > div:first-child span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intelligence-hero h2 {
  max-width: 760px;
  font-size: clamp(27px, 3.1vw, 40px);
}

.intelligence-hero p {
  max-width: 680px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.intel-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.intel-metrics article,
.intel-metrics .metric-card {
  display: grid;
  align-content: end;
  min-height: 132px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
}

.intel-metrics .metric-card:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.42);
}

.intel-metrics span,
.intel-metrics small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 800;
}

.intel-metrics strong {
  margin: 10px 0 4px;
  color: #ffffff;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1;
}

.publication-grid article:hover,
.columnist-grid article:hover {
  border-color: rgba(95, 136, 255, 0.26);
  box-shadow: var(--shadow-lift);
  transform: translateY(-1px);
}

.event-calendar {
  margin-bottom: 24px;
  padding: clamp(18px, 2.6vw, 26px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.event-calendar-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--teal);
}

.event-calendar-head span {
  display: block;
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.event-calendar-head h2 {
  font-size: clamp(24px, 2.6vw, 34px);
}

.event-calendar-head a,
.event-calendar-head button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--logo-k), var(--blue-dark));
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.kvhs-calendar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 16px;
  margin-bottom: 16px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(8, 40, 80, 0.04), rgba(83, 194, 204, 0.08)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.calendar-controls {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 10px;
  align-items: end;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.calendar-controls label {
  display: grid;
  gap: 5px;
  min-width: 150px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.calendar-controls select {
  min-height: 40px;
  padding: 0 34px 0 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-size: 14px;
  font-weight: 850;
}

.calendar-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.calendar-month {
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.9)),
    var(--white);
  border: 1px solid rgba(219, 229, 244, 0.92);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.calendar-month header {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 0 2px 10px;
  border-bottom: 1px solid rgba(219, 229, 244, 0.92);
}

.calendar-month h3 {
  color: var(--logo-k);
  font-size: 17px;
  font-weight: 950;
  letter-spacing: 0.01em;
}

.calendar-weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-weekdays {
  gap: 5px;
  margin-bottom: 5px;
}

.calendar-weekdays span {
  display: grid;
  min-height: 26px;
  align-items: center;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.calendar-days {
  gap: 5px;
}

.calendar-day {
  position: relative;
  display: grid;
  min-height: 84px;
  align-content: start;
  gap: 5px;
  padding: 7px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(219, 229, 244, 0.9);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.calendar-day.is-empty {
  background: transparent;
  border-color: transparent;
}

.calendar-day.is-muted {
  background: rgba(246, 248, 255, 0.44);
  border-color: rgba(219, 229, 244, 0.5);
}

.calendar-day.has-event {
  background:
    radial-gradient(circle at 88% 12%, rgba(83, 194, 204, 0.22), transparent 34%),
    rgba(237, 250, 252, 0.92);
  border-color: rgba(83, 194, 204, 0.48);
}

.calendar-day.is-selected {
  border-color: rgba(8, 40, 80, 0.62);
  box-shadow:
    inset 0 0 0 1px rgba(83, 194, 204, 0.42),
    0 10px 22px rgba(8, 40, 80, 0.12);
}

.calendar-day.is-today {
  border-color: rgba(23, 119, 184, 0.62);
  box-shadow:
    inset 0 0 0 1px rgba(23, 119, 184, 0.28),
    0 8px 18px rgba(8, 40, 80, 0.08);
}

.calendar-day-number {
  display: inline-grid;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: var(--logo-k);
  font-size: 11.5px;
  font-weight: 900;
  line-height: 1;
  border-radius: 999px;
}

.calendar-day.is-muted .calendar-day-number {
  color: #94a3b8;
}

.calendar-day.is-today .calendar-day-number {
  color: var(--white);
  background: var(--blue-dark);
}

.calendar-event {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  min-height: 26px;
  padding: 5px 6px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, var(--logo-k), var(--teal-dark));
  border: 0;
  border-radius: 4px;
  font: inherit;
  font-size: 10.5px;
  font-weight: 900;
  line-height: 1.22;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

.calendar-event span {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.16);
}

.calendar-event:hover,
.calendar-event.is-active {
  background: linear-gradient(135deg, var(--blue-dark), var(--teal));
  box-shadow: 0 8px 18px rgba(8, 40, 80, 0.16);
}

.calendar-detail {
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: 18px;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 0%, rgba(168, 224, 229, 0.26), transparent 42%),
    linear-gradient(135deg, var(--logo-k), var(--blue-dark));
  border-radius: var(--radius);
}

.calendar-detail .event-type {
  color: rgba(255, 255, 255, 0.72);
}

.calendar-detail h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.calendar-detail time {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.calendar-detail p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.58;
}

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

.event-list article {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(83, 194, 204, 0.08), transparent 42%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.event-list article:hover {
  border-color: rgba(95, 136, 255, 0.26);
  box-shadow: var(--shadow-lift);
  transform: translateY(-1px);
}

.event-list article.event-featured {
  background:
    linear-gradient(90deg, rgba(83, 194, 204, 0.14), rgba(255, 255, 255, 0.96) 44%),
    var(--white);
  border-color: rgba(83, 194, 204, 0.34);
}

.event-list article.is-selected {
  border-color: rgba(13, 71, 112, 0.46);
  box-shadow: 0 16px 34px rgba(13, 71, 112, 0.14);
}

.event-list time {
  display: grid;
  width: 68px;
  min-height: 68px;
  place-items: center;
  align-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--logo-k), var(--blue), var(--teal));
  border-radius: var(--radius);
  text-align: center;
  line-height: 1;
}

.event-list time strong {
  font-size: 20px;
  line-height: 1;
}

.event-list time span {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.event-type {
  display: block;
  margin-bottom: 5px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.event-list h3 {
  font-size: 20px;
}

.event-list p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.event-list p a,
.calendar-detail p a {
  color: var(--blue-dark);
  font-weight: 850;
  text-decoration: none;
}

.event-list p a:hover,
.calendar-detail p a:hover {
  color: var(--teal-dark);
}

.event-list article > a,
.event-list article > button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.notice-archive {
  display: grid;
  gap: 12px;
}

.notice-archive article {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(83, 194, 204, 0.08), transparent 42%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.notice-archive time {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--logo-k), var(--blue-dark));
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.notice-archive span,
.event-detail-meta span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.notice-archive h2 {
  margin: 4px 0 8px;
  font-size: 23px;
}

.notice-archive p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.notice-archive p a {
  color: var(--blue-dark);
  font-weight: 900;
}

.notice-archive p a:hover {
  color: var(--teal-dark);
}

.event-detail-page .article-detail {
  max-width: 900px;
  margin-inline: auto;
}

.event-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 18px 0 22px;
}

.event-detail-meta span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  background: rgba(83, 194, 204, 0.1);
  border: 1px solid rgba(83, 194, 204, 0.24);
  border-radius: 999px;
}

html[data-theme="dark"] .event-list article.event-featured {
  background:
    linear-gradient(90deg, rgba(83, 194, 204, 0.12), rgba(13, 29, 49, 0.94) 44%),
    var(--panel);
  border-color: rgba(83, 194, 204, 0.28);
}

html[data-theme="dark"] .event-list time {
  color: #ffffff;
  background: linear-gradient(135deg, #10365d, #1f6fa6, #268f9a);
}

html[data-theme="dark"] .event-calendar-head a,
html[data-theme="dark"] .event-calendar-head button {
  color: #ffffff;
  background: linear-gradient(135deg, #10365d, #1f6fa6);
}

html[data-theme="dark"] .event-list article > a,
html[data-theme="dark"] .event-list article > button {
  color: var(--ink);
  background: rgba(83, 194, 204, 0.12);
  border-color: rgba(83, 194, 204, 0.24);
}

.trusted-board {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.board-column {
  padding: 19px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.section-title.compact {
  margin-bottom: 10px;
  text-align: center;
}

.section-title.compact h2 {
  font-size: 18px;
  margin-inline: auto;
}

.official-notices a {
  display: grid;
  grid-template-columns: minmax(96px, auto) minmax(0, 1fr);
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.official-notices a:last-child {
  border-bottom: 0;
}

.official-notices time {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.watch-list {
  display: grid;
  gap: 12px;
}

.watch-list article {
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(83, 194, 204, 0.1), transparent 48%),
    linear-gradient(180deg, var(--white), var(--blue-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.watch-list span,
.columnist-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.watch-list h3 {
  font-size: 23px;
}

.columnist-strip {
  margin-bottom: 20px;
}

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

.columnist-grid article {
  min-height: 174px;
  padding: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  border-radius: var(--radius);
}

.columnist-grid h3 {
  font-size: 20px;
}

.columnist-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 780px) 320px;
  gap: 24px;
  align-items: start;
  justify-content: space-between;
  padding-bottom: 30px;
}

.section-title {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--teal);
  text-align: center;
}

.section-title h2 {
  color: var(--ink);
  margin-inline: auto;
}

.section-title h2,
.widget h2 {
  font-size: 20px;
  line-height: 1.2;
}

.post-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  margin-bottom: 16px;
}

.post-image {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  background: var(--blue);
  border-radius: var(--radius);
}

.post-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(95, 136, 255, 0.34);
  mix-blend-mode: multiply;
}

.post-image.accent-teal::after {
  background: rgba(83, 194, 204, 0.42);
}

.post-image.accent-amber::after {
  background: rgba(255, 184, 77, 0.42);
}

.post-image.accent-burgundy::after {
  background: rgba(95, 136, 255, 0.44);
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.post-meta time,
.post-meta span {
  display: block;
}

.post-card h3 {
  font-size: 20px;
  line-height: 1.18;
}

.post-card p {
  margin: 12px 0 14px;
  color: var(--muted);
  line-height: 1.62;
  max-width: 66ch;
}

.read-more {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.read-more:hover {
  color: var(--teal-dark);
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
}

.share-buttons span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.share-buttons a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(23, 119, 184, 0.18);
  border-radius: 999px;
  background: rgba(83, 194, 204, 0.08);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.share-buttons a:hover {
  border-color: rgba(83, 194, 204, 0.52);
  background: rgba(83, 194, 204, 0.16);
  color: var(--teal-dark);
}

#article-share-top .share-buttons {
  margin-top: 0;
}

.article-detail-shell {
  padding-block: 28px 56px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 900px) 280px;
  gap: 34px;
  align-items: start;
  justify-content: center;
}

.article-detail {
  min-width: 0;
  padding: clamp(18px, 2.6vw, 32px) 0 0;
  background: transparent;
  text-align: center;
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.article-breadcrumb a {
  color: var(--blue-dark);
}

.article-title-frame {
  position: relative;
  max-width: 920px;
  margin: 0 auto 22px;
  padding: clamp(24px, 3vw, 38px) clamp(18px, 3vw, 42px);
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(83, 194, 204, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 255, 0.94));
  border: 1px solid rgba(83, 194, 204, 0.24);
  border-radius: 14px;
  box-shadow:
    0 18px 42px rgba(8, 40, 80, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.article-title-frame::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  content: "";
  background: linear-gradient(180deg, var(--logo-k), var(--blue), var(--teal));
}

.article-title-frame::after {
  position: absolute;
  right: -42px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  content: "";
  background: radial-gradient(circle, rgba(83, 194, 204, 0.16), transparent 66%);
  border-radius: 999px;
}

.article-detail .category {
  margin: 0 auto 14px;
}

.article-detail h1 {
  max-width: 880px;
  margin-inline: auto;
  padding: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.06;
  text-wrap: balance;
}

.article-spot {
  max-width: 760px;
  margin: 17px auto 20px;
  color: #42526c;
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 650;
  line-height: 1.45;
  text-wrap: balance;
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  justify-content: center;
  max-width: 820px;
  margin: 0 auto 24px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-detail .meta {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.article-text-tools {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 3px;
  background: rgba(246, 248, 255, 0.92);
  border: 1px solid rgba(219, 229, 244, 0.92);
  border-radius: 999px;
}

.article-text-tools button {
  display: inline-flex;
  min-width: 34px;
  height: 30px;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.article-text-tools [data-reader-action] {
  width: auto;
  padding-inline: 10px;
  font-size: 12px;
}

.article-text-tools button:hover,
.article-text-tools button:focus-visible,
.article-text-tools button.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--logo-k), var(--teal-dark));
  border-color: rgba(83, 194, 204, 0.34);
}

.article-text-tools button:active {
  transform: translateY(1px);
}

.article-text-tools button:disabled {
  opacity: 0.55;
  cursor: default;
  transform: none;
}

.article-detail img {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 8.6;
  object-fit: cover;
  margin-inline: auto;
  border: 1px solid rgba(13, 71, 112, 0.08);
  border-radius: 10px;
  box-shadow: 0 18px 38px rgba(13, 71, 112, 0.11);
}

.article-body {
  max-width: 760px;
  margin: 30px auto 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.86;
  text-align: left;
}

.article-body p {
  margin-bottom: 20px;
  text-align: justify;
  text-align-last: left;
}

.article-body .article-signature {
  margin-top: 30px;
  text-align: right;
  text-align-last: right;
  font-weight: 800;
}

.article-body .share-buttons {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.article-sidebar {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 14px;
  padding-top: 34px;
}

.article-side-card {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.article-side-card h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 17px;
}

.article-side-card a {
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.42;
}

.article-side-card p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.56;
}

.platform-list-page {
  padding-block: 30px 46px;
}

.platform-list-head {
  max-width: 880px;
  margin-bottom: 20px;
}

.platform-list-head span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.platform-list-head h1 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.05;
}

.platform-list-head .country-page-title {
  display: inline-flex;
  position: relative;
  align-items: center;
  margin-bottom: 6px;
  color: var(--logo-k);
  font-size: clamp(30px, 3.9vw, 46px);
  letter-spacing: 0;
}

.platform-list-head .country-page-title::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -10px;
  height: 3px;
  background: linear-gradient(90deg, var(--logo-k), var(--teal), transparent);
  border-radius: 999px;
}

.platform-list-head p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.platform-list-card {
  padding: clamp(18px, 2.6vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.license-filter {
  display: flex;
  gap: 14px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.license-filter label {
  display: grid;
  gap: 7px;
  width: min(100%, 520px);
}

.license-filter span {
  color: var(--logo-k);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.license-filter input {
  width: 100%;
  min-height: 42px;
  padding: 10px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  outline: none;
}

.license-filter input:focus {
  border-color: rgba(83, 194, 204, 0.8);
  box-shadow: 0 0 0 3px rgba(83, 194, 204, 0.16);
}

.license-filter strong {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.platform-list-card ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 26px;
  margin: 0;
  padding-left: 28px;
}

.platform-list-card li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.4;
}

.platform-list-card li a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.platform-list-card li a:hover {
  color: var(--teal-dark);
  transform: translateX(3px);
}

.platform-data-card {
  padding: 0;
  overflow: hidden;
}

.platform-data-card .license-filter {
  margin: 0;
  padding: 18px clamp(18px, 2.6vw, 30px) 16px;
}

.platform-table-wrap {
  overflow-x: auto;
}

.platform-data-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.platform-data-table th,
.platform-data-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
  text-align: left;
  vertical-align: middle;
}

.platform-data-table th {
  color: var(--logo-k);
  background: rgba(246, 248, 255, 0.92);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.platform-data-table tbody tr:hover {
  background: rgba(83, 194, 204, 0.06);
}

.platform-data-table a {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: none;
}

.platform-data-table a:hover {
  color: var(--logo-k);
}

.platform-rank {
  width: 54px;
  color: var(--muted);
  font-weight: 900;
}

.platform-name {
  min-width: 340px;
  font-weight: 850;
}

.platform-brand {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  color: var(--logo-k);
  background: rgba(83, 194, 204, 0.12);
  border: 1px solid rgba(83, 194, 204, 0.28);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.mica-country-card + .mica-country-card {
  margin-top: 22px;
}

.country-list-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.country-list-head strong {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.country-list-head h2,
.country-chart h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.12;
}

.mica-country-list {
  display: grid;
  gap: 16px;
}

.mica-country-item {
  padding: 16px;
  background: linear-gradient(180deg, rgba(83, 194, 204, 0.08), rgba(255, 255, 255, 0));
  border: 1px solid var(--line);
  border-radius: 10px;
}

.mica-country-item header {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.mica-country-item h3 {
  margin: 0;
  color: var(--logo-k);
  font-size: 18px;
}

.mica-country-item header span {
  flex: 0 0 auto;
  padding: 6px 10px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.mica-country-item ol {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0 20px;
  margin: 0;
  padding-left: 18px;
}

.mica-country-item li {
  padding: 8px 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.country-chart {
  display: grid;
  gap: 20px;
}

.country-visual-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(420px, 1.1fr);
  gap: 20px;
  align-items: stretch;
}

.country-chart-list {
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 560px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(83, 194, 204, 0.08), rgba(255, 255, 255, 0.96)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.country-bar {
  display: grid;
  grid-template-columns: minmax(108px, 148px) minmax(90px, 1fr) 34px;
  gap: 10px;
  align-items: center;
  min-height: 18px;
}

.country-bar-label {
  color: var(--ink);
  font-size: 11.8px;
  font-weight: 850;
  line-height: 1.15;
}

.country-bar-track {
  display: block;
  height: 8px;
  overflow: hidden;
  background: rgba(8, 40, 80, 0.08);
  border-radius: 999px;
}

.country-bar-track span {
  display: block;
  width: var(--bar);
  height: 100%;
  background: linear-gradient(90deg, var(--logo-k), var(--teal));
  border-radius: inherit;
}

.country-bar strong {
  color: var(--logo-k);
  font-size: 11.8px;
  font-weight: 950;
  text-align: right;
}

.europe-map-panel {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 560px;
  padding: 18px;
  background:
    radial-gradient(circle at 86% 0%, rgba(83, 194, 204, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(8, 40, 80, 0.03), rgba(255, 255, 255, 0.96)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.europe-map-panel h3 {
  margin: 0;
  color: var(--logo-k);
  font-size: 18px;
  line-height: 1.15;
  text-align: center;
}

.europe-map {
  display: block;
  width: 100%;
  height: auto;
  min-height: 500px;
  max-height: 540px;
  overflow: visible;
  background: #031326;
  border: 1px solid rgba(83, 194, 204, 0.28);
  border-radius: 14px;
  box-shadow: inset 0 0 34px rgba(83, 194, 204, 0.14);
}

.eu-sea {
  fill: transparent;
}

.eu-region-shadow {
  display: none;
}

.eu-map-image {
  pointer-events: none;
}

.eu-country {
  cursor: pointer;
  outline: none;
}

.eu-country-shape {
  fill: transparent;
  stroke: transparent;
  stroke-width: 5;
  stroke-linejoin: round;
  transition: fill 0.2s ease, stroke 0.2s ease, filter 0.2s ease;
}

.eu-country-hit {
  fill: transparent;
  stroke: transparent;
  pointer-events: all;
}

.eu-country:hover .eu-country-shape,
.eu-country:focus .eu-country-shape {
  fill: transparent;
  stroke: transparent;
  filter: none;
}

.eu-country:hover .eu-country-hit,
.eu-country:focus .eu-country-hit {
  fill: transparent;
  stroke: transparent;
  stroke-width: 0;
}

.eu-tooltip {
  opacity: 0;
  pointer-events: none;
  transform-box: fill-box;
  transition: opacity 0.16s ease;
}

.eu-tooltip rect {
  fill: #fff;
  stroke: rgba(13, 71, 112, 0.18);
  filter: drop-shadow(0 10px 18px rgba(13, 71, 112, 0.18));
}

.eu-tooltip text {
  fill: var(--ink);
  font-size: 11px;
  font-weight: 850;
}

.eu-country:hover .eu-tooltip,
.eu-country:focus .eu-tooltip {
  opacity: 1;
}

.mica-register-card {
  overflow: hidden;
}

.register-status {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
}

.register-note {
  margin: 0 0 14px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(83, 194, 204, 0.08);
  border: 1px solid rgba(83, 194, 204, 0.24);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.register-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.register-summary strong {
  color: var(--ink);
  font-size: 16px;
}

.register-summary a {
  display: inline-flex;
  margin-left: 10px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
}

.register-tools {
  display: flex;
  gap: 14px;
  align-items: end;
  justify-content: space-between;
  margin: 0 0 16px;
}

.register-search {
  display: grid;
  gap: 7px;
  width: min(100%, 520px);
}

.register-search span {
  color: var(--logo-k);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.register-search input {
  width: 100%;
  min-height: 42px;
  padding: 10px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.register-search input:focus {
  border-color: rgba(83, 194, 204, 0.8);
  box-shadow: 0 0 0 3px rgba(83, 194, 204, 0.16);
}

.register-count {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.register-table-wrap {
  overflow-x: auto;
}

.register-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: var(--ink);
  font-size: 13px;
}

.register-table th,
.register-table td {
  padding: 10px 11px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.register-table th {
  color: var(--logo-k);
  background: var(--blue-soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.register-table td {
  font-weight: 650;
  line-height: 1.45;
}

.register-table td span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.casp-table {
  min-width: 860px;
}

.service-list {
  display: grid;
  gap: 4px;
  margin: 0;
  padding-left: 16px;
}

.service-list li {
  padding: 0;
  border: 0;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.pagination span,
.pagination a,
.pagination button {
  padding: 8px 11px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  font: inherit;
  cursor: pointer;
}

.pagination span {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-color: var(--teal);
}

.sidebar {
  display: grid;
  gap: 16px;
}

.widget {
  padding: 16px;
}

.widget h2 {
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--teal);
  text-align: center;
}

.popular a,
.categories a,
.publications a {
  display: grid;
  gap: 4px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.popular a:last-child,
.categories a:last-child,
.publications a:last-child {
  border-bottom: 0;
}

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

.popular a,
.categories a,
.publications a {
  color: var(--ink);
  font-size: 14px;
}

.publications-band {
  margin-bottom: 34px;
}

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

.publication-grid article {
  min-height: 230px;
  padding: 21px;
  background:
    linear-gradient(145deg, rgba(168, 224, 229, 0.12), transparent 44%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.publication-grid span {
  color: var(--blue);
}

.publication-grid h3 {
  font-size: 24px;
}

.publication-grid p {
  color: var(--muted);
}

.publication-grid a {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.login-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 10%, rgba(168, 224, 229, 0.52), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(95, 136, 255, 0.26), transparent 30%),
    linear-gradient(135deg, #f7fdff, #eef3ff 52%, #f8fdff);
}

.member-login-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px 20px;
}

.member-login-panel {
  position: relative;
  width: min(460px, 100%);
  padding: clamp(24px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(8, 40, 80, 0.14);
}

html[data-theme="dark"] .login-page {
  background:
    radial-gradient(circle at 20% 10%, rgba(83, 194, 204, 0.18), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(95, 136, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #07111f, #081528 52%, #081221);
}

.member-login-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.member-login-brand img {
  width: 128px;
}

.member-login-brand span {
  max-width: 150px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.18;
}

.member-login-intro {
  margin-bottom: 22px;
}

.member-login-intro span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.member-login-intro h1 {
  padding: 0;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.12;
  white-space: nowrap;
}

.member-login-form {
  display: grid;
  gap: 14px;
}

.member-login-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.member-login-form input[type="email"],
.member-login-form input[type="password"] {
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.member-login-options {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.member-login-options label {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  font-weight: 700;
}

.member-login-options a {
  color: var(--blue-dark);
  font-weight: 900;
}

.member-login-form button {
  min-height: 48px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--logo-k), var(--blue-dark), var(--teal));
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.google-login-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  margin-top: 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(8, 40, 80, 0.14);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(8, 40, 80, 0.08);
}

.google-login-button:hover {
  border-color: rgba(83, 194, 204, 0.46);
  box-shadow: 0 14px 30px rgba(8, 40, 80, 0.12);
  transform: translateY(-1px);
}

.google-mark {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: transparent;
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.writers-hero {
  margin-block: 22px 20px;
  padding: clamp(28px, 4vw, 46px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 8%, rgba(168, 224, 229, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(8, 40, 80, 0.98), rgba(23, 119, 184, 0.94), rgba(83, 194, 204, 0.9));
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(8, 40, 80, 0.16);
}

.writers-hero span {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.writers-hero h1 {
  max-width: 820px;
  padding: 0;
  font-size: clamp(32px, 3.4vw, 46px);
}

.writers-hero-title {
  display: grid;
  gap: 6px;
  text-align: left;
}

.writers-hero-title span {
  display: block;
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-transform: none;
}

.writers-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.62;
}

.writers-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
  padding-bottom: 34px;
}

.writers-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(48, 55, 79, 0.05);
}

.writers-tabs a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.writers-tabs a.active,
.writers-tabs a:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--logo-k), var(--blue-dark));
  border-color: transparent;
}

.writer-picker {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 0;
  margin-bottom: 18px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.writer-picker-head {
  display: grid;
  align-items: center;
  padding: 14px 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--logo-k), var(--blue-dark));
}

.writer-picker-head span {
  color: inherit;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.writer-picker-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 12px;
}

.writer-picker-list a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.writer-picker-list a:hover {
  color: var(--blue-dark);
  border-color: rgba(83, 194, 204, 0.5);
  box-shadow: 0 8px 18px rgba(48, 55, 79, 0.08);
}

.daily-writers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.daily-writers article {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 16px;
  min-height: 220px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.daily-writer-photo {
  display: block;
  width: 104px;
  height: 104px;
  overflow: hidden;
  background: var(--white);
  border: 2px solid rgba(83, 194, 204, 0.42);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(8, 40, 80, 0.12);
}

.daily-writer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.daily-writers span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.daily-writers h2 {
  max-width: 520px;
  color: var(--ink);
  font-size: clamp(22px, 2.1vw, 28px);
}

.daily-writers p {
  margin: 12px 0 14px;
  color: var(--muted);
  line-height: 1.58;
}

.daily-writers a {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
}

.daily-writers time {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.writer-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

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

.writer-card,
.writer-post-list article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.writer-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  padding: 18px;
}

.writer-card:hover,
.writer-post-list article:hover,
.daily-writers article:hover {
  border-color: rgba(95, 136, 255, 0.26);
  box-shadow: var(--shadow-lift);
  transform: translateY(-1px);
}

.writer-avatar {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--logo-k), var(--blue), var(--teal));
  border-radius: 50%;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(8, 40, 80, 0.16);
}

.writer-avatar.writer-photo {
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 2px solid rgba(83, 194, 204, 0.42);
}

.writer-avatar.writer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.writer-card span,
.writer-post-list span {
  display: block;
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.writer-card h2 {
  font-size: 22px;
}

.writer-card p,
.writer-post-list p {
  margin: 10px 0 12px;
  color: var(--muted);
  line-height: 1.58;
}

.writer-card a,
.writer-post-list a {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
}

.writer-post-title {
  margin-top: 26px;
}

.writer-post-list {
  display: grid;
  gap: 14px;
}

.writer-post-list article {
  padding: 20px;
}

.writer-post-list h3 {
  font-size: 23px;
}

.writers-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 58px;
}

.writers-agenda a {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.writers-agenda a:last-child {
  border-bottom: 0;
}

.writers-agenda strong {
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
}

.writers-agenda span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  padding-block: 24px;
  background:
    radial-gradient(circle at 84% 0%, rgba(168, 224, 229, 0.28), transparent 30%),
    linear-gradient(135deg, #30374f, #3f63d9 58%, #53c2cc);
  color: rgba(255, 255, 255, 0.76);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px 24px;
  align-items: center;
}

.footer-brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-width: 280px;
}

.footer-brand img {
  width: 108px;
  height: auto;
  padding: 4px 5px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(48, 55, 79, 0.18);
}

.footer-brand span {
  position: relative;
  max-width: 220px;
  padding-left: 12px;
  color: var(--white);
  font-family: Inter, "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.footer-brand span::before {
  position: absolute;
  inset: -1px auto -1px 0;
  width: 2px;
  content: "";
  background: rgba(168, 224, 229, 0.86);
  border-radius: 999px;
}

.footer-inner small {
  grid-column: 1 / -1;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.footer-inner nav {
  display: flex;
  justify-content: end;
  gap: 9px 16px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 800;
}

.footer-inner nav a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner nav a:hover {
  color: var(--white);
}

html[data-theme="dark"] .brand span,
html[data-theme="dark"] .section-title h2,
html[data-theme="dark"] .widget h2,
html[data-theme="dark"] .platform-list-head h1,
html[data-theme="dark"] .article-detail h1,
html[data-theme="dark"] .writers-hero h1,
html[data-theme="dark"] .calendar-month h3,
html[data-theme="dark"] .platform-data-table th,
html[data-theme="dark"] .platform-rank,
html[data-theme="dark"] .platform-name {
  color: var(--ink);
}

html[data-theme="dark"] .brand img,
html[data-theme="dark"] .footer-brand img,
html[data-theme="dark"] .member-login-brand img {
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
}

html[data-theme="dark"] .nav-bar,
html[data-theme="dark"] .market-ticker {
  box-shadow: 0 1px 0 rgba(139, 219, 226, 0.12);
}

html[data-theme="dark"] .about-panel,
html[data-theme="dark"] .contact-panel,
html[data-theme="dark"] .article-title-frame,
html[data-theme="dark"] .calendar-month,
html[data-theme="dark"] .platform-data-table th,
html[data-theme="dark"] .member-login-panel,
html[data-theme="dark"] .register-note,
html[data-theme="dark"] .europe-map-panel {
  background:
    radial-gradient(circle at 88% 0%, rgba(83, 194, 204, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(13, 29, 49, 0.96), rgba(8, 18, 32, 0.92));
  border-color: var(--line);
}

html[data-theme="dark"] .main-headline,
html[data-theme="dark"] .headline-stack article,
html[data-theme="dark"] .post-card,
html[data-theme="dark"] .widget,
html[data-theme="dark"] .headline-calendar,
html[data-theme="dark"] .platform-list-card,
html[data-theme="dark"] .article-side-card,
html[data-theme="dark"] .writer-card,
html[data-theme="dark"] .writer-post-list article,
html[data-theme="dark"] .daily-writers article,
html[data-theme="dark"] .country-chart-panel,
html[data-theme="dark"] .mica-register-card,
html[data-theme="dark"] .event-list article {
  background: var(--panel);
  border-color: var(--line);
}

html[data-theme="dark"] .article-spot,
html[data-theme="dark"] .headline-summary,
html[data-theme="dark"] .post-card p,
html[data-theme="dark"] .article-side-card p,
html[data-theme="dark"] .platform-list-head p,
html[data-theme="dark"] .writer-card p,
html[data-theme="dark"] .writer-post-list p,
html[data-theme="dark"] .calendar-detail p,
html[data-theme="dark"] .register-status,
html[data-theme="dark"] .register-count,
html[data-theme="dark"] .register-table td span,
html[data-theme="dark"] .newsletter p,
html[data-theme="dark"] .publication-grid p,
html[data-theme="dark"] .member-login-options {
  color: var(--muted);
}

html[data-theme="dark"] .register-summary strong,
html[data-theme="dark"] .register-table,
html[data-theme="dark"] .register-table td,
html[data-theme="dark"] .service-list li,
html[data-theme="dark"] .country-bar strong,
html[data-theme="dark"] .writers-agenda span,
html[data-theme="dark"] .popular a,
html[data-theme="dark"] .categories a,
html[data-theme="dark"] .publications a,
html[data-theme="dark"] .member-login-form label,
html[data-theme="dark"] .member-login-brand span {
  color: var(--ink);
}

html[data-theme="dark"] .register-summary a,
html[data-theme="dark"] .register-search span,
html[data-theme="dark"] .license-filter span,
html[data-theme="dark"] .publication-grid span,
html[data-theme="dark"] .publication-grid a,
html[data-theme="dark"] .member-login-intro span,
html[data-theme="dark"] .member-login-options a,
html[data-theme="dark"] .writers-agenda strong {
  color: var(--teal-dark);
}

html[data-theme="dark"] .register-table th {
  color: var(--ink);
  background: rgba(19, 38, 64, 0.96);
}

html[data-theme="dark"] .register-table th,
html[data-theme="dark"] .register-table td,
html[data-theme="dark"] .popular a,
html[data-theme="dark"] .categories a,
html[data-theme="dark"] .publications a {
  border-color: var(--line);
}

html[data-theme="dark"] .pagination a,
html[data-theme="dark"] .pagination button {
  color: var(--ink);
  background: rgba(8, 18, 32, 0.76);
  border-color: var(--line);
}

html[data-theme="dark"] .pagination span {
  color: #ffffff;
}

html[data-theme="dark"] .publication-grid article,
html[data-theme="dark"] .writers-tabs,
html[data-theme="dark"] .writer-picker {
  background: var(--panel);
  border-color: var(--line);
}

html[data-theme="dark"] .writers-tabs a {
  color: var(--ink);
  background: rgba(8, 18, 32, 0.76);
  border-color: var(--line);
}

html[data-theme="dark"] .writers-tabs a.active,
html[data-theme="dark"] .writers-tabs a:hover {
  color: #ffffff;
}

html[data-theme="dark"] .member-login-form input[type="email"],
html[data-theme="dark"] .member-login-form input[type="password"] {
  color: var(--ink);
  background: rgba(8, 18, 32, 0.78);
  border-color: var(--line);
}

html[data-theme="dark"] .member-login-form button {
  color: #ffffff;
  background: linear-gradient(135deg, #10365d, #1f6fa6, #268f9a);
}

html[data-theme="dark"] .spk-menu {
  color: var(--ink);
  background: rgba(13, 29, 49, 0.98);
  border-color: var(--line);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32);
}

html[data-theme="dark"] .spk-menu::before {
  background: rgba(13, 29, 49, 0.98);
  border-color: var(--line);
}

html[data-theme="dark"] .spk-menu section {
  background: rgba(8, 18, 32, 0.62);
  border-color: var(--line);
}

html[data-theme="dark"] .spk-menu-head strong,
html[data-theme="dark"] .spk-menu h3,
html[data-theme="dark"] .spk-source {
  color: var(--teal-dark);
}

html[data-theme="dark"] .spk-menu-head span,
html[data-theme="dark"] .spk-menu li {
  color: var(--ink);
}

html[data-theme="dark"] .eu-tooltip rect {
  fill: rgba(8, 18, 32, 0.96);
  stroke: rgba(139, 219, 226, 0.34);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.24));
}

html[data-theme="dark"] .eu-tooltip text {
  fill: var(--ink);
}

html[data-theme="dark"] .calendar-day {
  background: rgba(16, 31, 52, 0.82);
  border-color: var(--line);
}

html[data-theme="dark"] .calendar-day.is-muted {
  background: rgba(8, 18, 32, 0.54);
}

html[data-theme="dark"] .calendar-day.has-event {
  background:
    radial-gradient(circle at 88% 12%, rgba(83, 194, 204, 0.2), transparent 34%),
    rgba(13, 39, 60, 0.92);
}

html[data-theme="dark"] .platform-data-table tbody tr:hover,
html[data-theme="dark"] .register-table tbody tr:hover {
  background: rgba(83, 194, 204, 0.08);
}

html[data-theme="dark"] .google-login-button,
html[data-theme="dark"] .article-text-tools,
html[data-theme="dark"] .article-text-tools button,
html[data-theme="dark"] .register-search input,
html[data-theme="dark"] .license-filter input {
  color: var(--ink);
  background: rgba(8, 18, 32, 0.76);
  border-color: var(--line);
}

@media (max-width: 960px) {
  .brand-area,
  .headline-grid,
  .news-pulse,
  .layout,
  .writers-layout,
  .intelligence-hero,
  .about-panel,
  .contact-panel,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .post-card {
    grid-template-columns: 220px minmax(0, 1fr);
  }

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

  .kvhs-calendar {
    grid-template-columns: 1fr;
  }

  .calendar-grid {
    grid-template-columns: 1fr;
  }

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

  .writers-sidebar {
    position: static;
  }

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

  .nav-inner {
    flex-wrap: wrap;
    overflow-x: visible;
    justify-content: center;
  }

  .nav-search {
    flex: 1 0 100%;
    margin-right: 0;
    margin-left: 0;
    padding: 8px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    order: 2;
  }

  .spk-menu {
    left: 50%;
    width: min(720px, calc(100vw - 24px));
    transform: translate(-50%, 8px);
  }

  .spk-dropdown:hover .spk-menu,
  .spk-dropdown:focus-within .spk-menu {
    transform: translate(-50%, 0);
  }

  .spk-menu-grid {
    grid-template-columns: 1fr;
  }

  .spk-menu ol {
    columns: 1;
  }

  .footer-brand {
    min-width: 280px;
  }

  .footer-inner nav {
    justify-content: start;
  }
}

@media (max-width: 640px) {
  .strip-inner,
  .strip-actions {
    display: grid;
  }

  .strip-time {
    flex-wrap: wrap;
    justify-content: center;
    margin-left: 0;
  }

  .social-links {
    display: flex;
  }

  .brand-area {
    justify-items: start;
    padding-right: 64px;
  }

  .brand {
    align-items: flex-start;
    gap: 9px;
    width: fit-content;
    max-width: 100%;
    padding: 0;
  }

  .brand img {
    width: min(44vw, 154px);
  }

  .brand span {
    max-width: 100%;
    padding-left: 11px;
    font-size: 15px;
    white-space: normal;
  }

  .brand-globe {
    right: 12px;
    width: 44px;
    height: 44px;
  }

  .spk-menu {
    top: calc(100% + 6px);
    width: calc(100vw - 40px);
    max-height: 72vh;
    padding: 14px;
  }

  .spk-menu-head {
    display: grid;
    gap: 4px;
  }

  .spk-menu-head span {
    text-align: left;
  }

  .about-panel {
    padding: 26px 18px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .contact-actions {
    justify-items: center;
  }

  .about-copy p,
  .contact-copy p {
    font-size: 17px;
    line-height: 1.68;
    text-align: justify;
    text-indent: 22px;
  }

  .post-card {
    grid-template-columns: 1fr;
  }

  .post-image {
    min-height: 220px;
  }

  .search div,
  .newsletter form {
    grid-template-columns: 1fr;
  }

  .nav-search div {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .footer-brand {
    align-items: center;
    flex-direction: row;
    gap: 10px;
  }

  .footer-brand img {
    width: 98px;
  }

  .footer-brand span {
    max-width: 220px;
    white-space: nowrap;
  }

  .publication-grid {
    grid-template-columns: 1fr;
  }

  .intel-metrics,
  .pulse-list,
  .trusted-board,
  .columnist-grid,
  .daily-writers,
  .writer-grid {
    grid-template-columns: 1fr;
  }

  .daily-writers article {
    min-height: 0;
  }

  .writer-picker {
    grid-template-columns: 1fr;
  }

  .writer-picker-list {
    align-items: stretch;
  }

  .writer-picker-list a {
    flex: 1 1 160px;
    justify-content: center;
  }

  .daily-writers article {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .daily-writer-photo {
    width: 72px;
    height: 72px;
  }

  .writer-card {
    grid-template-columns: 62px minmax(0, 1fr);
    padding: 16px;
  }

  .writer-avatar {
    width: 58px;
    height: 58px;
    font-size: 17px;
  }

  .pulse-title {
    border-radius: 4px 4px 0 0;
  }

  .pulse-list a {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .event-calendar-head,
  .event-list article {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .event-calendar-head {
    display: grid;
  }

  .calendar-grid {
    grid-template-columns: 1fr;
  }

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

  .article-detail {
    padding-top: 18px;
  }

  .article-detail h1 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .article-meta-row {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .article-body {
    max-width: none;
    font-size: 17px;
    line-height: 1.78;
  }

  .article-sidebar {
    position: static;
    padding-top: 0;
  }

  .platform-list-card ol {
    grid-template-columns: 1fr;
  }

  .license-filter,
  .notice-archive article {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .license-filter {
    display: grid;
  }

  .license-filter strong {
    justify-self: start;
  }

  .country-visual-grid {
    grid-template-columns: 1fr;
  }

  .country-chart-list,
  .europe-map-panel {
    min-height: 0;
  }

  .europe-map {
    min-height: 260px;
    max-height: none;
  }

  .mica-country-item header,
  .country-bar {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .mica-country-item header {
    display: grid;
  }

  .mica-country-item header span {
    justify-self: start;
  }

  .mica-country-item ol {
    grid-template-columns: 1fr;
  }

  .country-bar {
    gap: 7px;
  }

  .country-bar strong {
    text-align: left;
  }

  .register-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .register-count {
    align-self: flex-start;
  }

  .event-list time {
    width: 64px;
    min-height: 64px;
  }

  .footer-inner nav {
    gap: 8px 12px;
  }
}

@media (max-width: 430px) {
  .footer-brand {
    min-width: 0;
  }

  .footer-brand span {
    max-width: 190px;
    white-space: normal;
  }
}

@media print {
  .site-header,
  .site-footer,
  .article-sidebar,
  .article-text-tools,
  .share-buttons {
    display: none !important;
  }

  body {
    color: #111827;
    background: #ffffff;
  }

  .container,
  .article-detail,
  .article-body {
    width: 100%;
    max-width: none;
  }

  .article-detail-shell {
    padding: 0;
  }

  .article-title-frame,
  .article-detail img {
    box-shadow: none;
  }
}
