:root {
  color-scheme: light;
  --page-bg: #f3f5f7;
  --page-surface: #ffffff;
  --page-text: #1d242b;
  --page-muted: #66717b;
  --page-line: #dbe0e4;
  --page-dark: #20262c;
  --page-orange: #c84e12;
  --page-orange-dark: #a93d08;
  --page-green: #187363;
  --page-soft: #edf1f3;
}

* { box-sizing: border-box; }
html { background: var(--page-bg); scroll-behavior: smooth; }
body { margin: 0; color: var(--page-text); background: var(--page-bg); font-family: Inter, Arial, sans-serif; font-size: 16px; line-height: 1.5; letter-spacing: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; letter-spacing: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.page-topbar { position: sticky; top: 0; z-index: 40; min-height: 68px; display: grid; grid-template-columns: 280px minmax(0, 1fr) auto; align-items: center; gap: 24px; padding: 10px 24px; color: #fff; background: var(--page-dark); border-bottom: 1px solid #3a4249; }
.page-brand { display: grid; grid-template-columns: 38px auto; grid-template-rows: auto auto; align-items: center; column-gap: 10px; width: max-content; }
.page-brand > span { grid-row: 1 / 3; display: grid; place-items: center; width: 38px; height: 38px; color: #fff; background: var(--page-orange); border-radius: 7px; font-weight: 900; font-size: 20px; }
.page-brand strong { font-size: 19px; line-height: 1.1; }
.page-brand small { color: #bfc7cd; font-size: 12px; }
.page-topbar nav { display: flex; align-items: center; justify-content: center; gap: 26px; }
.page-topbar nav a { color: #e8ecef; font-weight: 700; font-size: 14px; }
.page-topbar nav a:hover { color: #fff; }
.page-topbar-actions { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
.page-icon-button { display: inline-grid; width: 40px; height: 40px; flex: 0 0 40px; place-items: center; padding: 0; color: inherit; border: 1px solid #46515a; border-radius: 7px; background: #2b333a; cursor: pointer; }
.page-icon-button:hover { color: #fff; border-color: #68747d; background: #353e46; }
.page-icon-button svg { width: 19px; height: 19px; }
.page-menu-toggle { display: none; }
.page-account-link { display: flex; min-width: 0; align-items: center; gap: 8px; padding: 4px 8px 4px 4px; border-radius: 7px; color: #fff; }
.page-account-link:hover { background: #30383f; }
.page-account-link > img, .page-account-link > span { display: grid; width: 32px; height: 32px; flex: 0 0 32px; place-items: center; overflow: hidden; border-radius: 6px; object-fit: cover; color: #fff; background: var(--page-orange); font-size: 12px; font-weight: 900; }
.page-account-link strong { max-width: 150px; overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.page-app-button, .page-primary, .page-secondary { display: inline-flex; min-height: 42px; align-items: center; justify-content: center; gap: 7px; padding: 9px 15px; border-radius: 7px; font-weight: 800; }
.page-app-button svg { width: 18px; height: 18px; }
.page-app-button, .page-primary { color: #fff; background: var(--page-orange); }
.page-app-button:hover, .page-primary:hover { background: var(--page-orange-dark); }
.page-secondary { border: 1px solid var(--page-line); background: #fff; }
.page-secondary:hover { border-color: #aeb7bf; }

.page-shell { display: grid; grid-template-columns: 250px minmax(0, 1fr); min-height: calc(100vh - 68px); }
.page-sidebar { position: sticky; top: 68px; align-self: start; height: calc(100vh - 68px); overflow: auto; padding: 24px 18px 30px; color: #dce2e6; background: var(--page-dark); }
.page-sidebar-head { display: none; }
.page-sidebar section { margin-top: 24px; }
.page-sidebar section:first-of-type { margin-top: 0; }
.page-sidebar h2 { margin: 0 10px 7px; color: #89949d; font-size: 10px; line-height: 1.2; text-transform: uppercase; }
.page-sidebar a { display: flex; min-height: 39px; align-items: center; gap: 10px; padding: 8px 10px; border-left: 3px solid transparent; color: #dce2e6; font-size: 14px; font-weight: 650; }
.page-sidebar a > svg { width: 18px; height: 18px; flex: 0 0 18px; color: #9da8b0; }
.page-sidebar a:hover { color: #fff; background: #2c343b; }
.page-sidebar a.is-active { color: #fff; border-left-color: var(--page-orange); background: #30383f; }
.page-sidebar a.is-active > svg { color: #f06b28; }
.page-sidebar-account { margin-top: 24px; padding-top: 14px; border-top: 1px solid #39434b; }
.page-sidebar-account > a { min-height: 54px; border: 0; border-radius: 6px; background: #2a3239; }
.page-sidebar-account img, .page-sidebar-account > a > span:not(:last-child) { display: grid; width: 34px; height: 34px; flex: 0 0 34px; place-items: center; overflow: hidden; border-radius: 6px; object-fit: cover; color: #fff; background: var(--page-orange); font-size: 12px; font-weight: 900; }
.page-sidebar-account div { display: flex; min-width: 0; flex: 1; flex-direction: column; }
.page-sidebar-account strong, .page-sidebar-account small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.page-sidebar-account small { color: #9eabb4; font-size: 11px; }
.page-sidebar-account > a > svg:last-child { margin-left: auto; }
.page-sidebar-login { justify-content: center; color: #fff !important; background: var(--page-orange) !important; font-weight: 800 !important; }
.page-sidebar-backdrop { display: none; }

.page-main { width: 100%; max-width: 1580px; min-width: 0; padding: 28px 34px 56px; }
.page-breadcrumbs { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; margin-bottom: 18px; color: var(--page-muted); font-size: 13px; }
.page-breadcrumbs a:hover { color: var(--page-orange); }
.page-breadcrumbs strong { color: #3c464e; font-weight: 700; }
.page-heading { max-width: 1000px; margin-bottom: 24px; }
.page-heading > p { margin: 0 0 6px; color: var(--page-orange); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.page-heading h1 { margin: 0; font-size: 40px; line-height: 1.12; }
.page-heading > div { max-width: 850px; margin-top: 11px; color: var(--page-muted); font-size: 16px; }

.page-search { display: grid; grid-template-columns: minmax(0, 720px) 140px; gap: 8px; margin-bottom: 18px; }
.page-search input { width: 100%; min-height: 46px; padding: 10px 14px; color: var(--page-text); border: 1px solid #cbd2d8; border-radius: 6px; background: #fff; outline: none; }
.page-search input:focus { border-color: var(--page-orange); box-shadow: 0 0 0 3px rgb(200 78 18 / 12%); }
.page-search button { min-height: 46px; padding: 9px 20px; color: #fff; border: 0; border-radius: 6px; background: var(--page-dark); font-weight: 800; cursor: pointer; }
.page-result-summary { display: flex; gap: 8px; align-items: baseline; margin: 8px 0 16px; color: var(--page-muted); }
.page-result-summary strong { color: var(--page-text); font-size: 22px; }
.page-workspace-banner { display: flex; max-width: 1120px; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 18px; padding: 16px 18px; border: 1px solid #b9d7d0; border-left: 4px solid var(--page-green); border-radius: 7px; background: #edf7f5; }
.page-workspace-banner > div { display: flex; min-width: 0; flex-direction: column; }
.page-workspace-banner strong { color: #145f53; font-size: 16px; }
.page-workspace-banner span { margin-top: 3px; color: #50605d; font-size: 13px; }
.page-workspace-banner .page-primary { flex: 0 0 auto; }
.page-tabs { display: flex; width: max-content; max-width: 100%; gap: 3px; margin-bottom: 18px; padding: 3px; overflow-x: auto; border: 1px solid var(--page-line); border-radius: 7px; background: #fff; }
.page-tabs a { min-width: max-content; padding: 8px 13px; border-radius: 5px; color: var(--page-muted); font-size: 14px; font-weight: 800; }
.page-tabs a.is-active { color: #fff; background: var(--page-dark); }

.page-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; align-items: stretch; }
.page-grid.is-products { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.page-card { min-width: 0; overflow: hidden; border: 1px solid var(--page-line); border-radius: 7px; background: var(--page-surface); }
.page-card:hover { border-color: #afb8bf; box-shadow: 0 8px 22px rgb(24 31 37 / 8%); }
.page-card-media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: #e8ecef; }
.product-card .page-card-media { aspect-ratio: 1; }
.page-card-media img { width: 100%; height: 100%; object-fit: cover; }
.page-media-placeholder { display: grid; place-items: center; width: 100%; height: 100%; min-height: 120px; color: #fff; background: #4b565f; }
.page-media-placeholder span { display: grid; place-items: center; width: 52px; height: 52px; border: 2px solid rgb(255 255 255 / 40%); border-radius: 7px; font-size: 28px; font-weight: 900; }
.page-card-body { display: flex; min-height: 220px; flex-direction: column; padding: 14px; }
.page-card-meta { display: flex; gap: 8px; justify-content: space-between; min-width: 0; color: var(--page-muted); font-size: 11px; font-weight: 750; }
.page-card-meta span, .page-card-meta time { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.page-card-meta strong { color: var(--page-green); }
.page-card h2 { margin: 11px 0 8px; font-size: 17px; line-height: 1.28; }
.page-card h2 a:hover { color: var(--page-orange); }
.page-card p { display: -webkit-box; margin: 0; overflow: hidden; color: var(--page-muted); font-size: 13px; -webkit-box-orient: vertical; -webkit-line-clamp: 4; }
.page-card footer { display: flex; gap: 8px; justify-content: space-between; align-items: flex-end; margin-top: auto; padding-top: 15px; color: var(--page-muted); font-size: 12px; }
.page-card footer strong { color: var(--page-text); font-size: 15px; }
.test-card .page-card-body { min-height: 280px; }
.person-card { display: grid; grid-template-columns: 96px minmax(0, 1fr); }
.person-card-avatar { align-self: start; width: 80px; height: 80px; margin: 14px 0 14px 14px; overflow: hidden; border-radius: 7px; background: #e7ecef; }
.person-card-avatar img, .person-card-avatar .page-media-placeholder { width: 100%; height: 100%; min-height: 0; object-fit: cover; }

.page-detail { max-width: 1120px; padding: 24px; border: 1px solid var(--page-line); border-radius: 7px; background: #fff; }
.page-detail-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-bottom: 22px; }
.page-detail-gallery img, .page-detail-gallery .page-media-placeholder { width: 100%; aspect-ratio: 16 / 10; height: auto; min-height: 0; object-fit: cover; border-radius: 5px; }
.product-gallery img, .product-gallery .page-media-placeholder { aspect-ratio: 1; }
.page-detail-meta { display: flex; flex-wrap: wrap; gap: 9px 18px; margin-bottom: 20px; color: var(--page-muted); font-size: 13px; }
.page-detail-meta span:first-child { color: var(--page-orange); font-weight: 850; }
.page-lead { max-width: 900px; margin: 0 0 25px; color: #343e46; font-size: 19px; line-height: 1.58; }
.page-prose { max-width: 900px; color: #303941; font-size: 16px; line-height: 1.72; overflow-wrap: anywhere; }
.page-prose h2 { margin: 30px 0 10px; font-size: 23px; }
.page-prose h3 { margin: 25px 0 9px; font-size: 19px; }
.page-prose p { margin: 0 0 17px; }
.page-prose ul { padding-left: 22px; }
.resource-prose { max-width: none; columns: 1; }
.page-facts { display: flex; flex-wrap: wrap; gap: 1px; margin: 25px 0; overflow: hidden; border: 1px solid var(--page-line); border-radius: 6px; background: var(--page-line); }
.page-facts div { min-width: 0; flex: 1 1 220px; padding: 12px 14px; background: #fff; }
.page-facts dt { color: var(--page-muted); font-size: 11px; font-weight: 750; text-transform: uppercase; }
.page-facts dd { margin: 5px 0 0; overflow-wrap: anywhere; font-weight: 780; }
.page-detail-author, .page-seller { display: flex; gap: 12px; align-items: center; margin-top: 24px; padding: 14px 0; border-top: 1px solid var(--page-line); }
.page-detail-author span, .page-seller span { color: var(--page-muted); font-size: 13px; }
.page-detail-author a, .page-seller a { color: var(--page-orange); font-weight: 850; }
.page-detail-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.page-price-panel { display: flex; flex-wrap: wrap; gap: 12px; margin: 15px 0 24px; }
.page-price-panel div { min-width: 190px; padding: 14px; border-left: 4px solid var(--page-orange); background: var(--page-soft); }
.page-price-panel span { display: block; color: var(--page-muted); font-size: 12px; }
.page-price-panel strong { display: block; margin-top: 3px; font-size: 24px; }
.page-chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 22px; }
.page-chips span { padding: 6px 9px; border: 1px solid #ccd4d9; border-radius: 5px; background: #fff; color: #4b565f; font-size: 12px; font-weight: 750; }
.page-notice { max-width: 900px; margin: 22px 0; padding: 15px 17px; border-left: 4px solid var(--page-green); background: #edf7f5; }
.page-notice strong { color: #145f53; }
.page-notice p { margin: 5px 0 0; color: #52605f; }
.page-map-link { display: flex; flex-direction: column; max-width: 700px; margin-top: 20px; padding: 15px; border: 1px solid var(--page-line); background: var(--page-soft); }
.page-map-link strong { color: var(--page-orange); }

.page-discussion, .page-section { max-width: 1120px; margin-top: 22px; }
.page-discussion > h2, .page-section > h2, .page-detail > h2 { margin: 0 0 13px; font-size: 21px; }
.page-response { margin-bottom: 8px; padding: 15px 17px; border: 1px solid var(--page-line); border-radius: 6px; background: #fff; }
.page-response.is-best { border-left: 4px solid var(--page-green); }
.page-response header { display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center; }
.page-response header a, .page-response header > strong:first-child { font-weight: 850; }
.page-response header > strong:not(:first-child) { color: var(--page-green); font-size: 12px; }
.page-response header time { margin-left: auto; color: var(--page-muted); font-size: 12px; }
.page-response p { margin: 10px 0 0; color: #3d464d; }
.page-directory-rows, .normative-list, .city-list, .calendar-events { display: grid; gap: 7px; }
.page-directory-rows article, .normative-row, .city-row, .calendar-event-row { display: flex; gap: 18px; justify-content: space-between; align-items: center; padding: 15px 17px; border: 1px solid var(--page-line); border-radius: 6px; background: #fff; }
.page-directory-rows article div, .city-row div, .calendar-event-row div { display: flex; min-width: 0; flex-direction: column; }
.page-directory-rows span, .city-row span, .calendar-event-row span { color: var(--page-muted); font-size: 13px; }
.page-directory-rows a, .city-row a { color: var(--page-orange); font-weight: 800; }
.city-row nav { display: flex; gap: 8px; }
.normative-row div { min-width: 0; }
.normative-row > strong, .normative-status strong { color: var(--page-green); font-size: 12px; }
.normative-row span { color: var(--page-orange); font-size: 11px; font-weight: 850; text-transform: uppercase; }
.normative-row h2 { margin: 4px 0; font-size: 17px; }
.normative-row p { margin: 0; color: var(--page-muted); font-size: 13px; }
.normative-page-download { border-color: #0b7189; color: #fff; background: #0b7189; }
.normative-page-download:hover { border-color: #075e72; color: #fff; background: #075e72; }
.normative-status { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 18px; }
.normative-status span { color: var(--page-orange); font-weight: 850; }
.engineering-analysis { max-width: 950px; margin-top: 28px; padding-top: 22px; border-top: 3px solid var(--page-dark); }
.engineering-analysis > header p { margin: 0; color: var(--page-orange); font-size: 12px; font-weight: 850; text-transform: uppercase; }
.engineering-analysis > header h2 { margin: 4px 0 18px; font-size: 28px; }
.engineering-analysis > section { padding: 15px 0; border-top: 1px solid var(--page-line); }
.engineering-analysis > section h2 { margin: 0 0 6px; font-size: 18px; }
.engineering-analysis > section p { margin: 0; color: #44505a; }

.company-identity, .person-identity { display: flex; gap: 15px; align-items: center; margin-bottom: 23px; }
.company-logo, .person-avatar { flex: 0 0 auto; width: 88px !important; height: 88px !important; min-height: 0 !important; object-fit: cover; border: 1px solid var(--page-line); border-radius: 7px; background: #fff; }
.company-identity > div, .person-identity > div { display: flex; min-width: 0; flex-direction: column; }
.company-identity strong, .person-identity strong { font-size: 19px; }
.company-identity span, .person-identity span { color: var(--page-muted); }
.manufacturer-cover { max-height: 430px; margin: -24px -24px 23px; overflow: hidden; background: #e6eaed; }
.manufacturer-cover img, .manufacturer-cover .page-media-placeholder { width: 100%; max-height: 430px; min-height: 260px; object-fit: cover; }
.knowledge-cover { margin: -24px -24px 24px; }
.knowledge-cover img { width: 100%; max-height: 520px; object-fit: cover; }

.page-pagination { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 24px; }
.page-link { min-width: 38px; padding: 8px 11px; text-align: center; border: 1px solid var(--page-line); border-radius: 5px; background: #fff; font-weight: 750; }
.page-link.is-current { color: #fff; border-color: var(--page-dark); background: var(--page-dark); }
.page-empty { display: grid; min-height: 280px; place-items: center; align-content: center; gap: 8px; padding: 30px; text-align: center; border: 1px solid var(--page-line); border-radius: 7px; background: #fff; }
.page-empty > strong { font-size: 30px; }
.page-empty p, .page-muted, .page-disclaimer { color: var(--page-muted); }
.page-disclaimer { max-width: 800px; margin-top: 18px; font-size: 12px; }
.calendar-nav { display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: center; margin-bottom: 16px; padding: 12px; border: 1px solid var(--page-line); background: #fff; }
.calendar-nav a:last-child { text-align: right; }
.calendar-nav a { color: var(--page-orange); font-weight: 800; }
.calendar-event-row time { min-width: 85px; font-weight: 850; }
.zodiac-tabs { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 17px; }
.zodiac-tabs a { padding: 7px 9px; border: 1px solid var(--page-line); border-radius: 5px; background: #fff; font-size: 13px; font-weight: 750; }
.zodiac-tabs a.is-active { color: #fff; border-color: var(--page-dark); background: var(--page-dark); }
.horoscope-card { max-width: 900px; padding: 23px; border: 1px solid var(--page-line); border-radius: 7px; background: #fff; }
.horoscope-card > p { margin: 0; color: var(--page-orange); font-size: 12px; font-weight: 850; text-transform: uppercase; }
.horoscope-card > h2 { margin: 4px 0 18px; font-size: 30px; }

.page-footer { display: flex; gap: 20px; justify-content: center; padding: 24px; color: #aeb7bf; background: #1c2227; font-size: 12px; }
.page-footer a:hover { color: #fff; }

@media (max-width: 1500px) {
  .page-grid.is-products { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
@media (max-width: 1260px) {
  .page-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .page-grid.is-products { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  body.page-menu-open { overflow: hidden; }
  .page-topbar { grid-template-columns: auto minmax(0, 1fr) auto; gap: 10px; padding: 9px 15px; }
  .page-menu-toggle { display: inline-grid; }
  .page-topbar > nav, .page-brand small { display: none; }
  .page-brand { grid-template-columns: 34px auto; }
  .page-brand > span { width: 34px; height: 34px; }
  .page-account-link strong { display: none; }
  .page-shell { display: block; }
  .page-sidebar { position: fixed; z-index: 60; top: 0; left: 0; width: min(320px, calc(100vw - 44px)); height: 100dvh; padding: 14px 14px 24px; transform: translateX(-105%); transition: transform 180ms ease; box-shadow: 12px 0 34px rgb(0 0 0 / 24%); }
  .page-sidebar.is-open { transform: translateX(0); }
  .page-sidebar-head { position: sticky; z-index: 2; top: -14px; display: flex; min-height: 58px; align-items: center; justify-content: space-between; margin: -14px -14px 8px; padding: 9px 14px; border-bottom: 1px solid #39434b; background: var(--page-dark); }
  .page-sidebar-head strong { font-size: 17px; }
  .page-sidebar section, .page-sidebar section:first-of-type { margin-top: 19px; }
  .page-sidebar h2 { display: block; }
  .page-sidebar a { min-width: 0; min-height: 42px; border-left: 3px solid transparent; }
  .page-sidebar a.is-active { border-left-color: var(--page-orange); }
  .page-sidebar-backdrop { position: fixed; z-index: 50; inset: 0; display: block; visibility: hidden; padding: 0; border: 0; opacity: 0; background: rgb(10 14 18 / 58%); transition: opacity 180ms ease, visibility 180ms ease; }
  body.page-menu-open .page-sidebar-backdrop { visibility: visible; opacity: 1; }
  .page-main { padding: 24px 20px 45px; }
  .page-grid, .page-grid.is-products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .page-topbar { min-height: 58px; }
  .page-app-button { min-height: 38px; padding: 7px 10px; font-size: 12px; }
  .page-main { padding: 18px 14px 40px; }
  .page-heading h1 { font-size: 30px; }
  .page-search { grid-template-columns: 1fr; }
  .page-workspace-banner { align-items: stretch; flex-direction: column; }
  .page-search button { width: 100%; }
  .page-grid, .page-grid.is-products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .page-card-body { min-height: 205px; padding: 12px; }
  .page-card h2 { font-size: 15px; }
  .page-detail { padding: 17px; }
  .page-detail-gallery { grid-template-columns: 1fr 1fr; }
  .page-directory-rows article, .normative-row, .city-row, .calendar-event-row { align-items: flex-start; flex-direction: column; }
  .page-response header time { width: 100%; margin-left: 0; }
  .manufacturer-cover, .knowledge-cover { margin: -17px -17px 19px; }
  .manufacturer-cover img, .manufacturer-cover .page-media-placeholder { min-height: 190px; }
  .page-footer { flex-wrap: wrap; gap: 10px 16px; }
}
@media (max-width: 430px) {
  .page-brand strong { font-size: 17px; }
  .page-topbar-actions { gap: 5px; }
  .page-topbar-actions > .page-icon-button { display: none; }
  .page-account-link { padding-right: 3px; }
  .page-app-button { width: 38px; min-width: 38px; padding: 0; }
  .page-app-button span { display: none; }
  .page-heading h1 { font-size: 27px; overflow-wrap: anywhere; }
  .page-grid, .page-grid.is-products { grid-template-columns: 1fr; }
  .page-card { display: grid; grid-template-columns: 112px minmax(0, 1fr); }
  .page-card-media { height: 100%; aspect-ratio: auto; }
  .page-card-body { min-height: 190px; }
  .page-card p { -webkit-line-clamp: 3; }
  .test-card, .person-card { display: block; }
  .test-card .page-card-body { min-height: 250px; }
  .person-card-avatar { float: left; }
  .page-detail-gallery { grid-template-columns: 1fr; }
  .page-detail-actions { display: grid; }
  .calendar-nav { grid-template-columns: 1fr 1fr; }
  .calendar-nav strong { grid-column: 1 / 3; grid-row: 1; text-align: center; }
  .calendar-nav a { grid-row: 2; }
}
