:root {
  --blue-950: #061b3a;
  --blue-900: #082651;
  --blue-800: #0a3572;
  --blue-700: #0d4c9a;
  --blue-600: #1266c3;
  --blue-500: #1689d8;
  --cyan-400: #16c4e8;
  --green-500: #18a058;
  --gold-500: #d8a21b;
  --ink: #122033;
  --muted: #66758a;
  --line: #dce7f4;
  --soft: #f3f8fd;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(6, 27, 58, 0.12);
  --shadow-soft: 0 10px 28px rgba(6, 27, 58, 0.08);
  --shadow-strong: 0 26px 70px rgba(6, 27, 58, 0.18);
  --radius: 8px;
  --pill: 999px;
  --container: 1180px;
  --font-body: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: Sora, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7fbff 0, #ffffff 360px),
    var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: auto;
}

h1,
h2,
h3,
.section-kicker,
.btn,
.nav-links a,
.brand-tagline,
.stat strong,
.filter-btn,
.badge,
.media-chip {
  font-family: var(--font-heading);
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

:focus-visible {
  outline: 3px solid rgba(22, 137, 216, 0.36);
  outline-offset: 3px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 3px;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--cyan-400), var(--blue-500), var(--green-500));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 231, 244, 0.8);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.24s ease, background 0.24s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 34px rgba(6, 27, 58, 0.08);
}

.topbar {
  background: var(--blue-950);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.85rem;
}

.topbar .container {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  font-weight: 900;
  line-height: 1;
}

.topbar-links .social-link {
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.topbar-links .social-link svg {
  width: 15px;
  height: 15px;
}

.topbar-links .social-link:hover {
  transform: translateY(-1px);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 0;
}

.brand img {
  width: 156px;
  height: 62px;
  object-fit: contain;
  padding: 0;
  border-radius: 0;
  background: transparent;
  filter: none;
}

.brand-tagline {
  width: clamp(118px, 9vw, 168px);
  max-width: 168px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
  color: var(--blue-900);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.15;
  text-wrap: balance;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 6px;
  border: 1px solid rgba(220, 231, 244, 0.76);
  border-radius: var(--pill);
  background: rgba(243, 248, 253, 0.72);
}

.nav-links a {
  color: var(--blue-950);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 9px 12px;
  border-radius: var(--pill);
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--white);
  color: var(--blue-700);
  box-shadow: 0 8px 18px rgba(6, 27, 58, 0.07);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.nav-actions .btn {
  flex: 0 0 auto;
  min-width: max-content;
  white-space: nowrap;
}

.nav-actions .btn span {
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--pill);
  color: var(--blue-950);
  font-size: 1.2rem;
  font-weight: 900;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: var(--pill);
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  position: relative;
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn svg,
.share-button svg,
.social-link svg,
.floating-action svg {
  width: 1.12em;
  height: 1.12em;
  flex: 0 0 auto;
  fill: currentColor;
}

.social-instagram svg rect,
.social-instagram svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.social-instagram svg .icon-dot {
  fill: currentColor;
  stroke: none;
}

.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.btn-disabled {
  cursor: default;
  opacity: 0.72;
  pointer-events: none;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 16px 34px rgba(13, 76, 154, 0.24);
}

.btn-secondary {
  color: var(--blue-900);
  background: var(--white);
  border-color: var(--line);
  box-shadow: 0 10px 24px rgba(6, 27, 58, 0.06);
}

.btn-ghost {
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
}

.hero .btn-ghost,
.section-dark .btn-ghost {
  color: var(--white);
}

.btn-whatsapp {
  color: var(--white);
  background: linear-gradient(135deg, #25d366, #128c4a);
  box-shadow: 0 14px 30px rgba(24, 160, 88, 0.22);
}

.btn-primary:hover,
.btn-whatsapp:hover {
  box-shadow: var(--shadow);
}

@media (max-width: 1320px) and (min-width: 761px) {
  .brand-tagline {
    display: none;
  }
}

@media (max-width: 1220px) and (min-width: 761px) {
  .nav {
    gap: 14px;
  }

  .nav-links a {
    padding-inline: 9px;
    font-size: 0.86rem;
  }

  .nav-actions .btn {
    min-height: 40px;
    padding: 9px 13px;
    gap: 7px;
    font-size: 0.88rem;
  }
}

.hero {
  position: relative;
  z-index: 2;
  min-height: 748px;
  overflow: visible;
  isolation: isolate;
  color: var(--white);
  background: var(--blue-950);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 24%;
  opacity: 0.98;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 27, 58, 0.98) 0%, rgba(6, 27, 58, 0.84) 42%, rgba(6, 27, 58, 0.22) 100%),
    linear-gradient(0deg, rgba(6, 27, 58, 0.58), rgba(6, 27, 58, 0.04));
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(0deg, rgba(6, 27, 58, 0.68), transparent);
  pointer-events: none;
  z-index: 1;
}

.hero > .container:not(.hero-stats) {
  position: relative;
  z-index: 2;
  min-height: 748px;
  display: grid;
  align-items: center;
  padding: 86px 0 110px;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-radius: var(--pill);
  background: rgba(22, 196, 232, 0.14);
  color: #dff9ff;
  border: 1px solid rgba(22, 196, 232, 0.42);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.7rem, 7vw, 6.1rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 span,
.page-hero h1 span {
  color: #79e5ff;
}

.hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin-top: 24px;
}

.hero-mini {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
}

.hero-mini strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.15;
}

.hero-mini span {
  display: block;
  margin-top: 3px;
  font-size: 0.78rem;
}

.hero-stats {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 44%);
  z-index: 10;
  width: min(1120px, calc(100% - 48px));
  min-height: 0;
  padding: 0;
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 255, 0.96)),
    var(--white);
  box-shadow: 0 28px 70px rgba(5, 26, 55, 0.24);
  border: 1px solid rgba(194, 213, 235, 0.88);
  border-radius: 22px;
  overflow: hidden;
}

.stats-grid::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), #ffc928, var(--blue-700));
}

.stat {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 5px 12px;
  align-items: center;
  align-content: center;
  min-height: 92px;
  padding: 18px 20px;
  min-width: 0;
}

.stat + .stat {
  border-left: 1px solid rgba(194, 213, 235, 0.74);
}

.stat-icon {
  grid-row: span 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--blue-950);
  background:
    linear-gradient(180deg, rgba(22, 196, 232, 0.2), rgba(255, 201, 40, 0.18)),
    #eef9ff;
  border: 1px solid rgba(22, 137, 216, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 12px 22px rgba(8, 38, 81, 0.1);
}

.stat-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat strong {
  display: block;
  color: var(--blue-950);
  font-size: clamp(1.12rem, 1.35vw, 1.38rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.stat > span:not(.stat-icon) {
  display: block;
  color: #526176;
  font-size: 0.74rem;
  line-height: 1.16;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

@media (max-width: 1220px) and (min-width: 761px) {
  .hero-bg img {
    object-position: 64% 18%;
  }

  .stat {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 5px 10px;
    padding: 16px 14px;
  }

  .stat-icon {
    width: 36px;
    height: 36px;
  }

  .stat-icon svg {
    width: 19px;
    height: 19px;
  }

  .stat strong {
    font-size: clamp(0.9rem, 1.8vw, 1.04rem);
  }
}

.hero + .section {
  z-index: 1;
  padding-top: 112px;
}

.quick-access-section {
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 72%),
    var(--white);
  padding-top: 88px;
  padding-bottom: 32px;
}

.hero + .section.quick-access-section {
  padding-top: 88px;
}

.quick-access-section + .section {
  padding-top: 66px;
}

.quick-access-panel {
  position: relative;
  display: grid;
  gap: 20px;
  padding: clamp(20px, 3vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(194, 213, 235, 0.9);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 0%, rgba(22, 196, 232, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96));
  box-shadow: 0 24px 70px rgba(6, 27, 58, 0.1);
}

.quick-access-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue-700), var(--cyan-400), #ffc928);
}

.quick-access-copy {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 1fr);
  gap: 18px;
  align-items: end;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(194, 213, 235, 0.72);
}

.quick-access-panel .quick-access-copy h2 {
  position: relative;
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.08;
}

.quick-access-copy .section-kicker {
  grid-column: 1 / -1;
  color: var(--blue-600);
  margin-bottom: -10px;
}

.quick-access-copy p {
  position: relative;
  margin: 0;
  color: #526176;
  font-weight: 800;
  line-height: 1.58;
}

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

.quick-card {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 5px 14px;
  align-content: center;
  min-height: 126px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(194, 213, 235, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(6, 27, 58, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.quick-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-700), var(--cyan-400), #ffc928);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.quick-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 137, 216, 0.42);
  background: var(--white);
  box-shadow: 0 22px 46px rgba(6, 27, 58, 0.12);
}

.quick-card:hover::after {
  opacity: 1;
}

.quick-icon {
  grid-row: 1 / span 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--blue-950);
  background:
    linear-gradient(180deg, rgba(22, 196, 232, 0.18), rgba(255, 201, 40, 0.16)),
    #eef9ff;
  border: 1px solid rgba(22, 137, 216, 0.22);
}

.quick-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-card strong {
  color: var(--blue-950);
  font-size: 0.98rem;
  line-height: 1.18;
}

.quick-card small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.36;
  font-weight: 800;
}

.section {
  padding: 82px 0;
  position: relative;
}

#atuacao.section {
  padding-bottom: 58px;
}

#noticias.section {
  padding-top: 64px;
}

.section-soft {
  background:
    linear-gradient(180deg, #f3f8fd, #f8fbff);
}

.section-dark {
  background: var(--blue-950);
  color: var(--white);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-kicker {
  color: var(--blue-600);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
  margin-bottom: 8px;
}

.section-dark .section-kicker {
  color: #79e5ff;
}

.section h2,
.section-title {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(1.8rem, 4vw, 3.05rem);
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-dark h2,
.section-dark .section-title {
  color: var(--white);
}

.section-lead {
  color: var(--muted);
  max-width: 720px;
  margin: 12px 0 0;
  font-size: 1.05rem;
  text-wrap: pretty;
}

.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.76);
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: #c7ddf2;
  box-shadow: 0 20px 46px rgba(6, 27, 58, 0.12);
}

.card-body {
  padding: 22px;
}

.feature-card {
  position: relative;
  padding: 28px;
  min-height: 230px;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-400));
}

.icon-box {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--blue-900);
  background: linear-gradient(135deg, #e7f7ff, #f5fbff);
  border: 1px solid #d7f0fb;
  margin-bottom: 18px;
}

.icon-box svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card:nth-child(2) .icon-box {
  color: #0d4c9a;
  background: linear-gradient(135deg, #edf6ff, #ffffff);
}

.feature-card:nth-child(3) .icon-box {
  color: #087a9c;
  background: linear-gradient(135deg, #e7fbff, #ffffff);
}

.feature-card:nth-child(4) .icon-box {
  color: #0a3572;
  background: linear-gradient(135deg, #eef4ff, #ffffff);
}

.feature-card h3,
.news-card h3,
.action-card h3 {
  margin: 0 0 10px;
  color: var(--blue-950);
  font-size: 1.18rem;
  line-height: 1.24;
  text-wrap: pretty;
}

.feature-card p,
.news-card p,
.action-card p {
  color: var(--muted);
  margin: 0;
}

.mandate-visual {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, #f4f9ff);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.mandate-photo-stack {
  position: relative;
  min-height: 390px;
}

.mandate-photo-stack img {
  position: absolute;
  object-fit: cover;
  object-position: var(--focus-x, 50%) var(--focus-y, 18%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mandate-photo-stack .photo-main {
  inset: 0 auto auto 0;
  width: 72%;
  height: 82%;
}

.mandate-photo-stack .photo-small {
  right: 0;
  width: 42%;
  height: 42%;
}

.mandate-photo-stack .photo-small.top {
  top: 18px;
  object-position: 50% 16%;
}

.mandate-photo-stack .photo-small.bottom {
  bottom: 0;
  object-position: 54% 42%;
}

.mandate-visual-copy h3 {
  margin: 0 0 12px;
  color: var(--blue-950);
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 1.04;
  text-wrap: balance;
}

.mandate-visual-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.visual-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.visual-tags span {
  padding: 8px 11px;
  border: 1px solid #cde6fb;
  border-radius: var(--pill);
  color: var(--blue-900);
  background: #e8f4ff;
  font-size: 0.82rem;
  font-weight: 900;
}

.mandate-system {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: stretch;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(6, 27, 58, 0.97), rgba(10, 53, 114, 0.95)),
    var(--blue-950);
  box-shadow: var(--shadow-soft);
}

.mandate-system-copy {
  color: var(--white);
}

.mandate-system-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.08;
  text-wrap: balance;
}

.mandate-system-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.system-steps > div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.system-steps span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #9be7ff;
  font-weight: 900;
  font-size: 0.78rem;
}

.system-steps strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.system-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.media-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--white);
}

.media-card img {
  width: 100%;
  aspect-ratio: 16 / 10.2;
  object-fit: contain;
  object-position: var(--focus-x, 50%) var(--focus-y, 20%);
  background: var(--white);
  transition: transform 0.36s ease, filter 0.36s ease;
}

.media-card:hover img {
  transform: scale(1.01);
  filter: saturate(1.05);
}

.news-card .media-thumb img,
.action-card .media-thumb img {
  object-fit: cover;
  background: #edf5fc;
}

.media-chip {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border-radius: var(--pill);
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 24px rgba(6, 27, 58, 0.14);
  font-size: 0.76rem;
  font-weight: 900;
}

.media-card .card-body {
  position: relative;
}

.media-card .card-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22, 137, 216, 0.28), transparent);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: var(--pill);
  padding: 5px 9px;
  background: #e8f4ff;
  color: var(--blue-700);
  font-weight: 800;
  font-size: 0.76rem;
}

.status-badge {
  background: #effaf4;
  color: #157246;
}

.read-link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: var(--blue-700);
  font-weight: 900;
  gap: 8px;
}

.read-link::after {
  content: ">";
  transition: transform 0.18s ease;
}

.read-link:hover::after {
  transform: translateX(3px);
}

.video-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0.95), rgba(255, 255, 255, 0.98)),
    linear-gradient(135deg, #e9f6ff, #ffffff);
}

.video-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(13, 76, 154, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(13, 76, 154, 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 70%);
}

.video-section .container {
  position: relative;
}

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

.video-grid.has-video-carousel {
  display: block;
}

.video-carousel {
  position: relative;
}

.video-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 18px;
  scrollbar-width: none;
}

.video-track::-webkit-scrollbar {
  display: none;
}

.video-track .video-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
  scroll-snap-align: start;
}

.video-arrow {
  position: absolute;
  top: var(--video-arrow-top, 28%);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(8, 43, 91, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue-950);
  box-shadow: 0 16px 36px rgba(8, 43, 91, 0.18);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.18s ease, background 0.18s ease, opacity 0.18s ease, color 0.18s ease;
}

.video-arrow:hover {
  background: var(--blue-600);
  color: #fff;
  transform: translateY(-50%) scale(1.04);
}

.video-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

.video-arrow svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.video-prev {
  left: 8px;
}

.video-next {
  right: 8px;
}

.video-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--blue-950), #0d4c9a);
  border-bottom: 1px solid var(--line);
}

.video-card.is-short .video-frame {
  aspect-ratio: 9 / 16;
  max-height: 640px;
}

.video-frame iframe,
.video-fallback img {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.video-frame iframe {
  background: #071b3a;
}

.video-fallback {
  position: relative;
  display: block;
  height: 100%;
  color: var(--white);
}

.video-fallback img {
  object-fit: cover;
  opacity: 0.82;
}

.video-fallback span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue-950);
  font-weight: 900;
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow);
}

.video-body {
  padding: 20px;
}

.video-body h3 {
  margin: 0 0 10px;
  color: var(--blue-950);
  font-size: 1.12rem;
  line-height: 1.25;
}

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

.article-video-block {
  margin: 30px 0;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid #cfe4f8;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f3f9ff, #ffffff);
  box-shadow: 0 16px 38px rgba(6, 27, 58, 0.08);
}

.article-video-block h2 {
  margin: 4px 0 8px;
  color: var(--blue-950);
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.article-video-block > p {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--muted);
}

.article-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.article-video-grid .video-card {
  box-shadow: none;
}

.video-card.is-compact .video-body {
  padding: 18px;
}

.video-card.is-compact .video-body h3 {
  font-size: 1rem;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.about-photo {
  position: relative;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.about-note {
  position: absolute;
  right: -18px;
  bottom: 22px;
  max-width: 260px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-strong);
}

.about-note strong {
  color: var(--blue-900);
}

.values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.value-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  color: var(--blue-950);
}

.value-item span {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: grid;
  place-items: center;
  border-radius: var(--pill);
  background: var(--blue-700);
  color: var(--white);
  font-size: 0.72rem;
}

.civic-section {
  background:
    linear-gradient(180deg, #ffffff, #f6fbff);
}

.civic-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 34px;
  align-items: start;
}

.civic-copy {
  min-width: 0;
}

.civic-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.civic-board > div {
  min-height: 188px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.civic-board > div:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.civic-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 30px;
  margin-bottom: 16px;
  border-radius: var(--pill);
  color: var(--blue-900);
  background: #e8f4ff;
  border: 1px solid #cde6fb;
  font-weight: 900;
  font-size: 0.78rem;
}

.civic-board strong {
  display: block;
  color: var(--blue-950);
  font-size: 1.08rem;
  line-height: 1.2;
}

.civic-board p {
  margin: 8px 0 0;
  color: var(--muted);
}

.civic-panel {
  position: sticky;
  top: 112px;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(6, 27, 58, 0.98), rgba(10, 53, 114, 0.95)),
    var(--blue-950);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.civic-panel::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 28px solid rgba(22, 196, 232, 0.12);
  border-radius: 50%;
}

.civic-photo-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.civic-photo-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 16%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.civic-panel h3 {
  position: relative;
  margin: 18px 0 18px;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.06;
  text-wrap: balance;
}

.civic-flow {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.civic-flow li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.civic-flow span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: var(--pill);
  color: var(--blue-950);
  background: var(--cyan-400);
  font-weight: 900;
}

.civic-flow p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 9px;
  margin-bottom: 26px;
  padding: 8px;
  border: 1px solid rgba(220, 231, 244, 0.7);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(6, 27, 58, 0.05);
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(8, 38, 81, 0.28) transparent;
  -webkit-overflow-scrolling: touch;
}

.action-toolbar {
  margin: 0 0 18px;
}

.action-search {
  margin-bottom: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.98)),
    var(--white);
}

.filters::-webkit-scrollbar {
  height: 6px;
}

.filters::-webkit-scrollbar-track {
  background: transparent;
}

.filters::-webkit-scrollbar-thumb {
  background: rgba(8, 38, 81, 0.24);
  border-radius: var(--pill);
}

.filter-btn {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--blue-900);
  border-radius: var(--pill);
  padding: 9px 14px;
  font-weight: 800;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.filter-btn small {
  min-width: 24px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  padding: 0 7px;
  border-radius: var(--pill);
  color: var(--blue-900);
  background: #edf6ff;
  font-size: 0.72rem;
  font-weight: 900;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--blue-900);
  color: var(--white);
  border-color: var(--blue-900);
  transform: translateY(-1px);
}

.filter-btn.active small,
.filter-btn:hover small {
  color: var(--blue-950);
  background: var(--cyan-400);
}

.search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.results-summary {
  margin: -4px 0 20px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.92rem;
}

.results-summary strong {
  color: var(--blue-950);
}

.load-more-row {
  display: flex;
  justify-content: center;
  margin: 24px 0 6px;
}

.load-more-row .btn {
  min-width: 190px;
}

.is-hidden {
  display: none !important;
}

.search-row input,
.form-grid input,
.form-grid textarea,
.form-grid select,
.admin-panel input,
.admin-panel textarea,
.admin-panel select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

.search-row input:focus,
.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus,
.admin-panel input:focus,
.admin-panel textarea:focus,
.admin-panel select:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(22, 137, 216, 0.12);
}

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

#galleryGrid {
  display: block;
}

.gallery-carousel {
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 2px 14px;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  position: relative;
  border: 0;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: #edf5fc;
  color: var(--white);
  min-height: 240px;
  box-shadow: var(--shadow-soft);
}

.gallery-track .gallery-item {
  flex: 0 0 calc((100% - 48px) / 4);
  scroll-snap-align: start;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: var(--focus-x, 50%) var(--focus-y, 18%);
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: var(--pill);
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  transform: translateY(-50%);
  transition: transform 0.18s ease, opacity 0.18s ease, box-shadow 0.18s ease;
}

.gallery-arrow:hover {
  transform: translateY(-50%) scale(1.04);
  box-shadow: var(--shadow-strong);
}

.gallery-arrow:disabled {
  opacity: 0.38;
  pointer-events: none;
}

.gallery-arrow svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.gallery-prev {
  left: -14px;
}

.gallery-next {
  right: -14px;
}

.gallery-hint {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(6, 27, 58, 0.88);
}

html.has-lightbox {
  overflow: hidden;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-height: min(82vh, 820px);
  max-width: min(100%, 1080px);
  object-fit: contain;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  cursor: pointer;
}

.lightbox > #lightboxClose,
.lightbox-nav {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.5rem;
}

.lightbox > #lightboxClose {
  top: 20px;
  right: 20px;
  z-index: 3;
}

.lightbox-nav {
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(46px, 5vw, 58px);
  height: clamp(46px, 5vw, 58px);
  background: rgba(255, 255, 255, 0.16);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.lightbox-nav:hover,
.lightbox > #lightboxClose:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.58);
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
  left: clamp(12px, 4vw, 44px);
}

.lightbox-next {
  right: clamp(12px, 4vw, 44px);
}

.lightbox-caption {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  justify-content: center;
  max-width: min(880px, calc(100% - 32px));
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--pill);
  color: var(--white);
  background: rgba(4, 18, 42, 0.62);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  text-align: center;
  transform: translateX(-50%);
  backdrop-filter: blur(12px);
}

.lightbox-caption strong {
  font-size: 0.95rem;
  line-height: 1.25;
}

.lightbox-caption span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.transparency-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.transparency-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.transparency-search-panel {
  margin-top: 30px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.transparency-search-panel label {
  display: block;
  margin: 0 0 9px 2px;
  color: rgba(155, 238, 255, 0.86);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.document-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  gap: 4px;
  align-items: center;
  min-height: 50px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
}

.document-search.has-query {
  grid-template-columns: minmax(0, 1fr) 40px 40px;
}

.document-search input {
  width: 100%;
  min-width: 0;
  min-height: 40px;
  padding: 0 10px 0 12px;
  border: 0;
  outline: 0;
  color: var(--blue-950);
  background: transparent;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 800;
}

.document-search input::placeholder {
  color: rgba(10, 29, 61, 0.44);
}

.document-search:focus-within {
  border-color: rgba(75, 181, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(75, 181, 255, 0.16);
}

.document-search-button,
.document-clear-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 13px;
  color: var(--blue-900);
  background: transparent;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.document-search-button {
  color: var(--blue-950);
  border: 1px solid rgba(10, 29, 61, 0.08);
  background: #eef7ff;
  box-shadow: none;
}

.document-clear-button {
  color: rgba(10, 29, 61, 0.54);
}

.document-search-button:hover,
.document-clear-button:hover {
  transform: translateY(-1px);
}

.document-search-button:hover {
  background: #dff1ff;
}

.document-clear-button:hover {
  color: var(--blue-900);
  background: #edf6ff;
}

.document-search-button svg,
.document-clear-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.document-clear-button.is-hidden {
  display: none;
}

.document-query-tags {
  display: none;
}

.document-search-summary {
  margin: 10px 2px 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.45;
}

.document-search-summary strong {
  color: var(--white);
}

.transparency-documents {
  min-width: 0;
}

.document-list {
  display: grid;
  gap: 10px;
  max-height: min(760px, 76vh);
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-color: rgba(255, 255, 255, 0.42) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.document-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: start;
  padding: 14px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 18px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.document-item:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(121, 229, 255, 0.28);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.document-icon {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(121, 229, 255, 0.2);
  border-radius: 14px;
  background: rgba(121, 229, 255, 0.095);
  color: #79e5ff;
}

.document-icon span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.document-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.document-copy {
  min-width: 0;
}

.document-item h3 {
  display: -webkit-box;
  margin: 0 0 4px;
  overflow: hidden;
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.document-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

.document-item .document-meta {
  color: rgba(155, 238, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 800;
}

.document-description {
  display: -webkit-box;
  margin-top: 7px !important;
  overflow: hidden;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.document-pages {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.document-pages a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(155, 238, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.document-pages a:hover {
  border-color: rgba(155, 238, 255, 0.42);
  background: rgba(22, 196, 232, 0.13);
  color: var(--white);
}

.document-related {
  display: inline-flex;
  margin-top: 7px;
  color: rgba(155, 238, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 900;
}

.document-open {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(155, 238, 255, 0.2);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.document-open svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.document-open:hover {
  transform: translateY(-1px);
  border-color: rgba(155, 238, 255, 0.48);
  background: rgba(22, 196, 232, 0.14);
}

html.has-document-viewer {
  overflow: hidden;
}

.document-viewer {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.document-viewer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.document-viewer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 14, 33, 0.76);
  backdrop-filter: blur(10px);
}

.document-viewer-dialog {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(1120px, calc(100vw - 28px));
  height: min(900px, calc(100dvh - 28px));
  border: 1px solid rgba(172, 219, 255, 0.28);
  border-radius: 22px;
  background: #f7fbff;
  box-shadow: 0 34px 110px rgba(0, 13, 37, 0.48);
}

.document-viewer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px 16px;
  border-bottom: 1px solid rgba(8, 43, 91, 0.1);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(238, 248, 255, 0.96)),
    #fff;
}

.document-viewer-counter {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(19, 130, 211, 0.11);
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.document-viewer-head h2 {
  margin: 8px 0 4px;
  color: var(--blue-950);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  line-height: 1.14;
}

.document-viewer-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.document-viewer-close {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(10, 59, 129, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--blue-950);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.document-viewer-close:hover {
  transform: translateY(-1px);
  border-color: rgba(20, 122, 211, 0.32);
  background: #edf7ff;
}

.document-viewer-close svg,
.document-viewer-nav svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.document-viewer-stage {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 0;
  background:
    radial-gradient(circle at 12% 14%, rgba(35, 199, 238, 0.16), transparent 28%),
    linear-gradient(145deg, #061b3a, #092d60);
}

.document-viewer-media {
  overflow: auto;
  display: grid;
  place-items: start center;
  min-height: 0;
  padding: 26px clamp(18px, 5vw, 74px);
  scrollbar-width: thin;
}

.document-viewer-media img,
.document-viewer-frame {
  width: min(100%, 980px);
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.32);
}

.document-viewer-media img {
  height: auto;
  object-fit: contain;
}

.document-viewer-frame {
  height: 100%;
}

.document-viewer-pdf {
  display: grid;
  gap: 14px;
  justify-items: center;
  width: min(100%, 980px);
  min-height: 100%;
}

.document-viewer-pdf .document-viewer-frame {
  width: 100%;
}

.document-viewer-pdf-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-950);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.document-viewer-pdf-open:hover {
  background: #fff;
  transform: translateY(-1px);
}

.document-viewer-error {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  width: min(100%, 680px);
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue-950);
  text-align: center;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.25);
}

.document-viewer-error strong {
  font-size: 1rem;
  font-weight: 900;
}

.document-viewer-error span {
  max-width: 420px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

.document-viewer-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-950);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.18s ease, background 0.18s ease, opacity 0.18s ease;
}

.document-viewer-nav:hover {
  transform: translateY(-50%) scale(1.04);
  background: #fff;
}

.document-viewer-nav.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.document-viewer-prev {
  left: 18px;
}

.document-viewer-next {
  right: 18px;
}

.document-viewer-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 18px;
  border-top: 1px solid rgba(8, 43, 91, 0.1);
  background: rgba(255, 255, 255, 0.96);
}

.document-viewer-pages {
  display: flex;
  flex: 0 1 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}

.document-viewer-pages button,
.document-viewer-pages span {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  border: 1px solid rgba(10, 59, 129, 0.14);
  border-radius: 999px;
  background: #f2f8ff;
  color: var(--blue-950);
  font-size: 0.82rem;
  font-weight: 900;
}

.document-viewer-pages button {
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.document-viewer-pages button.active,
.document-viewer-pages button:hover {
  border-color: rgba(20, 122, 211, 0.48);
  background: var(--blue-600);
  color: #fff;
}

.document-viewer-pages span {
  width: auto;
  padding: 0 12px;
  color: var(--muted);
}

@media (max-width: 760px) {
  .document-viewer {
    padding: 8px;
  }

  .document-viewer-dialog {
    width: calc(100vw - 16px);
    height: calc(100dvh - 16px);
    border-radius: 18px;
  }

  .document-viewer-head {
    padding: 16px;
  }

  .document-viewer-head h2 {
    font-size: 1rem;
  }

  .document-viewer-head p {
    font-size: 0.78rem;
  }

  .document-viewer-media {
    padding: 18px 12px 22px;
  }

  .document-viewer-media img,
  .document-viewer-frame {
    width: 100%;
    min-height: 260px;
    border-radius: 12px;
  }

  .document-viewer-pdf {
    width: 100%;
    gap: 10px;
  }

  .document-viewer-pdf-open {
    width: 100%;
    min-height: 40px;
    font-size: 0.82rem;
  }

  .document-viewer-nav {
    width: 40px;
    height: 40px;
  }

  .document-viewer-prev {
    left: 10px;
  }

  .document-viewer-next {
    right: 10px;
  }

  .document-viewer-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: stretch;
}

.contact-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(6, 27, 58, 0.98), rgba(10, 53, 114, 0.96)),
    var(--blue-950);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card::before {
  content: "";
  position: absolute;
  right: -96px;
  bottom: 76px;
  z-index: -1;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(71, 204, 255, 0.2);
  border-radius: 999px;
  background:
    radial-gradient(circle at 42% 36%, rgba(46, 213, 255, 0.18), transparent 52%),
    radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 64%);
}

.contact-card h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.76);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.social-links .social-link {
  width: 30px;
  height: 30px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  box-shadow: none;
  opacity: 0.86;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-links .social-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.social-links .social-link svg {
  width: 24px;
  height: 24px;
}

.social-links .social-link:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.contact-visual {
  position: relative;
  min-height: clamp(210px, 18vw, 270px);
  margin: auto -10px -12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 24px 52px rgba(0, 0, 0, 0.18);
}

.contact-visual::before,
.contact-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.contact-visual::before {
  background:
    linear-gradient(180deg, rgba(6, 27, 58, 0.14), rgba(6, 27, 58, 0.76)),
    linear-gradient(90deg, rgba(6, 27, 58, 0.82), rgba(7, 47, 104, 0.3) 50%, rgba(46, 213, 255, 0.08));
}

.contact-visual::after {
  inset: auto auto 18px 18px;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(46, 213, 255, 0.32), transparent 57%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0 2px, transparent 2px 8px);
  opacity: 0.72;
}

.contact-visual img {
  position: absolute;
  display: block;
  max-width: none;
  object-fit: cover;
}

.contact-visual-main {
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.72;
  object-position: 100% 46%;
  filter: saturate(1.04) contrast(0.94);
  transform: translateX(22px) scale(1.08);
  transform-origin: 92% 50%;
}

.contact-visual-card {
  z-index: 3;
  width: 43%;
  height: 38%;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
  opacity: 0.92;
}

.contact-visual-card.top {
  top: 20px;
  left: 18px;
  object-position: 50% 45%;
}

.contact-visual-card.bottom {
  left: 58px;
  bottom: 22px;
  object-position: 32% 42%;
}

.contact-form {
  position: relative;
  overflow: hidden;
  align-self: stretch;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(13, 76, 154, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.98)),
    var(--white);
  box-shadow: var(--shadow);
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--blue-700), var(--cyan-400));
}

.form-heading {
  padding-bottom: 4px;
}

.form-heading h3 {
  margin: 6px 0 6px;
  color: var(--blue-950);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.12;
}

.form-heading p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

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

.form-grid label,
.admin-panel label {
  font-size: 0.92rem;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-950);
  font-weight: 900;
}

.contact-form label span {
  display: flex;
  align-items: center;
  min-height: 18px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  border-color: #cdddf0;
  min-height: 54px;
  padding: 14px 15px;
  background: #f9fcff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8a99ac;
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover {
  border-color: rgba(18, 102, 195, 0.46);
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--blue-600);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(22, 137, 216, 0.14), var(--shadow-soft);
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-grid textarea {
  min-height: 148px;
  resize: vertical;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 2px;
}

.form-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-footer .btn {
  min-width: 190px;
  justify-content: center;
  box-shadow: 0 16px 34px rgba(13, 76, 154, 0.2);
}

.form-status {
  display: none;
  margin: 4px 0 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: #effaf4;
  color: #157246;
  border: 1px solid #bfe8d0;
  font-weight: 800;
}

.form-status.active {
  display: block;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--blue-950);
  color: var(--white);
  padding: 112px 0 88px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 27, 58, 0.96), rgba(8, 38, 81, 0.78)),
    url("../ima%2002.webp") center / cover;
  opacity: 1;
}

.page-hero .container {
  position: relative;
}

.page-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 34px;
  align-items: start;
}

.article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.article-cover {
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: clamp(390px, 42vw, 540px);
  object-fit: contain;
  object-position: var(--focus-x, 50%) var(--focus-y, 20%);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.article-content {
  padding: clamp(22px, 4vw, 42px);
}

.article-content h1 {
  margin: 0 0 14px;
  color: var(--blue-950);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.02;
}

.article-content p {
  color: #34445a;
  font-size: 1.08rem;
  line-height: 1.78;
}

.article-attachments {
  margin: 42px 0 8px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid #cfe4f8;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(22, 196, 232, 0.14), transparent 34%),
    linear-gradient(135deg, #f5faff, #ffffff);
  box-shadow: 0 18px 42px rgba(6, 27, 58, 0.08);
}

.article-attachments h2 {
  margin: 5px 0 8px;
  color: var(--blue-950);
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.article-attachments > p {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--muted);
}

.attachment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.attachment-card {
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
  text-align: left;
  border: 1px solid #d6e7f6;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(6, 27, 58, 0.1);
  cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.attachment-card:hover {
  transform: translateY(-2px);
  border-color: rgba(22, 196, 232, 0.55);
  box-shadow: 0 20px 42px rgba(6, 27, 58, 0.14);
}

.attachment-card img {
  display: block;
  width: 100%;
  height: auto;
  min-height: clamp(420px, 62vw, 760px);
  object-fit: contain;
  background: #ffffff;
}

.attachment-card span {
  padding: 14px 16px;
  border-bottom: 1px solid #e2eef8;
  background: linear-gradient(90deg, #f7fbff, #ffffff);
  color: var(--blue-950);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.28;
}

.article-brief {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 28px;
}

.brief-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f7fbff, #ffffff);
}

.brief-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.brief-card p,
.brief-card ul {
  margin: 0;
  color: #34445a;
  font-size: 0.95rem;
  line-height: 1.55;
}

.brief-card ul {
  display: grid;
  gap: 7px;
  padding-left: 18px;
}

.sidebar-card {
  padding: 22px;
  position: sticky;
  top: 110px;
}

.sidebar-card h3 {
  margin: 0 0 14px;
  color: var(--blue-950);
}

.sidebar-card #relatedNews {
  display: grid;
  gap: 12px;
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.related-news-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 142px;
  border: 1px solid rgba(215, 231, 245, 0.9);
  border-radius: 16px;
  background: var(--blue-950);
  box-shadow: 0 16px 34px rgba(6, 27, 58, 0.14);
  isolation: isolate;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.related-news-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(6, 27, 58, 0.22), rgba(6, 27, 58, 0.86)),
    linear-gradient(90deg, rgba(6, 27, 58, 0.45), rgba(6, 27, 58, 0.1));
  transition: background 0.22s ease, opacity 0.22s ease;
}

.related-news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 196, 232, 0.55);
  box-shadow: 0 24px 48px rgba(6, 27, 58, 0.22);
}

.related-news-card:hover::after {
  background:
    linear-gradient(180deg, rgba(6, 27, 58, 0.12), rgba(6, 27, 58, 0.78)),
    linear-gradient(90deg, rgba(6, 27, 58, 0.35), rgba(6, 27, 58, 0.02));
}

.related-news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus-x, 50%) var(--focus-y, 35%);
  filter: saturate(0.92) brightness(0.72) contrast(1.06);
  transition: transform 0.28s ease, filter 0.28s ease;
}

.related-news-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.04) brightness(0.84) contrast(1.08);
}

.related-news-title {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  display: -webkit-box;
  overflow: hidden;
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.14;
  text-wrap: balance;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
  transform: translateY(0);
  transition: transform 0.22s ease;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.related-news-card:hover .related-news-title {
  transform: translateY(-3px);
}

.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.share-button {
  min-width: 148px;
}

.share-button.social-whatsapp {
  color: #0f7c45;
  background: #ecfff5;
  border-color: #bcebd2;
}

.share-button.social-facebook {
  color: #1456ad;
  background: #eef6ff;
  border-color: #c9def7;
}

.site-footer {
  background:
    linear-gradient(180deg, var(--blue-950), #04152d);
  color: rgba(255, 255, 255, 0.78);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 34px;
}

.footer-grid a {
  transition: color 0.18s ease;
}

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

.footer-grid h3,
.footer-grid h4 {
  margin: 0 0 12px;
  color: var(--white);
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-social {
  gap: 10px;
}

.footer-social .social-link {
  justify-content: flex-start;
  width: fit-content;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
}

.footer-social .social-link svg {
  width: 17px;
  height: 17px;
}

.footer-social .social-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  max-width: 380px;
  display: none;
  padding: 14px 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue-900);
  box-shadow: var(--shadow);
  font-weight: 800;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  gap: 10px;
}

.floating-action {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--pill);
  color: var(--white);
  background: var(--blue-900);
  box-shadow: var(--shadow);
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.floating-action svg {
  width: 23px;
  height: 23px;
}

.floating-action:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.floating-action.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c4a);
}

.floating-action.top,
.floating-action.whatsapp {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.floating-action.top.visible,
.floating-action.whatsapp.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-action-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.48s ease, transform 0.48s ease;
}

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

.toast.active {
  display: block;
}

.admin-body {
  background:
    linear-gradient(180deg, #eaf3fb, #f7fbff);
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(6, 27, 58, 0.92), rgba(8, 38, 81, 0.72)),
    url("../ima%2001.webp") center / cover;
}

.login-box {
  width: min(100%, 420px);
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-strong);
}

.login-box img {
  width: 220px;
  margin: 0 auto 18px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.login-box h1 {
  margin: 0 0 6px;
  color: var(--blue-950);
  font-size: 1.6rem;
  text-align: center;
}

.login-box p {
  margin: 0 0 22px;
  color: var(--muted);
  text-align: center;
}

.login-fields {
  display: grid;
  gap: 14px;
  width: 100%;
}

.login-fields label {
  display: grid;
  gap: 7px;
  width: 100%;
  color: var(--blue-950);
  font-weight: 800;
}

.login-fields input,
.login-fields .btn {
  width: 100%;
}

.admin-shell {
  display: none;
  min-height: 100vh;
}

.admin-shell.active {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

.admin-sidebar {
  background:
    linear-gradient(180deg, var(--blue-950), #04152d);
  color: var(--white);
  padding: 24px;
  position: sticky;
  top: 0;
  height: 100vh;
}

.admin-sidebar img {
  width: 180px;
  margin-bottom: 28px;
}

.admin-menu {
  display: grid;
  gap: 8px;
}

.admin-menu button,
.admin-logout {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-radius: var(--radius);
  padding: 12px;
  text-align: left;
  font-weight: 800;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.admin-menu button.active,
.admin-menu button:hover {
  background: var(--cyan-400);
  color: var(--blue-950);
  transform: translateX(2px);
}

.admin-logout {
  margin-top: 22px;
  text-align: center;
}

.admin-main {
  padding: 32px;
}

.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.admin-top h1 {
  margin: 0;
  color: var(--blue-950);
}

.admin-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 18px;
}

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

.admin-grid .full {
  grid-column: 1 / -1;
}

.admin-panel label {
  display: grid;
  gap: 6px;
  color: var(--blue-950);
  font-weight: 800;
}

.admin-panel textarea {
  min-height: 130px;
  resize: vertical;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}

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

.admin-table th {
  color: var(--blue-950);
  font-size: 0.86rem;
  background: #f7fbff;
}

.table-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mini-btn {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--blue-900);
  border-radius: var(--pill);
  padding: 7px 10px;
  font-weight: 800;
  font-size: 0.82rem;
  transition: transform 0.18s ease, background 0.18s ease;
}

.mini-btn:hover {
  transform: translateY(-1px);
  background: var(--soft);
}

.mini-btn.danger {
  color: #b42318;
  border-color: #ffd0cb;
  background: #fff5f4;
}

.empty-state {
  padding: 30px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
}

.hidden {
  display: none !important;
}

@media (max-width: 1060px) {
  .section {
    padding: 72px 0;
  }

  .hero + .section.quick-access-section {
    padding-top: 72px;
  }

  .quick-access-section {
    padding-bottom: 42px;
  }

  .quick-access-section + .section {
    padding-top: 58px;
  }

  #atuacao.section {
    padding-bottom: 52px;
  }

  #noticias.section {
    padding-top: 58px;
  }

  .nav-links {
    position: fixed;
    inset: 110px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    border-radius: var(--radius);
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

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

  .quick-access-panel {
    grid-template-columns: 1fr;
  }

  .quick-access-copy {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .quick-access-copy .section-kicker {
    margin-bottom: 0;
  }

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

  .gallery-track .gallery-item {
    flex-basis: calc((100% - 16px) / 2);
  }

  .video-track .video-card {
    flex-basis: calc((100% - 20px) / 2);
  }

  .article-layout,
  .contact-layout,
  .transparency-band,
  .civic-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .transparency-copy {
    justify-content: flex-start;
  }

  .transparency-search-panel {
    margin-top: 22px;
    padding: 16px;
  }

  .document-query-tags {
    display: none;
  }

  .contact-layout {
    gap: 24px;
  }

  .contact-visual {
    display: none;
  }

  .contact-form {
    padding: 24px;
  }

  .about-note {
    position: static;
    margin-top: 14px;
    max-width: none;
  }

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

  .admin-shell.active {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }

  .sidebar-card {
    position: static;
  }

  .sidebar-card #relatedNews {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .related-news-card {
    min-height: 152px;
  }

  .related-news-title {
    right: 12px;
    bottom: 12px;
    left: 12px;
    font-size: 0.88rem;
    line-height: 1.14;
    -webkit-line-clamp: 4;
  }

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

  .mandate-system {
    grid-template-columns: 1fr;
  }

  .mandate-photo-stack {
    min-height: 360px;
  }

  .civic-panel {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  .topbar {
    display: none;
  }

  .nav {
    height: 68px;
  }

  .brand img {
    width: 126px;
    height: 54px;
  }

  .brand-tagline {
    display: none;
  }

  .nav-actions .btn {
    display: none;
  }

  .nav-links {
    top: 78px;
  }

  .hero,
  .hero > .container:not(.hero-stats) {
    min-height: 0;
  }

  .hero {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background:
      radial-gradient(circle at 50% 18%, rgba(22, 196, 232, 0.22), transparent 34%),
      linear-gradient(180deg, #062149 0%, var(--blue-950) 100%);
  }

  .hero-bg {
    position: relative;
    inset: auto;
    order: 1;
    z-index: 0;
    height: clamp(292px, 80vw, 390px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-bg img {
    height: 100%;
    object-position: 52% 10%;
    opacity: 1;
  }

  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(6, 27, 58, 0.02) 0%, rgba(6, 27, 58, 0.12) 42%, rgba(6, 27, 58, 0.9) 100%),
      linear-gradient(90deg, rgba(6, 27, 58, 0.38), rgba(6, 27, 58, 0.02) 48%, rgba(6, 27, 58, 0.28));
  }

  .hero::after {
    display: none;
  }

  .hero > .container:not(.hero-stats) {
    order: 3;
    padding: 22px 0 20px;
    display: block;
    align-items: initial;
  }

  .hero-content {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .hero .eyebrow {
    max-width: 100%;
    padding: 7px 10px;
    font-size: 0.72rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 10.2vw, 2.85rem);
    line-height: 1;
    margin: 12px 0;
  }

  .hero p,
  .page-hero p {
    font-size: 0.96rem;
    line-height: 1.52;
  }

  .hero-actions,
  .section-head,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions [data-whatsapp] {
    display: none;
  }

  .hero-actions .btn-ghost {
    display: none;
  }

  .hero-mini-grid {
    display: none;
  }

  .hero-actions .btn,
  .section-head .btn,
  .search-row {
    width: 100%;
  }

  .stats-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .video-grid,
  .article-video-grid,
  .gallery-grid,
  .form-grid,
  .values,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .contact-form {
    padding: 22px;
  }

  .contact-visual {
    display: none;
  }

  .form-heading h3 {
    font-size: 1.45rem;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .btn {
    width: 100%;
    min-width: 0;
  }

  .video-card.is-short .video-frame {
    max-height: none;
  }

  .video-track {
    gap: 14px;
    padding-bottom: 14px;
  }

  .video-track .video-card {
    flex-basis: 100%;
  }

  .video-arrow {
    width: 40px;
    height: 40px;
  }

  .video-prev {
    left: 8px;
  }

  .video-next {
    right: 8px;
  }

  .gallery-track {
    gap: 14px;
    padding-inline: 0;
    scroll-padding-inline: 2px;
  }

  .gallery-track .gallery-item {
    flex-basis: 100%;
  }

  .gallery-arrow {
    width: 40px;
    height: 40px;
  }

  .gallery-prev {
    left: 8px;
  }

  .gallery-next {
    right: 8px;
  }

  .gallery-hint {
    font-size: 0.84rem;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox img {
    max-height: 76vh;
    max-width: 100%;
  }

  .lightbox > #lightboxClose {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
    background: rgba(4, 18, 42, 0.42);
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-caption {
    bottom: 12px;
    width: calc(100% - 28px);
    border-radius: 18px;
    padding: 9px 12px;
  }

  .lightbox-caption strong {
    font-size: 0.84rem;
  }

  .hero-stats {
    position: relative;
    left: auto;
    bottom: auto;
    order: 2;
    transform: none;
    z-index: 3;
    width: min(100% - 32px, 520px);
    margin: -38px auto 0;
  }

  .stat {
    gap: 9px 10px;
    min-height: 60px;
    grid-template-columns: 30px minmax(0, 1fr);
    padding: 10px 9px;
  }

  .stat + .stat {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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

  .hero-stats .stat strong {
    font-size: 0.82rem;
    line-height: 1.04;
  }

  .hero-stats .stat > span:not(.stat-icon) {
    font-size: 0.66rem;
    line-height: 1.18;
  }

  .hero-stats .stat-icon {
    width: 30px;
    height: 30px;
    border-radius: 11px;
  }

  .hero-stats .stat-icon svg {
    width: 16px;
    height: 16px;
  }

  .hero-stats .stat {
    border-left: 0;
    border-top: 0;
  }

  .hero-stats .stat:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .hero-stats .stat:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .quick-access-section {
    padding-top: 48px;
    padding-bottom: 38px;
  }

  .hero + .section.quick-access-section {
    padding-top: 44px;
  }

  .quick-access-section + .section {
    padding-top: 48px;
  }

  .quick-access-panel {
    gap: 16px;
    padding: 16px;
    border-radius: 14px;
  }

  .quick-access-copy {
    padding-bottom: 14px;
  }

  .quick-access-panel .quick-access-copy h2 {
    font-size: 1.42rem;
  }

  .quick-access-copy p {
    font-size: 0.9rem;
  }

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

  .quick-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 8px;
    min-height: 154px;
    padding: 14px;
  }

  .quick-icon {
    grid-row: auto;
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .quick-card strong {
    font-size: 0.92rem;
  }

  .quick-card small {
    font-size: 0.78rem;
    line-height: 1.34;
  }

  .section {
    padding: 56px 0;
  }

  .section:first-of-type {
    padding-top: 56px;
  }

  #atuacao.section {
    padding-bottom: 44px;
  }

  #noticias.section {
    padding-top: 48px;
  }

  #videos.section,
  #transparencia.section,
  #contato.section,
  #galeria.section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .quick-access-section {
    padding-bottom: 42px;
  }

  .section-head {
    margin-bottom: 26px;
  }

  .section h2,
  .section-title {
    font-size: clamp(1.75rem, 9vw, 2.25rem);
  }

  .civic-board {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

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

  .article-layout {
    width: min(100%, 560px);
  }

  .sidebar-card #relatedNews {
    grid-template-columns: 1fr;
  }

  .related-news-card {
    min-height: 156px;
  }

  .related-news-title {
    font-size: 0.98rem;
    line-height: 1.16;
    -webkit-line-clamp: 3;
  }

  .article {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .article-cover {
    aspect-ratio: 16 / 10;
    min-height: 255px;
    object-fit: contain;
  }

  .civic-board > div {
    min-height: auto;
    padding: 18px;
  }

  .civic-panel {
    padding: 22px;
  }

  .mandate-visual {
    margin-top: 24px;
    padding: 16px;
  }

  .mandate-system {
    margin-top: 24px;
    padding: 18px;
  }

  .system-steps {
    grid-template-columns: 1fr;
  }

  .mandate-photo-stack {
    min-height: 300px;
  }

  .mandate-photo-stack .photo-main {
    width: 78%;
    height: 74%;
  }

  .mandate-photo-stack .photo-small {
    width: 48%;
    height: 38%;
  }

  .mandate-photo-stack .photo-small.top {
    right: -14px;
    width: 42%;
    height: 34%;
    top: 24px;
  }

  .mandate-visual-copy h3 {
    font-size: 1.55rem;
  }

  .civic-photo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 10px;
  }

  .civic-photo-strip img {
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .civic-photo-strip img:first-child {
    justify-self: start;
    object-position: 48% 18%;
  }

  .civic-photo-strip img:nth-child(2) {
    justify-self: end;
    object-position: 52% 16%;
  }

  .civic-flow li {
    padding: 12px;
  }

  .card-body {
    padding: 18px;
  }

  .media-card .card-body::before {
    left: 18px;
    right: 18px;
  }

  .search-row {
    grid-template-columns: 1fr;
  }

  .filters {
    width: 100%;
    border-radius: var(--radius);
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    scrollbar-width: thin;
  }

  .filter-btn {
    flex: 0 0 auto;
  }

  .document-item {
    grid-template-columns: auto 1fr;
  }

  .document-open {
    grid-column: 1 / -1;
  }

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

  .admin-main {
    padding: 18px;
  }

  .admin-top {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-table {
    display: block;
    overflow-x: auto;
  }

  .floating-actions {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 760px) {
  body .floating-actions {
    display: none !important;
  }

  body.has-mobile-actions {
    padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-action-bar {
    position: fixed;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    left: 12px;
    z-index: 95;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(194, 213, 235, 0.78);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 46px rgba(6, 27, 58, 0.2);
    backdrop-filter: blur(16px);
  }

  .mobile-action-bar a {
    min-width: 0;
    min-height: 52px;
    display: grid;
    place-items: center;
    gap: 3px;
    padding: 7px 5px;
    border-radius: 14px;
    color: var(--blue-950);
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }

  .mobile-action-bar a:hover {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
    transform: translateY(-1px);
  }

  .mobile-action-bar svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-action-bar a:last-child {
    color: #128c4a;
    background: #ebfff4;
  }

  .mobile-action-bar a:last-child:hover {
    color: var(--white);
    background: linear-gradient(135deg, #25d366, #128c4a);
  }
}
