/* SPDX-License-Identifier: NCSA */
:root {
  --brand: #1d4f6e;
  --brand-deep: #12364f;
  --brand-soft: #e8eef1;
  --accent: #b34d41;
  --accent-soft: #f4e8e4;
  --ink: #172b3d;
  --footer: #142b3e;
  --surface: #fbfaf7;
  --surface-muted: #f0f3f4;
  --line: #d3dce1;
  --muted: #657583;
  --danger: #a4262c;
  --success: #176b4b;
  --warning: #8c6200;
  --shadow: 0 12px 30px rgb(20 43 62 / .08);
  --radius: 0;
  --pico-font-family-sans-serif: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", "Segoe UI", sans-serif;
  --pico-primary: var(--brand);
  --pico-primary-hover: var(--brand-deep);
  --pico-primary-focus: rgb(29 79 110 / .22);
  --pico-border-radius: 0;
  --pico-form-element-spacing-vertical: .72rem;
  --pico-form-element-spacing-horizontal: .85rem;
}

* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: clip; }
html { scroll-behavior: smooth; }
body { color: var(--ink); background: var(--surface); font-family: var(--pico-font-family-sans-serif); font-size: .98rem; letter-spacing: .012em; }
a { color: var(--brand); transition: color .18s ease, background-color .18s ease, border-color .18s ease; }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; }
button, [role="button"] { border-radius: 0; font-weight: 700; letter-spacing: .015em; }
button:hover, [role="button"]:hover { transform: translateY(-1px); }
:where(a, button, input, select, textarea):focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
:where(.card, .article-card, .data-card, .contact-details, .responsive-table th, .responsive-table td) { overflow-wrap: anywhere; }
.container { width: min(1240px, calc(100% - 3rem)); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* Public shell */
.site-header { position: sticky; top: 0; z-index: 30; background: rgb(251 250 247 / .96); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.topbar { min-height: 5.25rem; display: flex; align-items: center; gap: 2rem; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: .85rem; color: var(--ink); font-weight: 800; text-decoration: none; flex: 0 1 auto; min-width: 0; letter-spacing: .02em; }
.brand > span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.brand-mark { display: grid; place-items: center; inline-size: 2.25rem; block-size: 2.25rem; flex: 0 0 2.25rem; background: var(--brand); color: #fff; font-size: .82rem; font-weight: 800; border-radius: 0; box-shadow: inset -6px 0 0 var(--accent); }
.brand-logo { display: block; width: auto; height: 2.5rem; max-width: 13rem; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: .15rem; flex: 0 0 auto; min-width: max-content; overflow: visible; }
.desktop-nav > a, .nav-dropdown summary { color: var(--ink); display: block; font-size: .78rem; font-weight: 750; padding: .75rem .72rem; white-space: nowrap; text-decoration: none; cursor: pointer; letter-spacing: .045em; }
.desktop-nav > a:hover, .nav-dropdown summary:hover { color: var(--accent); background: var(--accent-soft); }
.nav-dropdown { position: relative; flex: 0 0 auto; margin: 0; }
.nav-dropdown summary { list-style: none; }
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::after { content: "⌄"; margin-left: .35rem; color: var(--accent); font-size: .72rem; }
.nav-dropdown ul { position: absolute; z-index: 70; right: 0; top: 3.2rem; gap: 0; min-width: 17rem; margin: 0; padding: .45rem; list-style: none; white-space: nowrap; background: var(--surface); border: 1px solid var(--line); border-top: 2px solid var(--accent); box-shadow: var(--shadow); }
.nav-dropdown:not([open]) > ul { display: none; }
.nav-dropdown[open] > ul { display: grid; }
.nav-dropdown li { margin: 0; }
.nav-dropdown li a { display: block; padding: .62rem .75rem; color: var(--ink); text-decoration: none; font-size: .84rem; }
.nav-dropdown li a:hover { color: var(--accent); background: var(--surface-muted); }
.menu-toggle { display: none; margin: 0; padding: .52rem .7rem; font-size: 1.2rem; line-height: 1; border-color: var(--brand); background: var(--brand); color: #fff; }

.drawer-overlay { position: fixed; inset: 0; z-index: 40; background: rgb(20 43 62 / .58); }
.mobile-drawer { position: fixed; inset: 0 auto 0 0; z-index: 50; width: min(22rem, calc(100vw - 2.5rem)); padding: 1.25rem; background: var(--surface); box-shadow: var(--shadow); transform: translateX(-105%); transition: transform .18s ease-out; overflow-y: auto; }
.mobile-drawer.is-open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 1rem; border-bottom: 2px solid var(--accent); }
.drawer-title { color: var(--brand); font-weight: 800; font-size: 1.1rem; letter-spacing: .05em; text-transform: uppercase; }
.drawer-close { margin: 0; padding: .2rem .55rem; font-size: 1.65rem; line-height: 1; }
.drawer-nav { display: grid; gap: .1rem; padding-top: 1rem; }
.drawer-nav a { padding: .68rem .7rem; color: var(--ink); text-decoration: none; border-left: 2px solid transparent; }
.drawer-nav a:hover { color: var(--accent); background: var(--accent-soft); border-left-color: var(--accent); }
.drawer-group { margin: 1rem .7rem .2rem; color: var(--accent); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
body.drawer-open { overflow: hidden; }

/* Landing page */
.hero { position: relative; padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(4rem, 8vw, 7rem); background: var(--surface); border-bottom: 1px solid var(--line); }
.hero::before { position: absolute; inset: 0 auto 0 max(1rem, calc((100vw - 1240px) / 2)); width: 1px; background: var(--line); content: ""; opacity: .7; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(22rem, .86fr); align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.hero-copy { max-width: 44rem; padding-left: clamp(0rem, 2vw, 1.5rem); }
.eyebrow { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.4rem; color: var(--accent); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { width: 2.4rem; height: 2px; background: var(--accent); content: ""; }
.hero h1, .page-hero h1 { margin: 0 0 1.3rem; color: var(--ink); font-size: clamp(2.35rem, 5.3vw, 5.2rem); font-weight: 700; line-height: 1.07; letter-spacing: -.052em; }
.hero p { max-width: 39rem; color: var(--muted); font-size: 1.05rem; line-height: 1.85; }
.action-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.action-row a, .action-row button { margin: 0; padding: .86rem 1.22rem; }
.hero-visual { position: relative; aspect-ratio: 1 / .92; overflow: hidden; border: 0; border-radius: 0; background: var(--brand-soft); box-shadow: 18px 18px 0 var(--accent-soft); }
.hero-visual::after { position: absolute; inset: 1rem; border: 1px solid rgb(255 255 255 / .55); content: ""; pointer-events: none; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.04); }

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-muted { background: var(--surface-muted); border-block: 1px solid var(--line); }
.section-heading { display: flex; gap: 1.5rem; align-items: end; justify-content: space-between; margin-bottom: 2rem; }
.section-heading h2 { position: relative; margin: 0; padding-left: 1rem; color: var(--ink); font-size: clamp(1.6rem, 3vw, 2.35rem); line-height: 1.2; letter-spacing: -.035em; }
.section-heading h2::before { position: absolute; inset: .08em auto .08em 0; width: 3px; background: var(--accent); content: ""; }
.section-heading p { max-width: 42rem; margin: .65rem 0 0; color: var(--muted); line-height: 1.7; }
.split-copy { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2rem; align-items: end; }
.split-copy .section-heading { margin-bottom: 0; }
.card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.card, .article-card, .data-card { height: 100%; margin: 0; padding: 1.55rem; border: 0; border-radius: 0; background: var(--surface); box-shadow: none; }
.card { border-top: 3px solid transparent; }
.card:hover, .article-card:hover { border-color: var(--accent); box-shadow: 0 8px 22px rgb(20 43 62 / .08); }
.card:hover { border-top-color: var(--accent); }
.card h3, .article-card h3, .data-card h3 { margin-top: 0; color: var(--ink); font-size: 1.05rem; letter-spacing: -.01em; }
.card p, .article-card p, .data-card p { color: var(--muted); line-height: 1.7; }
.card-icon { display: grid; place-items: center; width: 2.55rem; height: 2.55rem; margin-bottom: 1.35rem; background: var(--brand); color: #fff; border-radius: 0; box-shadow: inset -5px 0 0 var(--accent); font-size: .86rem; font-weight: 800; }
.article-thumb { width: 100%; aspect-ratio: 16 / 9; margin-bottom: 1.2rem; object-fit: cover; background: var(--brand-soft); border-radius: 0; filter: saturate(.78); }
.article-thumb-placeholder { display: grid; place-items: center; color: var(--brand); font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.article-meta { display: flex; flex-wrap: wrap; gap: .4rem .8rem; margin: .85rem 0 1rem; color: var(--muted); font-size: .78rem; }
.article-card footer { margin-top: auto; padding-top: .35rem; background: transparent; border: 0; }
.article-card { display: flex; flex-direction: column; border-top: 2px solid var(--brand); }
.investor-panel { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: center; padding: clamp(1.8rem, 4vw, 3.2rem); border: 1px solid var(--brand); border-left: 6px solid var(--accent); background: var(--brand); color: #fff; }
.investor-panel h2 { margin-top: 0; color: inherit; letter-spacing: -.03em; }
.investor-panel p { color: rgb(255 255 255 / .78); line-height: 1.75; }
.investor-panel .action-row { justify-content: end; margin-top: 0; }
.investor-panel [role="button"] { background: #fff; border-color: #fff; color: var(--brand); }
.investor-panel [role="button"]:hover { background: var(--accent-soft); border-color: var(--accent-soft); color: var(--brand-deep); }
.cta { padding: clamp(2rem, 4vw, 3rem) 0; color: var(--ink); background: transparent; border-block: 1px solid var(--line); border-radius: 0; }
.cta h2 { color: inherit; margin-top: 0; letter-spacing: -.035em; }
.cta p { max-width: 42rem; color: var(--muted); }
.cta .secondary { background: var(--brand); border-color: var(--brand); color: #fff; }

/* Interior pages */
.page-hero { position: relative; padding: clamp(3.5rem, 7vw, 6rem) 0 2.5rem; background: var(--surface-muted); border-bottom: 1px solid var(--line); }
.page-hero::after { position: absolute; right: max(1rem, calc((100vw - 1240px) / 2)); bottom: -1px; width: 5rem; height: 3px; background: var(--accent); content: ""; }
.page-hero h1 { max-width: 55rem; font-size: clamp(2.1rem, 4vw, 3.75rem); }
.page-hero p { max-width: 46rem; margin-bottom: 0; color: var(--muted); font-size: 1rem; line-height: 1.75; }
.content-stack { display: grid; gap: 1rem; max-width: 55rem; }
.content-stack article { margin: 0; border: 1px solid var(--line); border-top: 3px solid var(--brand); border-radius: 0; box-shadow: none; }
.content-stack article h2 { color: var(--ink); }
.empty-state { padding: 1.5rem; border: 1px dashed var(--line); color: var(--muted); background: var(--surface-muted); }
.member-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.member-card { display: grid; grid-template-columns: 4.5rem minmax(0, 1fr); gap: 1rem; align-items: start; padding: 1rem; border: 1px solid var(--line); border-top: 2px solid var(--brand); background: var(--surface); }
.member-photo { width: 4.5rem; height: 4.5rem; object-fit: cover; border-radius: 0; background: var(--brand-soft); filter: saturate(.72); }
.member-placeholder { display: grid; place-items: center; width: 4.5rem; height: 4.5rem; background: var(--brand-soft); color: var(--brand); font-weight: 800; border-radius: 0; }
.member-card h2 { margin: 0 0 .25rem; font-size: 1.05rem; }
.member-card p { margin: .35rem 0 0; color: var(--muted); }
.filter-form { display: grid; grid-template-columns: minmax(0, 1fr) 12rem auto; gap: .75rem; align-items: end; margin-bottom: 1.5rem; padding: 1.15rem; background: var(--surface-muted); border: 1px solid var(--line); border-top: 3px solid var(--brand); }
.filter-form label { margin: 0; }
.filter-form button { margin: 0; }
.pagination { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; margin-top: 1.5rem; }
.pagination a { text-decoration: none; }
.article-page { max-width: 48rem; }
.article-layout { display: grid; grid-template-columns: minmax(0, 48rem) minmax(12rem, 1fr); gap: 2rem; align-items: start; }
.article-sidebar { position: sticky; top: 6rem; }
.article-page > header { margin-bottom: 1.5rem; }
.article-page h1 { color: var(--ink); font-size: clamp(2rem, 5vw, 3.75rem); line-height: 1.08; letter-spacing: -.045em; }
.article-feature { width: 100%; aspect-ratio: 16 / 8; margin: 1.5rem 0; object-fit: cover; border: 1px solid var(--line); filter: saturate(.78); }
.article-body { font-size: 1.04rem; line-height: 1.85; }
.article-body h2, .article-body h3 { margin-top: 2rem; color: var(--ink); }
.article-body blockquote { border-left-color: var(--accent); }
.article-body img { display: block; margin: 1.25rem 0; }
.ad-slot, [data-ad-slot] { min-height: 3rem; display: grid; place-items: center; margin: 1.5rem 0; padding: .55rem; border: 1px solid var(--line); color: var(--muted); background: var(--surface-muted); font-size: .72rem; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.preview-notice { padding: .7rem 1rem; color: #5c4300; background: #fff5d8; border: 1px solid #e7ca72; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(16rem, .72fr); gap: 2rem; align-items: start; }
.contact-details { padding: 1.4rem; border: 1px solid var(--line); border-top: 3px solid var(--brand); background: var(--surface-muted); }
.contact-details dl { margin: 0; }
.contact-details dt { margin-top: 1rem; color: var(--accent); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.contact-details dd { margin: .2rem 0 0; }

.flash-wrap { margin-top: 1rem; }
.flash { margin: 0; padding: .8rem 1rem; border-radius: 0; }
.flash-success { color: #0d4f36; background: #e2f4eb; border: 1px solid #a9dac0; }
.flash-error { color: #7e1c22; background: #ffeaeb; border: 1px solid #efb6b9; }
.flash-warning { color: #664d00; background: #fff5d6; border: 1px solid #e8cf82; }
.flash ul { margin: .35rem 0 0; }

/* Footer and consent */
.site-footer { padding-top: 3.5rem; color: rgb(255 255 255 / .86); background: var(--footer); border-top: 4px solid var(--accent); }
.site-footer a { display: block; color: #fff; text-decoration: none; }
.site-footer a:hover { color: #f3c4bd; text-decoration: none; }
.site-footer strong { color: #fff; letter-spacing: .03em; }
.site-footer p, .site-footer address { color: rgb(255 255 255 / .68); font-style: normal; line-height: 1.75; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr .7fr; gap: 3rem; }
.footer-grid div { display: grid; align-content: start; gap: .48rem; }
.footer-bottom { margin-top: 2.5rem; padding: 1.1rem 0; border-top: 1px solid rgb(255 255 255 / .16); color: rgb(255 255 255 / .58); font-size: .78rem; letter-spacing: .04em; }
.cookie-popup { position: fixed; z-index: 60; right: 1rem; bottom: 1rem; width: min(28rem, calc(100vw - 2rem)); margin: 0; padding: 1.15rem; color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--accent); box-shadow: var(--shadow); }
.cookie-popup p { margin: .45rem 0 1rem; color: var(--muted); font-size: .86rem; line-height: 1.6; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: .65rem; }
.cookie-actions button { width: auto; margin: 0; }

/* Admin */
.admin-body { min-height: 100vh; background: var(--surface-muted); }
.admin-header { background: var(--footer); color: #fff; border-bottom: 4px solid var(--accent); }
.admin-topbar { min-height: 4.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.admin-header .brand { color: #fff; }
.admin-header .brand-mark { background: var(--accent); box-shadow: none; }
.admin-header small { color: rgb(255 255 255 / .65); font-weight: 600; }
.admin-account { display: flex; align-items: center; gap: .8rem; font-size: .88rem; }
.admin-account form { margin: 0; }
.admin-account button { margin: 0; padding: .35rem .6rem; color: #fff; border-color: rgb(255 255 255 / .35); }
.admin-nav { border-bottom: 1px solid var(--line); background: var(--surface); overflow-x: auto; }
.admin-nav > div { display: flex; min-width: max-content; gap: .2rem; }
.admin-nav a { padding: .8rem .65rem; color: var(--ink); font-size: .82rem; font-weight: 700; text-decoration: none; }
.admin-nav a:hover { color: var(--accent); background: var(--accent-soft); }
.admin-main { padding-top: 2rem; padding-bottom: 3rem; }
.admin-page-head { display: flex; gap: 1rem; align-items: end; justify-content: space-between; margin-bottom: 1.25rem; }
.admin-page-head h1 { margin: 0; color: var(--ink); font-size: clamp(1.7rem, 3vw, 2.5rem); letter-spacing: -.04em; }
.admin-page-head p { margin: .35rem 0 0; color: var(--muted); }
.stats-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat { margin: 0; padding: 1.2rem; border: 0; border-top: 3px solid var(--brand); border-radius: 0; box-shadow: none; background: var(--surface); }
.stat small { display: block; color: var(--muted); font-weight: 700; }
.stat strong { display: block; margin-top: .3rem; color: var(--ink); font-size: 2rem; line-height: 1; }
.admin-card { margin: 1.25rem 0 0; padding: 1.35rem; border: 1px solid var(--line); border-top: 3px solid var(--brand); border-radius: 0; background: var(--surface); box-shadow: none; }
.admin-card > header { padding: 0 0 1rem; margin-bottom: 1rem; border-bottom: 1px solid var(--line); background: transparent; }
.admin-card > header h2 { margin: 0; color: var(--ink); font-size: 1.2rem; }
.responsive-table { overflow-x: auto; border: 1px solid var(--line); background: var(--surface); }
.responsive-table:focus-visible { outline: 3px solid rgb(179 77 65 / .35); outline-offset: 2px; }
.responsive-table table { width: 100%; min-width: 42rem; margin: 0; }
.responsive-table th, .responsive-table td { vertical-align: top; }
.table-actions { display: flex; flex-wrap: wrap; gap: .35rem; }
.table-actions a, .table-actions button { width: auto; margin: 0; padding: .35rem .55rem; font-size: .78rem; }
.status { display: inline-block; padding: .15rem .45rem; border-radius: 0; font-size: .72rem; font-weight: 800; text-transform: capitalize; }
.status-published, .status-completed, .status-active, .status-read { color: #075a3c; background: #ddf3e8; }
.status-draft, .status-planned, .status-new { color: #6d5000; background: #fff2c8; }
.status-ongoing, .status-archived, .status-inactive { color: #23547a; background: #e0edf8; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
.form-grid label { margin-bottom: 0; }
.form-grid input, .form-grid select, .form-grid textarea { margin-top: .35rem; }
.form-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }
.form-actions button, .form-actions a { width: auto; margin: 0; }
.editor-toolbar { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .55rem; padding: .5rem; border: 1px solid var(--line); background: var(--surface-muted); }
.editor-toolbar button { width: auto; margin: 0; padding: .3rem .5rem; font-size: .8rem; }
.rich-editor { min-height: 18rem; padding: .85rem; overflow: auto; border: 1px solid var(--line); background: var(--surface); outline: 0; }
.rich-editor:focus { border-color: var(--accent); box-shadow: 0 0 0 .15rem rgb(179 77 65 / .16); }
.upload-inline { display: flex; flex-wrap: wrap; gap: .75rem; align-items: end; margin-bottom: 1rem; padding: 1rem; border: 1px dashed var(--line); background: var(--surface-muted); }
.upload-inline label { margin: 0; flex: 1 1 16rem; }
.upload-inline button { width: auto; margin: 0; }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
}

@media (max-width: 980px) {
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .member-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 2rem, 1240px); }
  .hero::before { display: none; }
  .hero-grid, .investor-panel, .contact-grid, .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .hero-visual { max-width: 34rem; width: 100%; box-shadow: 10px 10px 0 var(--accent-soft); }
  .investor-panel .action-row { justify-content: start; margin-top: .5rem; }
  .article-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .filter-form { grid-template-columns: 1fr; }
  .filter-form button { width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .container { width: min(100% - 1.25rem, 1240px); }
  .topbar { min-height: 4rem; }
  .brand { max-width: calc(100% - 3.5rem); }
  .brand-logo { max-width: 9rem; }
  .section-heading, .split-copy, .admin-page-head { display: block; }
  .section-heading > *, .split-copy > *, .admin-page-head > * { margin-bottom: .85rem; }
  .card-grid, .member-grid, .stats-grid, .form-grid { grid-template-columns: 1fr; }
  .action-row { display: grid; }
  .action-row a, .action-row button { width: 100%; }
  .cookie-popup { right: .6rem; bottom: .6rem; width: calc(100vw - 1.2rem); }
}

/* Keep the holding palette consistent with the legacy theme settings. */
:root {
  --brand: #1d4f6e !important;
  --brand-deep: #12364f !important;
  --brand-soft: #e8eef1 !important;
  --accent: #b34d41 !important;
  --accent-soft: #f4e8e4 !important;
  --ink: #172b3d !important;
  --footer: #142b3e !important;
  --surface: #fbfaf7 !important;
  --surface-muted: #f0f3f4 !important;
  --line: #d3dce1 !important;
  --muted: #657583 !important;
  --pico-primary: #1d4f6e !important;
  --pico-primary-background: #1d4f6e !important;
  --pico-primary-border: #1d4f6e !important;
  --pico-primary-underline: rgb(29 79 110 / .5) !important;
  --pico-primary-hover: #12364f !important;
  --pico-primary-hover-background: #12364f !important;
  --pico-primary-hover-border: #12364f !important;
  --pico-primary-hover-underline: #12364f !important;
  --pico-primary-focus: rgb(29 79 110 / .22) !important;
  --pico-primary-inverse: #fff !important;
  --pico-secondary: #657583 !important;
  --pico-secondary-background: #657583 !important;
  --pico-secondary-border: #657583 !important;
  --pico-secondary-hover: #4f606d !important;
  --pico-secondary-hover-background: #4f606d !important;
  --pico-secondary-hover-border: #4f606d !important;
  --pico-border-radius: 0 !important;
}
