﻿:root {
      --navy: #184388;
      --navy-dark: #0e2a58;
      --blue: #2457a8;
      --ink: #1c2433;
      --muted: #6b7385;
      --line: #e6ebf3;
      --bg: #f6f8fb;
      --card: #fff;
      --ease: cubic-bezier(.22, 1, .36, 1);
    }
    * { box-sizing: border-box; }
    html, body { margin: 0; }
    body {
      font-family: Onest, system-ui, sans-serif;
      color: var(--ink);
      background: #fff;
    }
    a { color: inherit; text-decoration: none; }
    a:hover, a:focus { color: inherit; text-decoration: none; }
    button { font: inherit; cursor: pointer; }
    .wrap { width: min(1200px, calc(100% - 48px)); max-width: 1200px; min-width: 0; margin: 0 auto; }

    body.site-ui { overflow-x: clip; }
    body.site-ui .app { min-width: 0; overflow: visible; }
    body.site-ui header {
      background: var(--navy);
      position: sticky;
      top: 0;
      z-index: 40;
      color: #fff;
      width: 100%;
      max-width: 100%;
      min-width: 0;
      margin: 0;
      padding: 0;
      flex: 0 0 auto;
      border: 0 !important;
      border-radius: 0 !important;
      box-shadow: none !important;
    }
    .head {
      display: flex;
      align-items: center;
      gap: 16px;
      height: 72px;
      min-height: 72px;
      max-height: 72px;
      min-width: 0;
      padding: 0;
      overflow: hidden;
    }
    .logo { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 16px; line-height: 1; color: #fff; letter-spacing: .02em; }
    .logo img { height: 48px !important; max-height: 48px; width: auto; max-width: none; display: block; }
    .icon-btn {
      margin-left: auto; width: 40px; height: 40px; border: 0; border-radius: 50%;
      background: rgba(255,255,255,.1); color: #fff; display: grid; place-items: center;
      transition: background .25s var(--ease), transform .25s var(--ease);
    }
    .icon-btn svg { width: 18px; height: 18px; }
    .icon-btn:hover { background: rgba(255,255,255,.18); transform: scale(1.06); }
    .head-links { display: flex; align-items: center; gap: 16px; flex-shrink: 0; white-space: nowrap; }
    .head-link { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.9); transition: color .2s ease; }
    .head-link:hover, .head-link:focus { color: #fff; }
    .burger {
      display: grid; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.28); border-radius: 12px; background: transparent;
      place-content: center; gap: 5px;
      transition: background .25s var(--ease), border-color .25s var(--ease);
    }
    .burger:hover { background: rgba(255,255,255,.1); }
    .burger i { display: block; width: 16px; height: 1.5px; background: #fff; transition: transform .28s var(--ease), opacity .2s ease; }
    .burger.open i:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .burger.open i:nth-child(2) { opacity: 0; }
    .burger.open i:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    .nav-bar, .search-panel {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows .42s var(--ease);
    }
    .nav-bar { background: #eef1f6; color: var(--ink); border-bottom: 1px solid transparent; }
    .nav-bar.open, .search-panel.open { grid-template-rows: 1fr; height: auto; overflow: visible; }
    .nav-bar:not(.open), .search-panel:not(.open) {
      height: 0;
      min-height: 0;
      padding: 0;
      border: 0;
      overflow: hidden;
    }
    .nav-bar.open { border-bottom-color: var(--line); }
    .search-panel { background: #fff; }
    .search-panel.open { border-bottom: 1px solid var(--line); }
    .panel-clip { overflow: hidden; min-height: 0; }
    .mega-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      padding: 28px 0 36px;
      opacity: 0;
      transform: translateY(-10px);
      transition: opacity .35s var(--ease), transform .4s var(--ease);
    }
    .nav-bar.open .mega-grid {
      opacity: 1;
      transform: none;
    }
    .mega-grid > div {
      opacity: 0;
      transform: translateY(8px);
      transition: opacity .4s var(--ease), transform .4s var(--ease);
    }
    .nav-bar.open .mega-grid > div { opacity: 1; transform: none; }
    .nav-bar.open .mega-grid > div:nth-child(1) { transition-delay: .04s; }
    .nav-bar.open .mega-grid > div:nth-child(2) { transition-delay: .08s; }
    .nav-bar.open .mega-grid > div:nth-child(3) { transition-delay: .12s; }
    .nav-bar.open .mega-grid > div:nth-child(4) { transition-delay: .16s; }
    .mega-grid h3 {
      margin: 0 0 12px;
      font-size: 12px;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--navy);
      font-weight: 700;
    }
    .mega-grid h3.sub { margin-top: 22px; }
    .mega-grid a {
      display: block;
      padding: 7px 0;
      color: #445066;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.35;
      transition: color .2s ease, transform .2s var(--ease);
    }
    .mega-grid a:hover { color: var(--navy); transform: translateX(4px); }

    .mega-archive { margin: 2px 0 0; }
    .mega-archive summary {
      list-style: none;
      cursor: pointer;
      padding: 7px 0;
      color: #445066;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.35;
      transition: color .2s ease;
    }
    .mega-archive summary::-webkit-details-marker { display: none; }
    .mega-archive summary::after {
      content: "›";
      display: inline-block;
      margin-left: 6px;
      transition: transform .2s ease;
    }
    .mega-archive[open] summary { color: var(--navy); }
    .mega-archive[open] summary::after { transform: rotate(90deg); }
    .mega-archive a {
      padding-left: 12px;
      font-size: 13px;
      line-height: 1.4;
    }

    .cal-year-block {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
      gap: 24px;
      align-items: start;
      background: var(--bg);
      border-radius: 24px;
      padding: 28px;
    }
    .cal-year-grid .vc-container {
      border: 0;
      border-radius: 16px;
      background: #fff;
      box-shadow: none;
      font-family: Onest, system-ui, sans-serif;
      width: 100%;
    }
    .cal-year-grid .vc-day.is-today .vc-day-content {
      background: var(--navy) !important;
      color: #fff !important;
    }
    .cal-year-grid .vc-highlight {
      background: rgba(24, 67, 136, .14) !important;
    }
    .cal-year-grid .vc-dot { background-color: var(--navy) !important; }
    .cal-year-grid .current-day {
      background: var(--navy) !important;
      color: #fff !important;
      border-radius: 50%;
    }
    .cal-year-events {
      min-height: 200px;
      max-height: 720px;
      overflow-y: auto;
      padding-right: 4px;
    }
    .cal-year-toolbar { margin-bottom: 12px; }
    .cal-year-back {
      border: 0;
      background: none;
      padding: 0;
      color: var(--navy);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
    }
    .cal-year-back:hover { opacity: .75; }

    .fumo-search {
      display: flex;
      gap: 10px;
      margin: 0 0 32px;
      max-width: 720px;
    }
    .fumo-search input {
      flex: 1;
      min-width: 0;
      height: 48px;
      padding: 0 16px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: #fff;
      font: inherit;
      color: var(--ink);
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    .fumo-search input:focus {
      outline: none;
      border-color: var(--navy);
      box-shadow: 0 0 0 4px rgba(24,67,136,.12);
    }
    .fumo-search .find {
      height: 48px;
      padding: 0 22px;
      border: 0;
      border-radius: 12px;
      background: var(--navy);
      color: #fff;
      font: inherit;
      font-weight: 600;
      cursor: pointer;
      transition: background .2s ease, transform .2s ease;
    }
    .fumo-search .find:hover { background: var(--navy-dark); transform: translateY(-1px); }

    .fumo-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      align-items: stretch;
    }
    .fumo-grid .flip-card { min-height: 220px; }
    .fumo-list-band {
      background: var(--bg);
      border-radius: 24px;
      padding: 20px;
      margin-bottom: 32px;
    }
    .flip-card {
      display: block;
      perspective: 1200px;
      text-decoration: none;
      color: inherit;
      height: 100%;
    }
    .flip-card-inner {
      display: grid;
      grid-template-areas: "stack";
      width: 100%;
      min-height: 100%;
      height: 100%;
      transition: transform .65s cubic-bezier(.4, .2, .2, 1);
      transform-style: preserve-3d;
    }
    @media (hover: hover) {
      .flip-card:hover .flip-card-inner { transform: rotateY(180deg); }
    }
    .flip-card-front,
    .flip-card-back {
      grid-area: stack;
      position: relative;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      border-radius: 18px;
    }
    .flip-card-front {
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 2px 12px rgba(16, 32, 64, .06);
      padding: 22px 24px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      text-decoration: none;
      color: inherit;
    }
    .flip-card-back {
      transform: rotateY(180deg);
      background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%);
      color: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 24px;
      gap: 12px;
    }
    .flip-card-back strong {
      font-size: 17px;
      line-height: 1.35;
      font-weight: 700;
    }
    .flip-card-back p {
      margin: 0;
      font-size: 14px;
      line-height: 1.5;
      color: rgba(255, 255, 255, .88);
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 4;
      overflow: hidden;
    }
    .flip-go {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 4px;
      padding: 11px 24px;
      border-radius: 999px;
      background: #fff;
      color: var(--navy);
      font-weight: 700;
      font-size: 14px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
    }
    .flip-card-front h3 {
      margin: 0;
      font-size: 17px;
      line-height: 1.35;
      letter-spacing: -.02em;
      font-weight: 700;
      color: var(--ink);
    }
    .flip-card--poop { min-height: 0; height: 100%; }
    .flip-card--poop .flip-card-inner { min-height: 100%; }
    .flip-card--poop .flip-card-front {
      border-radius: 20px;
      padding: 24px;
      min-height: 100%;
      height: 100%;
      background: var(--card);
      border: 1px solid transparent;
      box-shadow: 0 1px 2px rgba(16, 32, 64, .04);
    }
    .flip-card--poop .flip-card-front .tag {
      display: inline-flex;
      align-self: flex-start;
      background: #eef3fb;
      color: var(--navy);
      font-size: 12px;
      font-weight: 600;
      padding: 5px 10px;
      border-radius: 999px;
    }
    .flip-card--poop .flip-card-front h3 {
      margin: 0 0 10px;
      font-size: 18px;
      line-height: 1.3;
    }
    .flip-card--poop .flip-card-front p {
      margin: 0 0 20px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
      flex: 1;
      overflow: visible;
    }
    .flip-card--poop .flip-card-front .pcard-foot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      padding-top: 16px;
      border-top: 1px solid var(--line);
      font-size: 13px;
      margin-top: auto;
    }
    .fumo-card-stats {
      margin: 0;
      display: grid;
      gap: 8px;
    }
    .fumo-card-stats div {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      font-size: 14px;
      line-height: 1.4;
    }
    .fumo-card-stats dt { margin: 0; color: var(--muted); font-weight: 500; }
    .fumo-card-stats dd { margin: 0; color: var(--ink); font-weight: 700; }
    .fumo-card-org {
      margin: auto 0 0;
      font-size: 14px;
      line-height: 1.5;
      color: var(--muted);
    }
    .fumo-card-region {
      font-size: 13px;
      color: var(--navy);
      font-weight: 600;
    }
    .fumo-empty { margin: 8px 0 32px; color: var(--muted); font-size: 16px; }

    .fumo-stack {
      display: grid;
      gap: 16px;
      margin-bottom: 32px;
    }
    .fumo-panel {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 24px 28px;
      box-shadow: 0 2px 10px rgba(16, 32, 64, .04);
    }
    .fumo-panel-title {
      margin: 0 0 16px;
      font-size: 12px;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 600;
    }
    .fumo-section-heading {
      margin: 0 0 20px;
      font-size: 18px;
      letter-spacing: -.01em;
      text-transform: none;
      color: var(--ink);
      font-weight: 700;
    }
    .fumo-person { display: flex; gap: 16px; align-items: center; }
    .fumo-person-wide { align-items: flex-start; gap: 24px; }
    .fumo-person-photo {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      background: #d9e8f7;
    }
    .fumo-person-photo-lg { width: 112px; height: 112px; }
    .fumo-person-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .fumo-person-body { flex: 1; min-width: 0; }
    .fumo-person-name { margin: 0 0 4px; font-size: 22px; line-height: 1.3; color: var(--ink); }
    .fumo-person-post { margin: 0; font-size: 15px; line-height: 1.45; color: var(--muted); }
    .fumo-meta { margin-top: 16px; }
    .fumo-meta-label {
      display: block;
      margin-bottom: 4px;
      font-size: 12px;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 600;
    }
    .fumo-meta p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--ink); }
    .fumo-contacts, .fumo-links, .fumo-notify-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
    }
    .fumo-contacts-grid,
    .fumo-links-grid {
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
      gap: 12px;
    }
    .fumo-contacts-grid li,
    .fumo-links-grid li { display: grid; gap: 6px; min-width: 0; }
    .fumo-doc-tile {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      width: 100%;
      min-width: 0;
      box-sizing: border-box;
      padding: 14px 18px;
      background: var(--bg);
      border: 1px solid var(--line);
      border-radius: 12px;
      color: var(--navy);
      font-weight: 600;
      font-size: 14px;
      line-height: 1.4;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .fumo-doc-tile::after {
      content: "→";
      flex-shrink: 0;
      font-weight: 700;
      color: var(--navy);
    }
    .fumo-doc-tile:hover {
      background: #fff;
      border-color: rgba(24, 67, 136, .35);
      box-shadow: 0 4px 14px rgba(24, 67, 136, .08);
      opacity: 1;
    }
    .fumo-contacts a, .fumo-links a, .fumo-notify-list a {
      color: var(--navy);
      font-weight: 600;
      font-size: 14px;
      line-height: 1.45;
      word-break: break-word;
    }
    .fumo-contacts a:hover, .fumo-links a:hover, .fumo-notify-list a:hover { opacity: .75; }
    .fumo-address { font-size: 14px; line-height: 1.5; color: var(--ink); }

    body.site-ui .fumo-page {
      max-width: 100%;
      min-width: 0;
      overflow-x: clip;
    }
    body.site-ui .fumo-page .fumo-stack {
      min-width: 0;
      max-width: 100%;
    }
    body.site-ui .fumo-page .fumo-panel {
      min-width: 0;
      max-width: 100%;
      overflow: hidden;
    }
    body.site-ui .fumo-page ul.fumo-links,
    body.site-ui .fumo-page ul.fumo-contacts,
    body.site-ui .fumo-page ul.fumo-notify-list {
      padding-left: 0 !important;
      margin-left: 0 !important;
      margin-bottom: 0;
    }
    body.site-ui .fumo-page .fumo-links-grid > li,
    body.site-ui .fumo-page .fumo-contacts-grid > li {
      padding: 0;
      margin: 0;
    }
    body.site-ui .fumo-page .fumo-doc-tile,
    body.site-ui .fumo-page .fumo-doc-tile:visited,
    body.site-ui .fumo-page .fumo-doc-tile:hover,
    body.site-ui .fumo-page .fumo-doc-tile:focus {
      color: var(--navy);
    }
    body.site-ui .fumo-page .fumo-doc-tile::after {
      color: var(--navy);
    }
    body.site-ui .fumo-page .fumo-tab {
      color: var(--muted);
    }
    body.site-ui .fumo-page .fumo-tab.active,
    body.site-ui .fumo-page .fumo-tab.active:hover,
    body.site-ui .fumo-page .fumo-tab.active:focus {
      color: #fff;
    }
    body.site-ui .fumo-page .fumo-section-heading {
      margin: 0 0 14px;
      padding: 0;
      max-width: 100%;
    }

    .fumo-feed-section {
      padding: 24px 28px;
    }
    .fumo-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--line);
    }
    .fumo-tab {
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 10px 18px;
      background: var(--bg);
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .04em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background .2s ease, color .2s ease, border-color .2s ease;
    }
    .fumo-tab.active {
      background: var(--navy);
      border-color: var(--navy);
      color: #fff;
    }
    .fumo-feed-block.cal-block {
      background: var(--bg);
      border: 1px solid var(--line);
      border-radius: 16px;
      overflow: hidden;
    }
    .fumo-feed-section .cal-left {
      background: #fff;
      border-right: 1px solid var(--line);
    }
    .fumo-feed-section .cal-right {
      background: #fff;
      max-height: 440px;
      overflow-y: auto;
    }
    .fumo-feed-reset {
      display: inline-flex;
      margin: 0 0 12px;
      border: 0;
      background: none;
      padding: 0;
      color: var(--navy);
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
    }
    .fumo-feed-reset:hover { opacity: .75; }

    .fumo-subscribe-panel {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
      background: linear-gradient(135deg, #eef3fb 0%, #f8fafc 100%);
      border: 1px solid rgba(24, 67, 136, .12);
    }
    .fumo-subscribe-copy p {
      margin: 8px 0 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.5;
    }
    .fumo-subscribe-wrap .container { padding: 0; max-width: none; }
    .fumo-subscribe-wrap .btn-wrapper { display: block; margin: 0; }
    .fumo-subscribe-wrap .btn-custom.purple.active {
      border: 0;
      border-radius: 12px;
      background: var(--navy);
      color: #fff;
      font: inherit;
      font-weight: 600;
      padding: 12px 22px;
      cursor: pointer;
      transition: background .2s ease;
      white-space: nowrap;
    }
    .fumo-subscribe-panel .fumo-subscribe-wrap .btn-custom.purple.active { min-width: 220px; }
    .fumo-subscribe-wrap .btn-custom.purple.active:hover { background: var(--navy-dark); }

    .fumo-docs-panel { margin-bottom: 0; }
    .fumo-docs-panel .table-wrapper { overflow-x: auto; }
    .fumo-docs-panel .table-custom {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
    }
    .fumo-docs-panel .table-custom th,
    .fumo-docs-panel .table-custom td {
      padding: 12px 14px;
      border-bottom: 1px solid var(--line);
      text-align: left;
      vertical-align: top;
    }
    .fumo-docs-panel .table-custom thead th {
      font-size: 12px;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 600;
      background: rgba(255,255,255,.55);
    }
    .fumo-docs-panel .table-custom tr.year td {
      background: var(--navy);
      color: #fff;
      font-weight: 700;
      border-bottom-color: transparent;
    }
    .fumo-docs-panel .table-custom tr.archive-toggle { cursor: pointer; }
    .fumo-docs-panel .table-custom tr.archive-toggle td { color: var(--navy); font-weight: 600; }
    .fumo-docs-panel .evgd-card-doc-11 {
      color: var(--navy);
      font-weight: 600;
      text-decoration: none;
    }
    .fumo-docs-panel .evgd-card-doc-11:hover { opacity: .75; }
    .fumo-notify { margin-bottom: 24px; }

    .search-row {
      display: flex; gap: 8px; align-items: center;
      padding: 16px 0 20px;
      opacity: 0;
      transform: translateY(-8px);
      transition: opacity .3s var(--ease), transform .35s var(--ease);
    }
    .search-panel.open .search-row { opacity: 1; transform: none; }
    .search-row input {
      flex: 1; min-width: 0; height: 48px; border: 1px solid var(--line); border-radius: 12px; padding: 0 16px;
      font-size: 16px; outline: none; background: var(--bg); color: var(--ink);
      transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
    }
    .search-row input:focus { border-color: var(--navy); background: #fff; box-shadow: 0 0 0 4px rgba(24,67,136,.12); }
    .search-row .find {
      height: 48px; padding: 0 22px; border: 0; border-radius: 12px;
      background: var(--navy); color: #fff; font-weight: 600;
      transition: background .2s ease, transform .2s var(--ease);
    }
    .search-row .find:hover { background: var(--navy-dark); transform: translateY(-1px); }

    .banners { padding: 28px 0 0; }
    .banner-track { position: relative; min-height: 400px; }
    .arrow {
      position: absolute; top: 50%; z-index: 3; width: 44px; height: 44px; margin-top: -22px;
      border: 0; border-radius: 50%; background: #fff; color: var(--navy); font-size: 24px; line-height: 1;
      box-shadow: 0 8px 24px rgba(16, 32, 64, .12);
      transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
    }
    .arrow.prev { left: 20px; }
    .arrow.next { right: 20px; }
    .arrow:hover { background: var(--navy); color: #fff; transform: scale(1.08); }
    .banner {
      position: absolute; inset: 0; border-radius: 24px; overflow: hidden; color: #fff;
      opacity: 0; pointer-events: none; transition: opacity .6s var(--ease);
    }
    .banner.on { opacity: 1; pointer-events: auto; }
    .banner-bg {
      position: absolute; inset: 0; background-size: cover; background-position: center;
      background-image: linear-gradient(90deg, rgba(10,26,64,.88) 0%, rgba(10,26,64,.18) 58%), var(--banner-image);
      transform: scale(1.06);
      transition: transform 1.1s var(--ease);
    }
    .banner.on .banner-bg { transform: scale(1); }
    .banner-copy {
      position: relative; z-index: 1; height: 100%; width: min(48%, 540px);
      padding: 48px 24px 48px 80px;
      display: flex; flex-direction: column; justify-content: flex-end;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity .5s var(--ease), transform .55s var(--ease);
    }
    .banner.on .banner-copy { opacity: 1; transform: none; transition-delay: .12s; }
    .banner-copy h2 { margin: 0 0 12px; font-size: clamp(26px, 3.2vw, 38px); line-height: 1.12; letter-spacing: -.03em; font-weight: 700; }
    .banner-copy p { margin: 0 0 24px; font-size: 16px; line-height: 1.5; color: rgba(255,255,255,.86); font-weight: 400; }
    .go {
      display: inline-flex; align-items: center; gap: 8px;
      align-self: flex-start;
      background: #fff; color: var(--navy);
      font-weight: 600; font-size: 14px;
      padding: 12px 18px; border-radius: 999px;
      transition: background .2s ease, transform .25s var(--ease);
    }
    .go:hover { background: #edf2fa; transform: translateX(4px); }
    .banner-nav {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 18px;
      position: relative;
      z-index: 5;
    }
    .banner-nav button {
      width: 8px;
      height: 8px;
      padding: 0;
      border: 0;
      border-radius: 50%;
      background: #cdd6e4;
      cursor: pointer;
      position: relative;
      transition: width .3s var(--ease), background .3s ease;
    }
    .banner-nav button::before { content: ""; position: absolute; inset: -12px; }
    .banner-nav button.on { background: var(--navy); width: 24px; border-radius: 99px; }

    .section { padding: 64px 0 8px; }
    .section-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 28px; }
    .section-head h2 { margin: 0; font-size: 32px; letter-spacing: -.03em; font-weight: 700; color: var(--ink); }
    .more { color: var(--navy); font-weight: 600; font-size: 14px; transition: opacity .2s ease, transform .25s var(--ease); display: inline-block; }
    .more::after { content: " →"; }
    .more:hover { opacity: .7; transform: translateX(4px); }

    .news-layout {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 40px;
      align-items: start;
    }
    .feat { display: block; }
    .feat .pic, .side-item .pic { overflow: hidden; border-radius: 16px; display: block; }
    .feat img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      display: block;
      background: #d9e8f7;
      transition: transform .4s ease;
    }
    .feat:hover img, .side-item:hover img { transform: scale(1.03); }
    .feat time, .side time { display: block; color: var(--muted); font-size: 13px; margin: 16px 0 8px; font-weight: 500; }
    .feat h3 {
      margin: 0 0 10px;
      font-size: 22px;
      line-height: 1.28;
      color: var(--ink);
      font-weight: 700;
      letter-spacing: -.02em;
    }
    .feat p { margin: 0 0 14px; color: var(--muted); font-size: 15px; line-height: 1.6; }
    .expand {
      color: var(--navy);
      font-size: 14px;
      font-weight: 600;
      background: none;
      border: 0;
      padding: 0;
      transition: opacity .2s ease;
    }
    .expand:hover { opacity: .7; }
    .feat .extra {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
      margin: 0;
      transition: max-height .4s var(--ease), opacity .3s ease, margin .35s ease;
    }
    .feat.open .extra { max-height: 160px; opacity: 1; margin: 10px 0; }
    .side { display: grid; gap: 20px; }
    .side-item { display: grid; grid-template-columns: 112px 1fr; gap: 16px; align-items: start; }
    .side-item .pic { border-radius: 12px; }
    .side-item img {
      width: 112px; height: 76px; object-fit: cover; display: block; background: #d9e8f7;
      transition: transform .4s ease;
    }
    .side-item h3 { margin: 0; font-size: 15px; line-height: 1.35; color: var(--ink); font-weight: 600; }
    .side-item time { margin: 0 0 6px; }

    .discuss-band { background: var(--bg); margin-top: 48px; padding: 64px 0 56px; }
    .poop {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      align-items: stretch;
    }
    .poop .flip-card {
      min-height: 240px;
    }
    .pcard {
      background: var(--card);
      border-radius: 20px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      min-height: 240px;
      border: 1px solid transparent;
      box-shadow: 0 1px 2px rgba(16, 32, 64, .04);
      transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
    }
    .pcard:hover {
      border-color: var(--navy);
      box-shadow: 0 12px 32px rgba(24, 67, 136, .08);
      transform: translateY(-4px);
    }
    .pcard .tag {
      display: inline-flex;
      align-self: flex-start;
      background: #eef3fb;
      color: var(--navy);
      font-size: 12px;
      font-weight: 600;
      padding: 5px 10px;
      border-radius: 999px;
      margin-bottom: 16px;
    }
    .pcard.closing .tag { background: #eef3fb; color: var(--navy); }
    .pcard h3 { margin: 0 0 10px; font-size: 18px; line-height: 1.3; letter-spacing: -.02em; font-weight: 700; color: var(--ink); }
    .pcard p { margin: 0 0 20px; color: var(--muted); font-size: 14px; line-height: 1.55; flex: 1; }
    .pcard-foot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      padding-top: 16px;
      border-top: 1px solid var(--line);
      font-size: 13px;
    }
    .pcard-foot time { color: var(--muted); font-weight: 500; }
    .pcard-foot .cta { color: var(--navy); font-weight: 600; }

    .cal-block {
      display: grid; grid-template-columns: 1.2fr .8fr; background: var(--bg); border-radius: 24px;
    }
    .cal-page { padding-top: 0; }
    .cal-page .cal-block { margin-bottom: 48px; }
    .cal-left { padding: 28px 28px 32px; }
    .cal-right { padding: 28px; }
    .cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
    .cal-head b { font-size: 18px; font-weight: 700; }
    .cal-nav { width: 36px; height: 36px; border: 0; border-radius: 50%; background: #fff; color: var(--navy); font-size: 16px; transition: background .2s ease, transform .2s var(--ease); }
    .cal-nav:hover { background: var(--navy); color: #fff; transform: scale(1.06); }
    .cal {
      display: grid;
      grid-template-columns: repeat(7, minmax(0, 1fr));
      gap: 0;
    }
    .dow, .day {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
    }
    .dow {
      height: 32px;
      font-size: 12px;
      color: var(--muted);
      font-weight: 600;
    }
    .day {
      height: 48px;
      font-weight: 500;
      font-size: 14px;
      font-variant-numeric: tabular-nums;
      background: transparent;
      border: 0;
      padding: 0;
      border-radius: 0;
      color: inherit;
    }
    .day .num {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      line-height: 1;
      transition: background .2s ease, color .2s ease, transform .2s var(--ease);
    }
    .day:hover .num { transform: scale(1.08); }
    .day.mute { color: #c0c7d4; }
    .day.today .num { background: var(--navy); color: #fff; font-weight: 600; }
    .day.selected .num { box-shadow: inset 0 0 0 2px var(--navy); }
    .day.has-event .num { color: var(--navy); font-weight: 600; }
    .day.today.has-event .num { color: #fff; }
    .day.has-event .num::after {
      content: "";
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--navy);
      position: absolute;
      left: 50%;
      bottom: 4px;
      margin-left: -2px;
    }
    .day.today.has-event .num::after { background: #fff; }
    .cal-event {
      display: grid; grid-template-columns: max-content 1fr; column-gap: 16px; align-items: start;
      padding: 16px 0;
      border-bottom: 1px solid var(--line);
      color: var(--ink);
      transition: opacity .2s ease;
    }
    .cal-event:hover, .cal-event:focus { opacity: .72; color: var(--ink); }
    .cal-empty { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
    .cal-event:last-child { border-bottom: 0; }
    .cal-event .when {
      color: var(--navy); font-size: 13px; font-weight: 600; line-height: 1.35;
      white-space: nowrap; text-align: left;
    }
    .cal-event .when b { display: block; font-size: 15px; font-weight: 700; line-height: 1.35; color: var(--ink); }
    .cal-event p { margin: 4px 0 0; font-size: 13px; color: var(--muted); line-height: 1.35; }
    .cal-event strong { display: block; font-size: 15px; font-weight: 600; line-height: 1.35; color: var(--ink); }

    footer { background: var(--navy-dark); color: #d7e0f5; padding: 56px 0 20px; margin-top: 72px; }
    .foot {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1fr;
      gap: 40px;
      align-items: start;
    }
    .brand { display: flex; flex-direction: column; gap: 14px; }
    .brand-logos { display: flex; align-items: center; gap: 16px; }
    .brand-logos img { height: 48px; width: auto; display: block; }
    .brand-logos .irpo { filter: brightness(0) invert(1); height: 52px; }
    .brand p { margin: 0; font-size: 13px; line-height: 1.5; color: rgba(255,255,255,.55); max-width: 260px; }
    footer h4 { margin: 0 0 14px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); font-weight: 600; }
    footer h4.sub { margin-top: 22px; }
    footer a { display: block; padding: 4px 0; color: rgba(255,255,255,.78); font-size: 14px; transition: color .2s ease; }
    footer a:hover { color: #fff; text-decoration: none; }
    .social-links { display: flex; align-items: center; gap: 10px; }
    .social-links a {
      display: flex; align-items: center; justify-content: center;
      width: 40px; height: 40px; padding: 0;
      border-radius: 50%;
      background: rgba(255,255,255,.1);
      color: #fff;
      font-size: 18px;
    }
    .social-links a:hover { background: rgba(255,255,255,.2); color: #fff; }
    .social-links .svg-icon--max { width: 28px; height: 16px; }
    .copy { border-top: 1px solid rgba(255,255,255,.08); margin-top: 40px; text-align: left; padding: 18px 0 0; font-size: 12px; color: rgba(255,255,255,.35); }

    .crumbs {
      display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
      font-size: 13px; color: var(--muted); margin: 28px 0 16px;
    }
    .crumbs a { color: var(--navy); font-weight: 500; transition: opacity .2s ease; }
    .crumbs a:hover { opacity: .7; }
    .crumbs span { color: #c0c7d4; }
    .page-title { margin: 0 0 28px; font-size: 36px; letter-spacing: -.03em; font-weight: 700; color: var(--ink); }
    .page-lead {
      margin: -12px 0 32px;
      max-width: 720px;
      font-size: 17px;
      line-height: 1.55;
      color: var(--muted);
    }

    .support-page .page-title,
    .support-page .page-lead {
      text-align: center;
    }
    .support-page .page-lead {
      margin-left: auto;
      margin-right: auto;
    }
    .support-panel {
      max-width: 760px;
      margin: 0 auto 48px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 28px 32px 32px;
      box-shadow: 0 2px 10px rgba(16, 32, 64, .04);
    }
    .support-alert {
      margin: 0 0 20px;
      padding: 12px 16px;
      border-radius: 12px;
      background: #e8f5ec;
      border: 1px solid #c5e6d0;
      color: #1f6b3f;
      font-size: 14px;
      line-height: 1.45;
    }
    .site-form { display: grid; gap: 18px; }
    .site-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .site-form-field { display: grid; gap: 6px; min-width: 0; }
    .site-label {
      font-size: 13px;
      font-weight: 600;
      color: var(--ink);
    }
    .site-label .req { color: #d64545; margin-left: 2px; }
    .site-input,
    .site-select,
    .site-textarea {
      width: 100%;
      min-width: 0;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: #fff;
      color: var(--ink);
      font: inherit;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .site-input,
    .site-select { height: 48px; padding: 0 14px; }
    .site-textarea {
      min-height: 140px;
      padding: 12px 14px;
      resize: vertical;
      line-height: 1.5;
    }
    .site-select {
      appearance: none;
      padding-right: 40px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7385' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      cursor: pointer;
    }
    .site-input:focus,
    .site-select:focus,
    .site-textarea:focus {
      outline: none;
      border-color: var(--navy);
      box-shadow: 0 0 0 4px rgba(24, 67, 136, .12);
    }
    .site-input:disabled {
      background: var(--bg);
      color: var(--muted);
      cursor: not-allowed;
    }
    .site-file {
      width: 100%;
      font: inherit;
      font-size: 14px;
      color: var(--muted);
    }
    .site-captcha {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
    }
    .site-captcha img {
      height: 48px;
      border-radius: 10px;
      border: 1px solid var(--line);
      cursor: pointer;
    }
    .site-captcha .site-input { flex: 1; min-width: 160px; max-width: 220px; }
    .site-error {
      font-size: 12px;
      line-height: 1.4;
      color: #d64545;
    }
    .support-consent {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      line-height: 1.5;
      color: var(--muted);
      cursor: pointer;
    }
    .support-consent input { margin-top: 4px; flex-shrink: 0; }
    .support-consent a { color: var(--navy); text-decoration: underline; }
    .site-btn {
      justify-self: start;
      min-width: 200px;
      height: 48px;
      padding: 0 28px;
      border: 0;
      border-radius: 12px;
      background: var(--navy);
      color: #fff;
      font: inherit;
      font-weight: 600;
      cursor: pointer;
      transition: background .2s ease, transform .2s ease;
    }
    .site-btn:hover { background: var(--navy-dark); transform: translateY(-1px); }
    .site-btn--ghost,
    .comp-btn--ghost {
      background: #fff;
      color: var(--navy);
      border: 1px solid var(--line);
    }
    .site-btn--ghost:hover,
    .comp-btn--ghost:hover {
      background: var(--bg);
      transform: translateY(-1px);
    }

    .comp-list-wrap { margin-bottom: 48px; }
    .comp-state {
      margin: 0;
      padding: 32px 0;
      text-align: center;
      color: var(--muted);
      font-size: 16px;
    }
    .comp-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
    }
    .flip-card--comp {
      border: 0;
      background: none;
      padding: 0;
      font: inherit;
      text-align: left;
      cursor: pointer;
      width: 100%;
      min-height: 320px;
    }
    .flip-card--comp .flip-card-inner { min-height: 320px; }
    .flip-card--comp .flip-card-front,
    .flip-card--comp .flip-card-back {
      border-radius: 20px;
      overflow: hidden;
    }
    .flip-card--comp .flip-card-front {
      padding: 0;
      gap: 0;
      border-radius: 20px;
      overflow: hidden;
    }
    .flip-card--comp .flip-card-back strong {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
      overflow: hidden;
      max-width: 100%;
      color: #fff;
      font-size: 18px;
      line-height: 1.35;
      font-weight: 700;
    }
    .comp-card-pic {
      position: relative;
      overflow: hidden;
      aspect-ratio: 16 / 9;
      background: linear-gradient(135deg, #d9e8f7 0%, #eef3fb 100%);
      flex-shrink: 0;
    }
    .comp-card-pic--empty {
      background: linear-gradient(135deg, var(--navy) 0%, #2a5a9e 100%);
    }
    .comp-card-pic--empty::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 40%, rgba(255,255,255,.12) 0%, transparent 55%);
    }
    .comp-card-pic img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .flip-card--comp .comp-card-body {
      display: flex;
      flex-direction: column;
      flex: 1;
      padding: 22px 24px 24px;
      min-width: 0;
    }
    .flip-card--comp .comp-card-body h2 {
      margin: 0 0 10px;
      font-size: 20px;
      line-height: 1.3;
      letter-spacing: -.02em;
      font-weight: 700;
      color: var(--ink);
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      overflow: hidden;
    }
    .flip-card--comp .comp-card-body p {
      margin: 0;
      flex: 1;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.55;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
      overflow: hidden;
    }
    .comp-btn { min-width: 0; }

    body.comp-modal-open { overflow: hidden; }
    .comp-modal-root {
      position: fixed;
      inset: 0;
      z-index: 10050;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px 16px;
      pointer-events: none;
    }
    .comp-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(8, 18, 36, .78);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      pointer-events: auto;
    }
    .comp-modal {
      position: relative;
      z-index: 1;
      pointer-events: auto;
      display: flex;
      flex-direction: column;
      width: min(920px, 100%);
      max-height: min(90vh, 880px);
      background: #fff;
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 22px;
      box-shadow:
        0 32px 80px rgba(8, 18, 36, .42),
        0 0 0 1px rgba(16, 32, 64, .06);
      overflow: hidden;
      font-family: Onest, system-ui, sans-serif;
    }
    .comp-modal-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      padding: 22px 24px;
      border-bottom: 1px solid var(--line);
      background: #fff;
      color: var(--ink);
      flex-shrink: 0;
      position: static;
      z-index: auto;
      width: auto;
      max-width: none;
      margin: 0;
      box-shadow: none;
    }
    .comp-modal-title {
      margin: 0;
      font-size: 22px;
      line-height: 1.3;
      letter-spacing: -.02em;
      font-weight: 700;
      color: var(--ink);
    }
    .comp-modal-close {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      margin: -4px -6px 0 0;
      border: 0;
      border-radius: 12px;
      background: var(--bg);
      color: var(--muted);
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
      transition: background .2s ease, color .2s ease;
    }
    .comp-modal-close:hover {
      background: #e8edf5;
      color: var(--ink);
    }
    .comp-modal-body {
      flex: 1;
      min-height: 0;
      overflow-y: auto;
      padding: 24px;
      -webkit-overflow-scrolling: touch;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .comp-modal .comp-dialog-pic {
      overflow: hidden;
      border-radius: 14px;
      background: #d9e8f7;
      flex-shrink: 0;
    }
    .comp-modal .comp-dialog-pic img {
      width: 100%;
      max-height: 320px;
      display: block;
      object-fit: cover;
    }
    .comp-modal .comp-dialog-content {
      min-width: 0;
      overflow-wrap: anywhere;
    }
    .comp-modal .comp-dialog-content img,
    .comp-modal .comp-dialog-content table { max-width: 100%; }
    .comp-modal .comp-dialog-content table { display: block; overflow-x: auto; }
    .comp-modal-foot {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: space-between;
      align-items: center;
      padding: 16px 24px 20px;
      border-top: 1px solid var(--line);
      background: #fff;
      color: var(--ink);
      flex-shrink: 0;
      margin: 0;
      width: auto;
      max-width: none;
    }
    .comp-modal-enter-active .comp-modal-backdrop,
    .comp-modal-leave-active .comp-modal-backdrop {
      transition: opacity .3s ease;
    }
    .comp-modal-enter .comp-modal-backdrop,
    .comp-modal-leave-to .comp-modal-backdrop {
      opacity: 0;
    }
    .comp-modal-enter-active .comp-modal {
      transition: transform .34s cubic-bezier(.22, 1, .36, 1), opacity .34s ease;
    }
    .comp-modal-leave-active .comp-modal {
      transition: transform .22s ease, opacity .22s ease;
    }
    .comp-modal-enter .comp-modal,
    .comp-modal-leave-to .comp-modal {
      transform: translateY(20px) scale(.97);
      opacity: 0;
    }

    .comp-dialog-body {
      display: grid;
      grid-template-columns: 240px minmax(0, 1fr);
      gap: 24px;
      align-items: start;
    }
    .comp-dialog-body--no-img { grid-template-columns: 1fr; }
    .comp-dialog-pic {
      overflow: hidden;
      border-radius: 14px;
      background: #d9e8f7;
    }
    .comp-dialog-pic img {
      width: 100%;
      display: block;
      object-fit: cover;
    }
    .comp-dialog-content {
      min-width: 0;
      overflow-wrap: anywhere;
    }
    .comp-dialog-content img,
    .comp-dialog-content table { max-width: 100%; }
    .comp-dialog-content table { display: block; overflow-x: auto; }
    .comp-dialog-foot {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }
    .comp-file-link {
      color: var(--navy);
      font-weight: 600;
      font-size: 14px;
      text-decoration: underline;
    }
    .comp-file-link:hover { opacity: .75; }

    .news-lead {
      display: grid; grid-template-columns: 1.2fr .8fr; gap: 32px; align-items: center;
      margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line);
    }
    .news-lead .pic { overflow: hidden; border-radius: 20px; display: block; }
    .news-lead img {
      width: 100%; height: 340px; object-fit: cover; display: block; background: #d9e8f7;
      transition: transform .4s var(--ease);
    }
    .news-lead:hover img { transform: scale(1.03); }
    .news-lead time { display: block; color: var(--muted); font-size: 13px; font-weight: 500; margin-bottom: 10px; }
    .news-lead h2 {
      margin: 0 0 12px; font-size: 28px; line-height: 1.25; letter-spacing: -.03em; color: var(--ink);
      display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden;
    }
    .news-lead p {
      margin: 0 0 18px; color: var(--muted); font-size: 16px; line-height: 1.6;
      display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden;
    }
    .news-lead .go { background: var(--navy); color: #fff; }
    .news-lead .go:hover { background: var(--navy-dark); color: #fff; }

    .news-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 28px 32px;
    }
    .ncard { display: grid; grid-template-columns: 160px 1fr; gap: 18px; align-items: start; }
    .ncard .pic { overflow: hidden; border-radius: 14px; display: block; }
    .ncard img {
      width: 160px; height: 110px; object-fit: cover; display: block; background: #d9e8f7;
      transition: transform .4s var(--ease);
    }
    .ncard:hover img { transform: scale(1.04); }
    .ncard time { display: block; color: var(--muted); font-size: 13px; margin-bottom: 6px; font-weight: 500; }
    .ncard h3 {
      margin: 0 0 8px; font-size: 17px; line-height: 1.3; letter-spacing: -.02em; font-weight: 700; color: var(--ink);
      display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden;
    }
    .ncard p {
      margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5;
      display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden;
    }

    .pager {
      display: flex; gap: 8px; justify-content: center; margin: 48px 0 8px;
    }
    .pager a, .pager span {
      min-width: 40px; height: 40px; padding: 0 12px; border-radius: 10px;
      display: grid; place-items: center; font-size: 14px; font-weight: 600;
      background: var(--bg); color: var(--ink);
      transition: background .2s ease, color .2s ease;
    }
    .pager a:hover { background: #e8eef8; color: var(--navy); }
    .pager .on { background: var(--navy); color: #fff; }

    .story { max-width: none; }
    .story time { display: block; color: var(--muted); font-size: 14px; font-weight: 500; margin-bottom: 10px; }
    .story h1 { margin: 0 0 20px; font-size: clamp(24px, 3vw, 36px); line-height: 1.2; letter-spacing: -.03em; color: var(--ink); }
    .story-img {
      width: 100%; height: 360px; object-fit: cover; border-radius: 16px;
      display: block; background: #d9e8f7; margin: 0 0 24px;
    }
    .article-body { font-size: 17px; line-height: 1.7; color: #2a3344; }
    .article-body p { margin: 0 0 18px; }
    .article-body h2 { margin: 28px 0 12px; font-size: 22px; letter-spacing: -.02em; }
    .article-body ul { margin: 0 0 18px; padding-left: 20px; }
    .article-body li { margin: 0 0 8px; }
    .article-files {
      margin: 28px 0 16px; padding: 18px 20px; background: var(--bg); border-radius: 16px;
    }
    .article-files h3 { margin: 0 0 12px; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
    .article-files a {
      display: block; padding: 8px 0;
      color: var(--navy); font-weight: 600; font-size: 15px; word-break: break-word;
    }
    .article-files a:hover { opacity: .75; }
    .back { display: inline-flex; margin: 8px 0 0; color: var(--navy); font-weight: 600; font-size: 14px; }
    .back:hover { opacity: .7; }
    .related { margin: 48px 0 8px; padding-top: 32px; border-top: 1px solid var(--line); display: grid; gap: 20px; }
    .related h2 { margin: 0; font-size: 22px; }
    .related .ncard { grid-template-columns: 120px 1fr; }

    @media (max-width: 1100px) {
      .wrap { width: min(1200px, calc(100% - 32px)); }
      .poop, .foot { grid-template-columns: 1fr 1fr; }
      .cal-block { grid-template-columns: 1fr; }
      .cal-year-block { grid-template-columns: 1fr; padding: 16px; }
      .cal-year-events { max-height: none; }
      .fumo-grid { grid-template-columns: 1fr 1fr; }
      .fumo-feed-block.cal-block { grid-template-columns: 1fr; }
      .fumo-feed-section .cal-left {
        border-right: none;
        border-bottom: 1px solid var(--line);
      }
      .fumo-feed-section .cal-right { max-height: none; }
      .comp-list { grid-template-columns: 1fr; }
      .mega-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
      .news-lead, .news-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .head { height: 60px; min-height: 60px; max-height: 60px; gap: 8px; }
      .logo img { height: 40px !important; max-height: 40px; }
      .head-links, .head-link { display: none; }
      .icon-btn, .burger { width: 40px; height: 40px; flex-shrink: 0; }
      .search-row { flex-wrap: wrap; }
      .search-row .find { width: 100%; }
      .fumo-search { flex-wrap: wrap; }
      .fumo-search .find { width: 100%; }
      .fumo-list-band { padding: 14px; border-radius: 18px; }
      .fumo-page.wrap {
        width: calc(100% - 32px);
        max-width: 100%;
        overflow-x: clip;
      }
      .fumo-panel { padding: 16px; border-radius: 16px; }
      .fumo-feed-section { padding: 16px; }
      .fumo-page .page-title {
        font-size: 20px;
        line-height: 1.25;
        word-break: break-word;
        hyphens: auto;
      }
      .fumo-page .crumbs {
        font-size: 12px;
        line-height: 1.45;
        word-break: break-word;
      }
      .fumo-section-heading { font-size: 16px; margin-bottom: 12px; }
      .fumo-person-wide { flex-direction: column; align-items: flex-start; gap: 16px; }
      .fumo-person-name { font-size: 18px; }
      .fumo-person-photo-lg { width: 88px; height: 88px; }
      .fumo-contacts-grid,
      .fumo-links-grid { grid-template-columns: 1fr; gap: 10px; }
      .fumo-doc-tile {
        align-items: flex-start;
        font-size: 14px;
        line-height: 1.45;
        padding: 13px 14px;
      }
      .fumo-page .fumo-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 14px;
        padding-bottom: 0;
        border-bottom: 0;
      }
      .fumo-page .fumo-tab {
        flex: none;
        width: 100%;
        min-width: 0;
        text-align: center;
        padding: 11px 10px;
        font-size: 11px;
        border-radius: 12px;
        letter-spacing: .03em;
      }
      .fumo-page .fumo-feed-block.cal-block {
        max-width: 100%;
        overflow: hidden;
        border-radius: 14px;
      }
      .fumo-page .cal-block,
      .fumo-page .cal {
        min-width: 0;
        max-width: 100%;
      }
      .fumo-feed-section .cal-event {
        grid-template-columns: 1fr;
        row-gap: 4px;
        padding: 14px 0;
      }
      .fumo-feed-section .cal-event .when { white-space: normal; }
      .fumo-subscribe-panel { grid-template-columns: 1fr; }
      .fumo-subscribe-panel .fumo-subscribe-wrap .btn-custom.purple.active { width: 100%; min-width: 0; }
      @media (hover: hover) {
        .flip-card:hover .flip-card-inner { transform: none; }
      }
      .flip-card-back { display: none; }
      .flip-card-front::after {
        content: "Перейти →";
        margin-top: auto;
        padding-top: 10px;
        color: var(--navy);
        font-weight: 700;
        font-size: 14px;
      }
      .flip-card--poop .flip-card-front::after { display: none; }
      .flip-card--comp .flip-card-front::after {
        content: "Открыть →";
        margin-top: auto;
        padding: 14px 16px 0;
        color: var(--navy);
        font-weight: 700;
        font-size: 14px;
      }
      .banners { padding: 16px 0 0; }
      .banner-track { min-height: 280px; }
      .banner { border-radius: 16px; }
      .banner-copy { width: 100%; padding: 24px 48px 24px 16px; }
      .banner-copy h2 { font-size: 22px; }
      .banner-copy p { font-size: 14px; margin-bottom: 16px; }
      .arrow { width: 32px; height: 32px; font-size: 18px; margin-top: -16px; }
      .arrow.prev { left: 8px; }
      .arrow.next { right: 8px; }
      .section, .discuss-band { padding: 36px 0 8px; }
      .section-head { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 20px; }
      .section-head h2, .page-title { font-size: 24px; }
      .page-lead { font-size: 15px; margin-bottom: 24px; }
      .support-panel { padding: 20px 16px 24px; }
      .site-form-row { grid-template-columns: 1fr; }
      .site-btn { width: 100%; min-width: 0; }
      .comp-list { grid-template-columns: 1fr; gap: 16px; }
      .flip-card--comp,
      .flip-card--comp .flip-card-inner { min-height: 0; }
      .flip-card--comp .comp-card-body { padding: 18px 16px 20px; }
      .flip-card--comp .comp-card-body h2 { font-size: 18px; }
      .comp-modal-root {
        padding: 0;
        align-items: flex-end;
      }
      .comp-modal-backdrop {
        background: rgba(8, 18, 36, .82);
      }
      .comp-modal {
        width: 100%;
        max-height: 92vh;
        border-radius: 20px 20px 0 0;
      }
      .comp-modal-head { padding: 18px 16px; }
      .comp-modal-title { font-size: 18px; }
      .comp-modal-body { padding: 16px; gap: 16px; }
      .comp-modal .comp-dialog-pic img { max-height: 200px; }
      .comp-modal-foot {
        flex-direction: column;
        align-items: stretch;
        padding: 14px 16px calc(16px + env(safe-area-inset-bottom, 0px));
      }
      .comp-modal-foot .site-btn { width: 100%; }
      .comp-modal-enter .comp-modal,
      .comp-modal-leave-to .comp-modal {
        transform: translateY(100%);
        opacity: 1;
      }
      .news-layout { grid-template-columns: 1fr; gap: 24px; }
      .feat img { height: 200px; }
      .side-item { grid-template-columns: 96px 1fr; gap: 12px; }
      .side-item img { width: 96px; height: 72px; }
      .poop, .foot, .mega-grid, .news-grid, .fumo-grid { grid-template-columns: 1fr; }
      .pcard { min-height: 0; }
      .pcard-foot { flex-wrap: wrap; }
      .cal-left, .cal-right { padding: 16px; }
      .day { height: 36px; font-size: 13px; }
      .day .num { width: 28px; height: 28px; }
      .brand-logos { flex-wrap: wrap; }
      .brand-logos img { height: 40px; }
      .ncard, .related .ncard { grid-template-columns: 96px 1fr; gap: 12px; }
      .ncard img { width: 96px; height: 72px; }
      .news-lead img { height: 200px; }
      .news-lead h2 { font-size: 22px; }
      .story-img { height: 200px; }
      .article-body { font-size: 16px; }
      footer { padding: 36px 0 16px; margin-top: 40px; }
      html { padding-bottom: 0 !important; }
      body.site-ui { margin-bottom: 0 !important; }
    }
    @media (max-width: 480px) {
      .wrap { width: calc(100% - 24px); }
      .fumo-page.wrap { width: calc(100% - 24px); }
      .fumo-page .page-title { font-size: 17px; }
      .fumo-page .fumo-tab { font-size: 10px; padding: 10px 8px; }
      .banner-track { min-height: 240px; }
      .banner-copy h2 { font-size: 20px; }
      .side-item, .ncard, .related .ncard { grid-template-columns: 1fr; }
      .side-item img, .ncard img { width: 100%; height: 160px; }
      .day { height: 32px; font-size: 12px; }
      .day .num { width: 26px; height: 26px; }
      .cal-head b { font-size: 16px; }
    }
    @media (hover: none) {
      .pcard:hover, .go:hover, .more:hover, .feat:hover img, .side-item:hover img, .ncard:hover img, .news-lead:hover img {
        transform: none;
      }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation: none !important;
        transition-duration: .01ms !important;
      }
      .banner-bg, .banner-copy, .mega-grid, .mega-grid > div, .search-row { transform: none !important; opacity: 1 !important; }
    }

    body.site-ui .pagination {
      display: flex;
      gap: 8px;
      justify-content: center;
      margin: 48px 0 8px;
      list-style: none;
      padding: 0;
    }
    body.site-ui .pagination .page-link {
      min-width: 40px;
      height: 40px;
      padding: 0 12px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      font-size: 14px;
      font-weight: 600;
      background: var(--bg);
      color: var(--ink);
      border: 0;
    }
    body.site-ui .pagination .page-item.active .page-link {
      background: var(--navy);
      color: #fff;
    }
    body.site-ui a,
    body.site-ui a:hover,
    body.site-ui a:focus {
      color: inherit;
      text-decoration: none !important;
    }
    body.site-ui .pcard:hover,
    body.site-ui .pcard:hover h3,
    body.site-ui .pcard:hover p,
    body.site-ui .pcard:hover time,
    body.site-ui .pcard:hover .tag,
    body.site-ui .pcard:hover .cta {
      text-decoration: none !important;
    }
    body.site-ui .feat h3,
    body.site-ui .side-item h3,
    body.site-ui .flip-card-front h3,
    body.site-ui .fumo-card:hover h3,
    body.site-ui .fumo-card h3,
    body.site-ui .news-lead h2,
    body.site-ui .pcard h3,
    body.site-ui .story h1,
    body.site-ui .cal-event,
    body.site-ui .cal-event strong,
    body.site-ui .cal-event:hover,
    body.site-ui .cal-event:hover strong {
      color: var(--ink);
    }
    body.site-ui .more,
    body.site-ui .more:hover,
    body.site-ui .expand,
    body.site-ui .expand:hover,
    body.site-ui .back,
    body.site-ui .back:hover,
    body.site-ui .crumbs a,
    body.site-ui .crumbs a:hover,
    body.site-ui .pcard-foot .cta,
    body.site-ui .article-files a,
    body.site-ui .article-files a:hover,
    body.site-ui .mega-grid h3 {
      color: var(--navy);
    }
    body.site-ui .mega-grid a { color: #445066; }
    body.site-ui .mega-grid a:hover { color: var(--navy); }
    body.site-ui .head-link { color: rgba(255,255,255,.9); }
    body.site-ui .head-link:hover { color: #fff; }
    body.site-ui .go { color: var(--navy); }
    body.site-ui .news-lead .go,
    body.site-ui .news-lead .go:hover { color: #fff; }
    body.site-ui footer a { color: rgba(255,255,255,.78); }
    body.site-ui footer a:hover { color: #fff; }
    body.site-ui .article-body a,
    body.site-ui .article-body a:hover {
      color: var(--navy);
      text-decoration: underline !important;
    }
    body.site-ui .support-page .site-input,
    body.site-ui .support-page .site-select,
    body.site-ui .support-page .site-textarea {
      box-shadow: none;
      border-radius: 12px;
      font-weight: 400;
    }
    body.site-ui .comp-modal .comp-modal-head,
    body.site-ui .comp-modal .comp-modal-foot {
      background: #fff;
      color: var(--ink);
    }
    body.site-ui .comp-modal .comp-modal-foot .comp-file-link {
      color: var(--navy);
    }
    body.site-ui .flip-card--comp .comp-card-body h2,
    body.site-ui .comp-modal-title {
      color: var(--ink);
    }
    body.site-ui .comp-file-link,
    body.site-ui .comp-file-link:hover {
      color: var(--navy);
    }
