:root {
  --paper: #ffffff;
  --ink: #101a30;
  --ink-2: #414c63;
  --line: #dcdfe3;
  --sage: #081642;
  --sage-dark: #050e2b;
  --coral: #a6352d;
  --white: #fff;
  --display: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); }
a:hover { color: var(--coral); }

:focus-visible { outline: 3px solid var(--sage); outline-offset: 3px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--white); padding: 14px 22px;
}
.skip-link:focus { left: 0; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 72px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.mark { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.mark img { width: 46px; }
.mark span {
  white-space: nowrap;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.mark small { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-2); }

.nav-toggle {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 8px 16px;
  background: var(--ink);
  color: var(--white);
  border: 0;
  border-radius: 100px;
  font-family: inherit;
  font-size: 15px;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.primary-nav { margin-left: auto; }
.nav-list {
  list-style: none; display: flex; flex-wrap: nowrap; align-items: center; gap: 2px; margin: 0; padding: 0;
}
.nav-list a, .submenu-toggle { white-space: nowrap; }
.nav-item { position: relative; }
.nav-list a, .submenu-toggle {
  display: inline-flex; align-items: center; gap: 7px;
  min-height: 44px; padding: 9px 14px;
  background: transparent; border: 0; border-radius: 100px;
  font-family: inherit; font-size: 15px; letter-spacing: 0.01em;
  color: var(--ink); text-decoration: none; cursor: pointer;
}
.nav-list > .nav-item > a:hover, .submenu-toggle:hover { background: #eef0f3; }
.nav-list > .nav-item > a[aria-current="page"] { background: var(--ink); color: var(--white); }
.caret { width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid currentColor; }

.submenu {
  list-style: none; margin: 0; padding: 8px;
  position: absolute; top: calc(100% + 6px); right: 0; min-width: 250px;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 18px 40px rgba(22,24,26,0.10);
  display: none; z-index: 40;
}
.submenu-toggle[aria-expanded="true"] + .submenu { display: block; }
@media (min-width: 1161px) {
  /* Bridge the gap between the toggle and the panel so the pointer can cross it. */
  .has-submenu.has-submenu { position: relative; }
  .submenu::before { content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 10px; }
}
.submenu a { width: 100%; border-radius: 9px; }
.submenu a:hover { background: #eef0f3; }

@media (max-width: 1160px) {
  .topbar-inner { flex-wrap: wrap; }
  .nav-toggle { display: inline-flex; }
  .primary-nav { display: none; width: 100%; order: 3; }
  .primary-nav.is-open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; padding: 6px 0 16px; }
  .nav-list a, .submenu-toggle { justify-content: space-between; min-height: 54px; border-radius: 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .submenu { position: static; display: none; border: 0; box-shadow: none; background: transparent; padding: 0 0 0 16px; }
  .submenu-toggle[aria-expanded="true"] .caret { transform: rotate(180deg); }
}

.hero { position: relative; overflow: hidden; background: #050e2b; }
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform-origin: bottom left;
  animation: hero-zoom 40s ease forwards;
}
@keyframes hero-zoom { from { transform: scale(1); } to { transform: scale(1.2); } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img { animation: none; }
}
.hero-scrim {
  position: relative;
  background: linear-gradient(105deg, rgba(5,14,43,0.92) 0%, rgba(5,14,43,0.84) 55%, rgba(5,14,43,0.74) 100%);
}
.hero-inner { padding-block: 96px 0; color: var(--white); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 20px;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: #ded9cf;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--sage); }
.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 6.4vw, 78px);
  line-height: 1.03;
  letter-spacing: -0.02em;
  margin: 0 0 40px;
  max-width: 17ch;
}
.hero h1 em { font-style: normal; font-weight: 300; color: #d9d3c6; }
.hero-lede { max-width: 46ch; margin: 0 0 42px; font-size: clamp(17px, 1.6vw, 20px); color: #e6e2da; }

.hero-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  border-top: 1px solid rgba(255,255,255,0.22);
}
.hero-strip a {
  display: flex; flex-direction: column; gap: 5px;
  padding: 26px 26px 34px;
  color: var(--white); text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.14);
}
.hero-strip a:first-child { padding-left: 0; }
.hero-strip a:last-child { border-right: 0; }
.hero-strip a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.hero-strip .k { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: #d9dfd0; }
.hero-strip .v { font-family: var(--display); font-weight: 500; font-size: 19px; }

.section { padding-block: 56px; }
.section + .section { padding-top: 12px; }
.section-head {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 16px;
  margin-bottom: 34px; padding-bottom: 18px; border-bottom: 1px solid var(--line);
}
.section-head h2 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(27px, 3.2vw, 38px); line-height: 1.1; letter-spacing: -0.01em; margin: 0;
  color: var(--sage);
}
.section-head p { margin: 0; color: var(--ink-2); font-size: 15px; letter-spacing: 0.02em; }

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.tile {
  grid-column: span 2;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 0;
  padding: 22px;
  background: #f7f8f9;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.tile:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(22,24,26,0.08); color: var(--ink); }
.tile h3 { margin: 0; font-family: var(--display); font-weight: 600; font-size: 23px; line-height: 1.2; letter-spacing: -0.005em; }
.tile p { margin: 0; color: var(--ink-2); font-size: 16px; }
.tile .go { margin-top: 4px; font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); }
.tile.wide { grid-column: span 3; }
.tile.tall { grid-column: span 3; }
.tile.dark { background: var(--ink); border-color: var(--ink); color: var(--white); }
.tile.dark p { color: #c9c5bd; }
.tile.dark .go { color: #b9c2ac; }
.tile.sage { background: var(--sage); border-color: var(--sage); color: var(--white); }
.tile.sage p { color: #e8ecdf; }
.tile.sage .go { color: var(--white); }
.tile .badge {
  align-self: flex-start;
  padding: 5px 12px; border-radius: 100px;
  background: #eef0f3; color: var(--ink-2);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
}
.tile.dark .badge, .tile.sage .badge { background: rgba(255,255,255,0.16); color: var(--white); }

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile, .tile.wide, .tile.tall { grid-column: span 2; min-height: 0; }
}

.notices { border-top: 2px solid var(--ink); }
.notice {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 34px;
  padding: 30px 0 32px;
  border-bottom: 1px solid var(--line);
}
.notice-rail { display: flex; flex-direction: column; gap: 10px; }
.notice .kind {
  align-self: flex-start;
  margin: 0;
  padding: 5px 12px;
  border: 1px solid var(--sage);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}
.notice .date { margin: 0; font-size: 15px; font-weight: 700; color: var(--ink); }
.notice h3 { margin: 0 0 10px; font-family: var(--display); font-weight: 600; font-size: clamp(20px, 2.2vw, 25px); line-height: 1.25; }
.notice p { margin: 0 0 14px; color: var(--ink-2); font-size: 16.5px; max-width: 72ch; }
.notice p:last-of-type { margin-bottom: 0; }
.notice p.muted { margin-top: 14px; font-size: 15px; font-style: italic; color: var(--ink-2); }
.notice .action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.notice .action:hover { border-bottom-color: var(--coral); }
@media (max-width: 800px) {
  .notice { grid-template-columns: 1fr; gap: 14px; padding: 24px 0 26px; }
  .notice-rail { flex-direction: row; align-items: center; gap: 14px; }
}

.band {
  background: var(--ink);
  color: var(--white);
}
.band .wrap { padding-top: 48px; padding-bottom: 48px; }
.band h2 { font-family: var(--display); font-weight: 600; font-size: clamp(21px, 2.4vw, 27px); line-height: 1.2; margin: 0 0 26px; }
.band dl { margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.band dt { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: #cdd4c1; }
.band dd { margin: 6px 0 0; font-size: 17px; }
@media (max-width: 760px) { .band dl { grid-template-columns: 1fr; gap: 18px; } }
.band a { color: var(--white); }

.site-footer { background: var(--ink); color: var(--white); }
.footer-top { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 26px; padding: 40px 0 28px; }
.footer-top h2 { margin: 0 0 10px; font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: #c7ced6; }
.footer-top ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.footer-top a { color: var(--white); text-decoration: none; }
.footer-top a:hover { text-decoration: underline; }
.footer-top address { font-style: normal; color: var(--white); font-size: 16px; }
.footer-word {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(18px, 2.4vw, 26px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
  padding: 20px 0 14px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.footer-legal {
  display: flex; flex-wrap: wrap; gap: 6px 24px;
  padding: 0 0 32px; font-size: 15px; color: var(--white);
}
.footer-legal a { color: var(--white); }

.link-mark { font-size: 0.72em; font-weight: 700; letter-spacing: 0.04em; margin-left: 6px; }

.page-header {
  background: var(--sage);
  color: var(--white);
  padding-block: 54px 58px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../../images/ohio-americanflag-mh.jpg");
  background-size: cover;
  background-position: center 35%;
  opacity: 0.62;
}
.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(8, 22, 66, 0.9) 0%, rgba(8, 22, 66, 0.7) 45%, rgba(8, 22, 66, 0.34) 100%);
}
@media print { .page-header::before, .page-header::after { display: none; } }
.page-header .crumb {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ccd6ea;
}
.page-header .crumb a { color: #ccd6ea; }
.page-header a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.page-header a:hover { color: #ccd6ea; }
.page-header .crumb a:hover { color: var(--white); }
.page-header h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 20ch;
}

.roster {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
}
.roster-person {
  padding: 26px;
  background: var(--white);
}

.roster-person h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
}
.roster-person .role {
  margin: 4px 0 14px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}
.roster-person ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; font-size: 15px; word-break: break-word; }
.roster-person a { display: inline-block; min-height: 26px; padding: 3px 0; color: var(--ink-2); }
.roster-person a:hover { color: var(--coral); }
@media (max-width: 640px) {
  .roster { grid-template-columns: 1fr; }
  .roster-person { padding: 20px 18px; }
}

.records { border-top: 2px solid var(--ink); }
.records details { border-bottom: 1px solid var(--line); }
.records summary {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 18px 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.01em;
  cursor: pointer;
  list-style: none;
}
.records summary::-webkit-details-marker { display: none; }
.records summary::before {
  content: "";
  width: 0; height: 0;
  border-left: 7px solid var(--coral);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transition: transform 150ms linear;
}
.records details[open] > summary::before { transform: rotate(90deg); }
.records ol {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.records li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 22px;
  padding: 13px 0;
  background: var(--white);
  font-size: 16px;
}
.records li .d { min-width: 140px; font-weight: 600; }
.records li a { color: var(--sage); text-decoration: underline; text-underline-offset: 3px; }
.records li a:hover { color: var(--ink); }
@media (max-width: 560px) {
  .records li { flex-direction: column; align-items: stretch; gap: 4px; padding: 14px 14px 15px; }
  .records li .d { min-width: 0; font-size: 13px; letter-spacing: 0.04em; color: var(--ink-2); }
  .records ol { margin-bottom: 18px; }
  .records summary { padding-right: 4px; }
}

.page-2col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 980px) { .page-2col { grid-template-columns: 1fr; gap: 34px; } }
.page-2col .section-head { margin-bottom: 22px; }
.page-2col > div > .section-head:not(:first-child) { margin-top: 48px; }
.rail .roster { grid-template-columns: 1fr; }

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 34px;
  margin: 22px 0 0;
  padding: 0;
  font-size: 15px;
  color: #d5deee;
}
.page-meta div { display: flex; gap: 8px; }
.page-meta dt { font-weight: 600; color: var(--white); }
.page-meta dd { margin: 0; }

.prose { max-width: 72ch; }
.prose p { margin: 0 0 16px; color: var(--ink-2); font-size: 16.5px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); }
.prose a { color: var(--sage); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--coral); }

.linkset {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}
.linkset-group { padding: 24px 26px 26px; background: var(--white); }
.linkset-group h3 {
  margin: 0 0 14px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--sage);
}
.linkset-group ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.linkset-group li { border-bottom: 1px solid var(--line); }
.linkset-group li:last-child { border-bottom: 0; }
.linkset-group a {
  display: block; min-height: 44px; padding: 11px 0;
  font-size: 16px; color: var(--ink); text-decoration: none;
}
.linkset-group a:hover { color: var(--coral); }

.term-list {
  list-style: none; margin: 0 0 40px; padding: 0;
  display: grid; gap: 1px;
  background: var(--line);
  border-top: 2px solid var(--ink); border-bottom: 1px solid var(--line);
}
.term-list li {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: 4px 16px; padding: 14px 0; background: var(--white);
}
.term-list .n { font-weight: 600; font-size: 16px; }
.term-list .r {
  margin-left: 6px; font-weight: 400; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage);
}
.term-list .t { font-size: 13px; letter-spacing: 0.06em; color: var(--ink-2); white-space: nowrap; }

.info-card { padding: 22px 0 24px; border-bottom: 1px solid var(--line); }
.info-card:first-of-type { border-top: 2px solid var(--ink); }
.info-card h3 {
  margin: 0 0 10px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage);
}
.info-card p, .info-card address { margin: 0; font-style: normal; font-size: 16px; color: var(--ink-2); }
.info-card ul { list-style: none; margin: 8px 0 0; padding: 0; display: grid; gap: 4px; font-size: 15px; word-break: break-word; }
.info-card a { color: var(--sage); }
.info-card a:hover { color: var(--coral); }

.form-embed { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: #f7f8f9; }
.form-embed iframe { display: block; width: 100%; height: 820px; border: 0; }
.form-fallback { margin: 14px 0 0; font-size: 15px; color: var(--ink-2); }

.notfound { max-width: 62ch; padding-block: 84px 96px; }
.eyebrow-dark {
  margin: 0 0 18px; font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--coral);
}
.notfound h1 {
  margin: 0 0 20px; font-family: var(--display); font-weight: 600;
  font-size: clamp(32px, 5vw, 54px); line-height: 1.08; letter-spacing: -0.02em;
}
.notfound .lede { margin: 0 0 34px; font-size: 18px; color: var(--ink-2); }
.notfound-links {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1px; background: var(--line);
  border-top: 2px solid var(--ink); border-bottom: 1px solid var(--line);
}
.notfound-links li { background: var(--white); }
.notfound-links a {
  display: block; min-height: 56px; padding: 17px 0;
  font-family: var(--display); font-weight: 500; font-size: 18px; text-decoration: none;
}
.notfound-links a:hover { color: var(--coral); }

.docviewer { position: fixed; inset: 0; z-index: 200; display: flex; }
.docviewer[hidden] { display: none; }
.docviewer-backdrop { position: absolute; inset: 0; background: rgba(5,14,43,0.72); }
.docviewer-panel {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  width: min(1060px, calc(100% - 48px));
  height: calc(100% - 48px);
  margin: auto;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(5,14,43,0.42);
}
.docviewer-bar {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
  padding: 20px 26px 18px;
}
.docviewer-head { min-width: 0; }
.docviewer-kicker {
  margin: 0 0 6px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-2);
}
.docviewer-title {
  margin: 0;
  font-family: var(--display); font-weight: 600;
  font-size: clamp(20px, 2.4vw, 27px); line-height: 1.18;
  letter-spacing: -0.01em; color: var(--sage);
}
.docviewer-close {
  flex: none;
  min-height: 44px; padding: 9px 22px;
  background: var(--white); color: var(--sage);
  border: 1px solid var(--line); border-radius: 100px;
  font-family: inherit; font-size: 15px; font-weight: 600; cursor: pointer;
}
.docviewer-close:hover { background: #eef0f3; }

.docviewer-tabs {
  display: flex; gap: 8px;
  padding: 0 26px;
  border-bottom: 1px solid var(--line);
}
.docviewer-tab {
  min-height: 48px; padding: 10px 6px;
  margin-bottom: -1px;
  background: none; border: 0;
  border-bottom: 3px solid transparent;
  font-family: inherit; font-size: 16px; font-weight: 600;
  color: var(--ink-2); cursor: pointer;
}
.docviewer-tabs[hidden] { display: none; }
.docviewer-tab + .docviewer-tab:not([hidden]) { margin-left: 22px; }
.docviewer-tab:hover { color: var(--ink); }
.docviewer-tab[aria-selected="true"] { color: var(--sage); border-bottom-color: var(--coral); }
.docviewer-tab[hidden] { display: none; }

.docviewer-body { flex: 1; min-height: 0; display: flex; }
.docviewer-pane { flex: 1; min-width: 0; min-height: 0; }
.docviewer-pane[hidden] { display: none; }
.docviewer-textframe { width: 100%; height: 100%; border: 0; background: #fff; }
.docviewer-frame { width: 100%; height: 100%; border: 0; background: #eef0f3; }

.docviewer-foot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px 20px;
  padding: 16px 26px 18px;
  border-top: 1px solid var(--line);
}
.docviewer-note { margin: 0; font-size: 14px; color: var(--ink-2); max-width: 56ch; }
.docviewer-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.docviewer-btn[hidden] { display: none; }
.docviewer-btn {
  display: inline-flex; align-items: center;
  min-height: 44px; padding: 8px 18px;
  background: var(--sage); color: var(--white);
  border: 1px solid var(--sage); border-radius: 100px;
  font-family: inherit; font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  text-decoration: none; cursor: pointer;
}
.docviewer-btn:hover { background: var(--sage-dark); color: var(--white); }

@media (max-width: 760px) {
  .docviewer-panel { width: 100%; height: 100%; margin: 0; border-radius: 0; }
  .form-embed iframe { height: 720px; }
}
