/* RIGHTS.cz — red / white / charcoal, no framework.
   All sizes, colours and widths are controlled from the tokens below. */
:root {
  --red: #ce0027;
  --red-dark: #a80020;
  --ink: #17181a;
  --muted: #62636a;
  --line: #e5e5e8;
  --paper: #fff;
  --soft: #f5f5f6;
  --pink: #fff0f2;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Arial, Helvetica, sans-serif;
  --max: 1320px;
  --gutter: clamp(20px, 3.5vw, 54px);
  --radius: 5px;
  --header-h: 86px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body { margin: 0; color: var(--ink); background: var(--paper); font: 15px/1.55 var(--sans); -webkit-font-smoothing: antialiased; }
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; color: inherit; }
button { border: 0; background: none; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { margin-bottom: 0; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--ink); outline-offset: 5px;
}
::selection { background: var(--red); color: white; }
[hidden] { display: none !important; }
.container { width: min(var(--max), calc(100% - var(--gutter) * 2)); margin-inline: auto; }
.icon { width: 1em; height: 1em; fill: currentColor; flex-shrink: 0; display: inline-block; vertical-align: -0.12em; }
.icon-xl { width: 42px; height: 42px; }
.red { color: var(--red); }
.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; }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 200; padding: 12px 20px; color: white; background: var(--red); }
.skip-link:focus { top: 12px; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 26px; height: 2px; background: currentColor; }
.btn { min-height: 45px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 12px 20px; border: 1px solid transparent; border-radius: 3px; font-size: 13px; font-weight: 700; line-height: 1.25; transition: background .18s, transform .18s, border-color .18s; }
.btn .icon { font-size: 14px; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: white; }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline { border-color: var(--red); color: var(--red); background: #ffffffc9; }
.btn-outline:hover { background: var(--pink); }
.btn-white { background: white; color: var(--red); }
.btn-white:hover { background: var(--pink); }
.btn-dark { background: var(--ink); color: white; }
.text-link { display: inline-flex; align-items: center; gap: 13px; color: var(--red); font-size: 12px; font-weight: 700; padding-block: 8px; line-height: 1.4; text-align: left; }
.text-link .icon { transition: transform .18s; }
.text-link:hover .icon { transform: translateX(4px); }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 8px; border-radius: 3px; background: var(--pink); color: var(--red-dark); font-size: 10px; font-weight: 700; line-height: 1.3; letter-spacing: .025em; }

/* 01 — Masthead and navigation */
.site-header { height: var(--header-h); position: sticky; top: 0; z-index: 40; background: #fffffff5; border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.header-inner { height: 100%; display: grid; grid-template-columns: max-content minmax(0, 1fr) max-content; align-items: center; gap: clamp(18px, 2vw, 28px); }
.brand-lockup { display: flex; align-items: center; gap: 16px; min-width: 0; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; white-space: nowrap; letter-spacing: -2.9px; font-size: 37px; font-weight: 900; line-height: 1; }
.brand-mark { color: var(--red); display: inline-block; transform: rotate(-5deg); }
.brand-domain { font-size: .76em; color: var(--red); letter-spacing: -1.4px; }
.brand-tagline { border-left: 1px solid var(--line); padding-left: 14px; color: var(--muted); font-size: 11px; line-height: 1.4; white-space: nowrap; }
.main-nav { display: flex; align-items: center; justify-self: center; gap: 23px; }
.main-nav > a, .main-nav > .nav-topic > button { display: flex; align-items: center; gap: 7px; padding: 14px 0; font-size: 12px; font-weight: 700; white-space: nowrap; }
.main-nav .icon { width: 8px; }
.main-nav a:hover, .main-nav button:hover { color: var(--red); }
.nav-topic { position: relative; }
.nav-dropdown { position: absolute; top: 48px; left: -22px; width: 240px; background: white; border: 1px solid var(--line); border-top: 3px solid var(--red); padding: 12px; box-shadow: 0 16px 40px #17181a14; }
.nav-dropdown button { width: 100%; text-align: left; padding: 10px; font-size: 13px; border-radius: 3px; }
.nav-dropdown button:hover { background: var(--pink); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.search-toggle, .menu-toggle { width: 40px; height: 42px; display: grid; place-content: center; border-radius: 3px; }
.search-toggle:hover, .menu-toggle:hover { background: var(--soft); }
.header-actions .btn { min-height: 39px; padding: 10px 13px; font-size: 12px; gap: 8px; white-space: nowrap; }
.menu-toggle { display: none; }

/* 02 — A portal opening, not a magazine feed */
.hero { position: relative; isolation: isolate; background: #f6f6f5; overflow: hidden; }
.hero .container { min-height: 441px; display: flex; align-items: center; position: relative; }
.hero-content { position: relative; width: 57%; padding: 44px 0 46px; z-index: 2; }
.hero .eyebrow { margin-bottom: 23px; font-size: 10px; }
.hero h1 { margin-bottom: 20px; font-size: clamp(40px, 4.25vw, 64px); font-weight: 900; line-height: 1.025; letter-spacing: -.047em; text-wrap: nowrap; }
.hero h1 span { display: block; color: var(--red); }
.hero-intro { max-width: 464px; color: #53545a; font-size: 15px; line-height: 1.7; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-media { position: absolute; width: 58%; height: 100%; top: 0; right: 0; z-index: -1; }
.hero-media img { height: 100%; width: 100%; object-fit: cover; object-position: 32% 40%; filter: grayscale(1); }
.hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, #f6f6f5 0%, #f6f6f58a 14%, transparent 32%); }
.hero-note { position: absolute; top: 48px; right: 8px; width: 178px; z-index: 2; font: italic 26px/1.23 'Comic Neue', 'Segoe Print', 'Bradley Hand', cursive; transform: rotate(-7deg); }
.hero-note::after { content: ''; display: block; width: 115px; height: 3px; background: var(--red); margin-top: 12px; transform: rotate(-4deg); }
.value-strip { border-bottom: 1px solid var(--line); background: #fff; }
.value-grid { display: grid; grid-template-columns: repeat(5, 1fr); padding-block: 24px; }
.value-item { display: flex; align-items: center; gap: 15px; padding-left: 29px; border-left: 1px solid var(--line); }
.value-item:first-child { padding-left: 0; border: 0; }
.value-item > .icon { color: #55565c; font-size: 27px; }
.value-item strong { display: block; font-size: 17px; line-height: 1.25; }
.value-item small { font-size: 11px; color: var(--muted); }

/* 03 — Thematic entry points */
.section { padding-block: 44px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 25px; }
.section-heading h2 { font: 700 clamp(26px, 2.65vw, 37px)/1.17 var(--serif); letter-spacing: -1.1px; margin: 0 0 10px; }
.section-heading h2 span { color: var(--red); }
.section-heading p { color: var(--muted); font-size: 13px; }
.section-heading > .text-link { flex-shrink: 0; margin-bottom: 3px; }
.topic-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.topic-card { position: relative; display: flex; flex: 0 1 calc((100% - 72px) / 7); flex-direction: column; align-items: center; min-width: 0; min-height: 246px; padding: 25px 17px 19px; background: var(--soft); border-radius: var(--radius); text-align: center; border: 1px solid transparent; transition: transform .2s, border-color .2s, box-shadow .2s; }
.topic-card:nth-child(odd) { background: var(--pink); }
.topic-card > .icon { font-size: 44px; margin-bottom: 22px; }
.topic-card:nth-child(odd) > .icon { color: var(--red); }
.topic-open { padding: 0; font: inherit; }
.topic-open::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius); }
.topic-open:focus-visible { outline: none; }
.topic-open:focus-visible::after { outline: 3px solid var(--ink); outline-offset: 4px; }
.topic-card h3 { margin: 0 0 9px; font-size: 18px; line-height: 1.2; letter-spacing: -.4px; }
.topic-card p { font-size: 12px; line-height: 1.55; color: #5b5c64; margin-bottom: 20px; }
.topic-card .card-link { display: flex; align-items: center; gap: 9px; margin-top: auto; color: var(--red); font-size: 11px; font-weight: 700; }
.topic-card:hover { transform: translateY(-5px); border-color: #ee9aaa; box-shadow: 0 10px 24px #17181a08; }
.topic-card .card-link .icon { transition: transform .2s; }
.topic-card:hover .card-link .icon { transform: translateX(4px); }

/* 04 — Practical entry point */
.help-section { background: var(--soft); }
.help-layout { display: grid; grid-template-columns: 370px 1fr; }
.help-callout { color: white; background: var(--red); display: flex; align-items: center; gap: 22px; padding: 27px 28px; }
.help-callout > .icon { font-size: 63px; }
.help-callout h2 { margin: 0 0 6px; font-size: 24px; letter-spacing: -.7px; line-height: 1.12; }
.help-callout p { font-size: 12px; opacity: .92; line-height: 1.5; }
.help-callout .btn { margin-top: 14px; min-height: 33px; padding: 9px 13px; font-size: 11px; }
.help-links { padding: 24px 0 24px 28px; }
.subhead { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.subhead h3 { font-family: var(--serif); font-size: 22px; margin: 0; letter-spacing: -.5px; }
.practical-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.practical-card { text-align: left; padding: 15px 12px; border-radius: 3px; background: white; display: flex; align-items: start; gap: 10px; border: 1px solid transparent; }
.practical-card:hover { border-color: var(--red); }
.practical-card > .icon { font-size: 25px; color: #5b5d62; }
.practical-card strong { font-size: 11px; display: block; line-height: 1.4; }
.practical-card small { display: block; color: var(--muted); font-size: 10px; line-height: 1.4; margin-top: 5px; }

/* Source-backed data section */
.rights-data { background: #fff; border-bottom: 1px solid var(--line); }
.rights-data-definition { max-width: 1050px; margin: -8px 0 22px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.rights-data-layout { display: grid; grid-template-columns: minmax(180px, .54fr) minmax(300px, 1.18fr) minmax(300px, 1.18fr); gap: 14px; align-items: stretch; }
.rights-data-stats { display: grid; grid-template-rows: repeat(3, minmax(0, 1fr)); gap: 12px; }
.rights-data-stat, .rights-data-panel { min-width: 0; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.rights-data-stat { padding: 15px 17px; }
.rights-data-stat > span { display: block; font-size: 12px; font-weight: 700; }
.rights-data-stat strong { display: block; color: var(--red); font-size: clamp(28px, 2.3vw, 35px); line-height: 1.15; margin: 5px 0 3px; }
.rights-data-stat strong small { font-size: 15px; font-weight: 400; color: var(--muted); }
.rights-data-stat p { color: var(--muted); font-size: 11px; line-height: 1.5; }
.rights-data-stat--small { background: var(--pink); border-color: #f6d8df; }
.rights-data-panel { display: flex; flex-direction: column; padding: 15px 17px; }
.rights-data-panel h3 { margin: 0; font-size: 14px; line-height: 1.4; }
.rights-data-panel > p { color: var(--muted); font-size: 11px; line-height: 1.45; }
.rights-data-panel .erpm-chart { flex: 1; margin-top: 15px; --erpm-chart-map-land: #e8e9ed; --erpm-chart-map-border: #fff; --erpm-chart-map-highlight-stroke: #212227; --erpm-chart-muted: #62636a; }
.rights-data-panel .erpm-chart__svg--map { background: #fff; border-radius: 0; }
.rights-data-panel .erpm-chart__legend { margin-bottom: 11px; font-size: 11px; }
.rights-data-panel .erpm-chart__svg { max-height: 290px; }
.rights-data-scale { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 8px; color: var(--muted); font-size: 10px; }
.rights-data-scale-bar { width: 70px; height: 6px; border-radius: 3px; background: linear-gradient(90deg, #f2a5b3, var(--red)); }
.rights-data-panel .rights-data-caption { margin-top: auto; padding-top: 9px; font-size: 10px; }
.rights-data-source { margin-top: 15px; padding: 15px 18px; background: var(--pink); border: 1px solid #f6d8df; border-radius: var(--radius); color: #42444a; font-size: 12px; line-height: 1.6; }
.rights-data-source a, .rights-data-unavailable a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.rights-data-source .rights-data-flags { margin-top: 5px; }
.rights-data-source abbr { text-decoration: underline dotted; text-underline-offset: 2px; cursor: help; }
.rights-data-stale { color: var(--red-dark); font-weight: 700; }
.rights-data-source details { margin-top: 9px; }
.rights-data-source summary { color: var(--red); cursor: pointer; font-weight: 700; width: fit-content; }
.rights-data-table-wrap { max-height: 350px; overflow: auto; margin-top: 11px; background: #fff; border: 1px solid var(--line); }
.rights-data-source table { width: 100%; border-collapse: collapse; font-size: 12px; }
.rights-data-source caption { padding: 10px 12px; text-align: left; font-weight: 700; }
.rights-data-source th, .rights-data-source td { padding: 6px 12px; border-top: 1px solid var(--line); text-align: left; }
.rights-data-source td { text-align: right; font-variant-numeric: tabular-nums; }
.rights-data-unavailable { padding: 18px; border-left: 3px solid var(--red); background: var(--pink); }

/* Sourced historical timeline */
.history-section { background: linear-gradient(180deg, #fafafa, white); border-top: 1px solid #f2f2f3; padding-block: 33px 39px; }
.timeline-scroll { overflow-x: auto; padding: 15px 5px 8px; }
.timeline { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); position: relative; min-width: 660px; }
.timeline::before { content: ''; position: absolute; top: 7px; left: 0; right: 0; height: 2px; background: #f3a0b1; }
.timeline-event { position: relative; padding: 0 12px 9px 0; text-align: left; }
.timeline-dot { display: block; width: 9px; height: 9px; position: relative; margin: 3px 0 14px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px #fff; }
.timeline-event[aria-pressed="true"] .timeline-dot { box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--red); }
.timeline-event strong { display: block; margin-bottom: 4px; font-size: 13px; }
.timeline-event[aria-pressed="true"] strong, .timeline-event:hover strong { color: var(--red); }
.timeline-event small { display: block; max-width: 145px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.timeline-details { min-height: 124px; }
.timeline-detail { margin-top: 15px; padding: 16px 18px; border: 1px solid var(--line); border-left: 3px solid var(--red); background: #fff; font-size: 13px; line-height: 1.55; }
.timeline-detail h3 { margin: 0; font: 700 14px/1.4 var(--sans); }
.timeline-detail p { margin-top: 6px; color: var(--muted); }
.timeline-detail a { display: inline-block; margin-top: 8px; color: var(--red); font-size: 12px; text-decoration: underline; text-underline-offset: 3px; }

/* 07 — Projects, not more magazine cards */
.projects-section { padding-block: 30px 35px; }
.project-grid { display: grid; grid-template-columns: 1.14fr 1fr 1fr; gap: 15px; }
.project-feature { position: relative; isolation: isolate; overflow: hidden; color: white; background: #202124; border-radius: 3px; min-height: 190px; display: flex; align-items: center; }
.project-feature::before { content: ''; position: absolute; z-index: -1; width: 270px; height: 270px; border-radius: 50%; background: var(--red); right: -40px; top: -70px; }
.project-feature img { position: absolute; right: 0; width: 45%; height: 100%; object-fit: cover; mix-blend-mode: luminosity; opacity: .5; z-index: -1; }
.project-feature > div { padding: 23px; max-width: 73%; }
.project-feature .eyebrow { font-size: 9px; color: #ffb1bf; }
.project-feature .eyebrow::before { display: none; }
.project-feature h3 { margin: 10px 0 7px; font-size: 26px; letter-spacing: -1px; }
.project-feature p { font-size: 12px; max-width: 220px; color: #eeeeef; }
.project-feature .btn { min-height: 33px; padding: 9px 12px; font-size: 10px; margin-top: 16px; }

/* 09 — Footer */
.site-footer { background: #202123; color: white; padding-block: 35px 30px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .9fr 1fr .9fr 1fr; gap: 40px; }
.footer-brand .brand { font-size: 31px; }
.footer-brand p { margin-top: 13px; font-size: 11px; color: #bdbdc3; max-width: 175px; }
.footer-brand .text-link { color: #f6a9b8; font-size: 11px; margin-top: 14px; }
.footer-col h3 { font-size: 12px; margin: 3px 0 13px; }
.footer-col a, .footer-col button { display: block; color: #bbbcc2; font-size: 11px; line-height: 1.65; padding: 3px 0; text-align: left; }
.footer-col a:hover, .footer-col button:hover { color: white; text-decoration: underline; text-underline-offset: 3px; }
.footer-statement { border-left: 1px solid #404044; padding-left: 25px; }
.footer-statement::before { content: ''; display: block; width: 42px; height: 3px; background: var(--red); margin: 4px 0 18px; }
.footer-statement p { font: 23px/1.3 var(--serif); color: #dddde0; }
.footer-statement button { color: #dadadf; text-align: left; font-size: 10px; margin-top: 18px; padding: 0; }
.footer-bottom { padding-block: 12px; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 20px; font-size: 10px; color: var(--muted); }

/* 11 — Tablet and mobile are composed, not merely shrunk. */
@media (min-width: 1600px) { .hero-media { width: 57%; } }
@media (max-width: 1240px) {
  .brand-tagline { display: none; }
  .header-inner { gap: 20px; }
  .main-nav { gap: 21px; }
  .main-nav > a, .main-nav > .nav-topic > button { font-size: 11px; }
  .topic-card { flex-basis: calc((100% - 36px) / 4); }
  .hero-note { right: 0; font-size: 23px; width: 151px; }
  .hero h1 { font-size: 4.4vw; }
  .help-layout { grid-template-columns: 330px 1fr; }
  .help-callout { padding-inline: 20px; gap: 15px; }
  .help-links { padding-left: 20px; }
  .practical-grid { gap: 7px; }
  .practical-card { display: block; }
  .practical-card > .icon { margin-bottom: 8px; }
  .topic-card { padding-inline: 12px; }
  .topic-card h3 { font-size: 16px; }
  .rights-data-layout { grid-template-columns: 1fr 1fr; }
  .rights-data-stats { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); grid-template-rows: none; }
  .card-heading { flex-wrap: wrap; }
  .footer-grid { gap: 27px; }
}
@media (max-width: 980px) {
  :root { --header-h: 73px; }
  .header-inner { display: flex; justify-content: space-between; }
  .main-nav { display: none; position: absolute; left: 0; right: 0; top: var(--header-h); padding: 18px var(--gutter) 24px; background: white; border-bottom: 1px solid var(--line); box-shadow: 0 14px 20px #0000000a; }
  .main-nav.is-open { display: grid; gap: 2px; }
  .main-nav > a, .main-nav > .nav-topic > button { font-size: 16px; padding: 13px 0; }
  .main-nav .nav-topic > button { width: 100%; justify-content: space-between; }
  .nav-dropdown { position: static; width: 100%; box-shadow: none; border: 0; border-left: 2px solid var(--red); padding-block: 0; }
  .menu-toggle { display: grid; }
  .brand { font-size: 34px; }
  .hero .container { min-height: 398px; }
  .hero-content { width: 62%; }
  .hero h1 { font-size: 5.2vw; }
  .hero-intro { max-width: 360px; font-size: 13px; }
  .hero-note { display: none; }
  .hero-media { width: 58%; }
  .hero-media::after { background: linear-gradient(90deg, #f6f6f5, #f6f6f580 17%, transparent 65%); }
  .value-grid { gap: 16px; }
  .value-item { display: block; padding-left: 17px; }
  .value-item > .icon { margin-bottom: 6px; font-size: 24px; }
  .value-item strong { font-size: 14px; }
  .value-item small { font-size: 10px; }
  .topic-card { flex-basis: calc((100% - 24px) / 3); }
  .topic-card { min-height: 210px; padding: 22px 25px; }
  .topic-card > .icon { font-size: 37px; margin-bottom: 16px; }
  .topic-card h3 { font-size: 19px; }
  .topic-card p { margin-bottom: 16px; }
  .topic-card:nth-child(4) { background: var(--pink); }
  .topic-card:nth-child(5) { background: var(--soft); }
  .help-layout { grid-template-columns: 1fr; }
  .help-callout { gap: 25px; padding: 25px; }
  .help-callout > div { display: grid; grid-template-columns: 1fr auto; column-gap: 30px; flex: 1; }
  .help-callout h2 { grid-row: 1; }
  .help-callout p { grid-row: 2; }
  .help-callout .btn { grid-column: 2; grid-row: 1 / 3; align-self: center; margin: 0; }
  .help-links { padding: 24px 0; }
  .practical-card { display: flex; }
  .trend-chart { height: 255px; }
  .project-grid { grid-template-columns: 1fr 1fr; }
  .project-feature { grid-column: 1 / -1; min-height: 170px; }
  .project-feature img { width: 40%; }
  .project-feature::before { right: 90px; }
  .project-feature > div { max-width: 80%; padding: 25px; }
  .project-feature p { max-width: 350px; }
  .footer-grid { grid-template-columns: 1.25fr 1fr 1fr 1fr; gap: 24px; }
  .footer-statement { display: none; }
}
@media (max-width: 640px) {
  :root { --gutter: 20px; --header-h: 66px; }
  .brand { font-size: 31px; }
  .header-actions { gap: 2px; }
  .header-actions .btn { min-height: 34px; padding: 8px 10px; font-size: 10px; gap: 5px; }
  .search-toggle, .menu-toggle { width: 35px; height: 39px; }
  .hero { padding-bottom: 0; }
  .hero .container { display: block; min-height: 0; }
  .hero-content { width: 100%; padding: 32px 0 29px; }
  .hero .eyebrow { margin-bottom: 19px; font-size: 9px; }
  .hero h1 { font-size: clamp(32px, 7.8vw, 50px); letter-spacing: -.048em; line-height: 1.07; margin-bottom: 16px; }
  .hero-intro { max-width: 100%; font-size: 13px; }
  .hero-buttons { gap: 9px; margin-top: 22px; }
  .hero-buttons .btn { font-size: 11px; gap: 11px; padding: 12px 13px; }
  .hero-media { position: relative; width: calc(100% + var(--gutter) * 2); height: 268px; margin-left: calc(-1 * var(--gutter)); z-index: 0; }
  .hero-media img { object-position: center 33%; }
  .hero-media::after { background: linear-gradient(180deg, #f6f6f5 0%, transparent 30%); }
  .hero-note { display: block; position: absolute; top: auto; bottom: 74px; right: 2px; width: 118px; font-size: 18px; background: #f6f6f5aa; padding: 9px 5px; }
  .hero-note::after { width: 86px; }
  .value-grid { grid-template-columns: 1fr 1fr; padding-block: 22px; gap: 18px 14px; }
  .value-item { display: flex; gap: 12px; border: 0; padding-left: 0; }
  .value-item > .icon { width: 25px; font-size: 23px; margin: 0; }
  .value-item strong { font-size: 13px; }
  .value-item small { font-size: 9px; }
  .value-item:last-child { grid-column: 1 / -1; padding-top: 15px; border-top: 1px solid var(--line); }
  .section { padding-block: 33px; }
  .section-heading { display: block; margin-bottom: 21px; }
  .section-heading h2 { font-size: 29px; letter-spacing: -.8px; }
  .section-heading p { font-size: 12px; line-height: 1.7; }
  .section-heading > .text-link { margin-top: 8px; }
  .topic-grid { gap: 10px; }
  .topic-card { flex-basis: calc((100% - 10px) / 2); min-height: 222px; padding: 22px 13px 18px; }
  .topic-card h3 { font-size: 17px; }
  .topic-card > .icon { font-size: 37px; }
  .topic-card p { font-size: 11px; }
  .topic-card .card-link { font-size: 10px; gap: 6px; }
  .topic-card:nth-child(n) { background: var(--soft); }
  .topic-card:nth-child(4n+1), .topic-card:nth-child(4n+4) { background: var(--pink); }
  .help-section .container { width: 100%; }
  .help-callout { padding: 24px var(--gutter); gap: 18px; }
  .help-callout > .icon { font-size: 51px; }
  .help-callout > div { display: block; }
  .help-callout .btn { margin-top: 15px; }
  .help-links { padding: 23px var(--gutter); }
  .subhead { align-items: start; }
  .subhead h3 { font-size: 22px; }
  .subhead .text-link { max-width: 96px; padding: 0; font-size: 10px; }
  .practical-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .practical-card { padding: 16px 12px; min-height: 83px; }
  .rights-data-layout { grid-template-columns: 1fr; }
  .rights-data-stats { grid-template-columns: 1fr 1fr; gap: 9px; }
  .rights-data-stat { padding: 13px; }
  .rights-data-stat--small { grid-column: 1 / -1; }
  .rights-data-panel { padding: 14px; }
  .rights-data-panel .erpm-chart { margin-top: 12px; }
  .rights-data-definition { margin-top: 0; font-size: 12px; }
  .card-heading { flex-wrap: nowrap; }
  .card-heading h3 { font-size: 14px; }
  .trend-chart { height: 240px; }
  .country-result { font-size: 12px; }
  .history-section { padding-block: 30px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-feature { grid-column: auto; min-height: 206px; }
  .project-feature::before { right: -48px; }
  .project-feature img { width: 48%; }
  .project-feature > div { max-width: 79%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 27px; }
  .footer-brand { grid-column: 1 / -1; padding-bottom: 23px; border-bottom: 1px solid #3b3c40; }
  .footer-brand p { max-width: none; }
  .footer-col:last-of-type { grid-column: 1 / -1; }
  .footer-col a, .footer-col button { font-size: 12px; padding-block: 5px; }
  .footer-col h3 { font-size: 13px; }
  .footer-bottom .container { flex-direction: column; gap: 6px; font-size: 9px; }
  .footer-bottom button { text-align: left; font-size: 9px; }
}
@media (max-width: 359px) {
  .brand { font-size: 27px; }
  .header-actions .btn .icon { display: none; }
  .hero h1 { font-size: 7.6vw; }
  .hero-buttons .btn { padding-inline: 10px; font-size: 10px; }
  .topic-card { padding-inline: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; }
}
@media print {
  .site-header { position: static; }
  .header-actions, .main-nav, .hero-buttons, .join-section, .site-footer, dialog { display: none !important; }
  .container { width: 96%; }
  .section, .history-section { break-inside: avoid; }
  .hero .container { min-height: 300px; }
  body { font-size: 11px; }
  * { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
}

/* Production content: ERPM articles and categories use the same visual language. */
.rights-site .nav-dropdown a { display: block; padding: 10px; border-radius: 3px; font-size: 13px; }
.rights-site .nav-dropdown a:hover { background: var(--pink); }
.rights-header-search { display: flex; align-items: center; width: 174px; border: 1px solid var(--line); border-radius: 3px; background: #fff; }
.rights-header-search input { min-width: 0; width: 100%; padding: 9px 0 9px 11px; border: 0; outline: 0; font-size: 12px; }
.rights-header-search button { width: 38px; min-height: 38px; color: var(--red); font-size: 25px; line-height: 1; }
.rights-header-search button i { font-size: 14px; }
.rights-header-search button span { display: none; }
.rights-header-search:focus-within { outline: 2px solid var(--red); outline-offset: 2px; }
.rights-mobile-search { display: none; }
.rights-site .menu-toggle { min-width: 44px; min-height: 44px; }
.rights-site .hero-media { z-index: 0; }
.rights-site .hero-note { right: 340px; top: 50px; }
.rights-site .hero .rights-hero-heading { display: block; padding: 0; margin: 0; }
.rights-site .topic-card > i.icon { display: block; width: auto; height: auto; line-height: 1; }
.rights-site .practical-card { text-decoration: none; }
.rights-articles { background: #fff; }
.rights-articles-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.rights-site .rights-articles-grid .article-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); }
.rights-site .rights-articles-grid .article-card__image { display: block; aspect-ratio: 16 / 9; overflow: hidden; }
.rights-site .rights-articles-grid .article-card__image img { width: 100%; height: 100%; object-fit: cover; }
.rights-site .rights-articles-grid .article-card__body { padding: 20px; }
.rights-site .rights-articles-grid .article-card__meta { color: var(--red); font-size: 11px; font-weight: 700; }
.rights-site .rights-articles-grid .article-card h2 { margin: 10px 0; font: 700 24px/1.2 var(--serif); }
.rights-site .rights-articles-grid .article-card h2 a:hover { color: var(--red); }
.rights-site .rights-articles-grid .article-card__excerpt { color: var(--muted); font-size: 13px; }
.rights-articles-empty { grid-column: 1 / -1; padding: 24px; border-left: 3px solid var(--red); background: var(--soft); color: var(--muted); }
.rights-project-grid { display: block; }
.rights-project-grid .project-feature { min-height: 230px; }
.rights-project-grid .project-feature > div { max-width: 650px; padding: 30px; }
.rights-project-grid .project-feature p { max-width: none; }
body.rights-site .site-footer { display: block; width: 100%; margin: 0; padding: 35px 0 20px; }
body.rights-site .site-footer .container { width: min(var(--max), calc(100% - var(--gutter) * 2)); margin-inline: auto; }
body.rights-site .site-footer .footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; }
body.rights-site .site-footer .footer-brand { width: auto; padding: 0; }
body.rights-site .site-footer .footer-col { display: block; width: auto; }
body.rights-site .site-footer .footer-col a { display: block; padding: 3px 0; }
body.rights-site .site-footer .footer-bottom .container { display: flex; flex-direction: row; align-items: center; justify-content: space-between; }
body.rights-site .site-footer .footer-bottom nav { display: flex; flex-wrap: wrap; gap: 10px 18px; }
body.rights-site .site-footer .footer-bottom a { color: #bdbdc3; }
body.rights-site .site-footer .footer-bottom a:hover { color: #fff; }
.rights-site .site-shell { width: min(var(--max), calc(100% - var(--gutter) * 2)); margin-inline: auto; padding-block: 40px 70px; }
.rights-site .site-shell .site-hero { padding: 24px 0 30px; border-bottom: 1px solid var(--line); }
.rights-site .site-shell .site-hero h1 { color: var(--ink); font: 700 clamp(32px, 4vw, 52px)/1.1 var(--serif); }
.rights-site .site-shell .site-hero p { color: var(--red); font-weight: 700; }
.rights-site .site-category-header { min-height: 0; padding: 26px 0 32px; align-items: center; border-bottom-width: 3px; }
.rights-site .site-category-header__intro { grid-template-rows: auto; }
.rights-site .site-category-header__title { font: 700 clamp(36px, 4vw, 58px)/1.08 var(--serif); }
.rights-site .site-category-header__description { font-size: 16px; }
.rights-category-empty { margin: 24px 0; padding: 24px; border-left: 3px solid var(--red); background: var(--soft); }
.rights-category-empty p { color: var(--muted); }
.rights-category-empty a { display: inline-block; margin-top: 12px; color: var(--red); font-weight: 700; }
.rights-site .site-shell .site-layout { margin-top: 24px; }
.rights-site .site-shell .article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.rights-site .site-shell .article-grid .article-card { border: 1px solid var(--line); background: var(--soft); }
.rights-site .site-shell .article-grid .article-card__body { padding: 20px; }
.rights-site .site-shell .article-grid .article-card h2 { font: 700 22px/1.2 var(--serif); }
.rights-site .article-detail { max-width: 840px; margin-inline: auto; }
.rights-site .article-detail__header h1 { font: 700 clamp(34px, 4vw, 56px)/1.12 var(--serif); }
.rights-site .article-detail__meta { color: var(--red); }
@media (max-width: 980px) {
  .rights-site .rights-articles-grid, .rights-site .site-shell .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.rights-site .site-footer .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 1240px) {
  .rights-site .hero-note { display: none; }
}
@media (max-width: 680px) {
  .rights-header-search { display: none; }
  .rights-mobile-search { display: grid; grid-template-columns: 1fr auto; gap: 7px; padding-top: 14px; border-top: 1px solid var(--line); }
  .rights-mobile-search label { grid-column: 1 / -1; font-size: 12px; font-weight: 700; }
  .rights-mobile-search input { min-width: 0; padding: 10px; border: 1px solid var(--line); }
  .rights-mobile-search button { padding: 10px 14px; background: var(--red); color: #fff; border-radius: 3px; }
  .rights-mobile-search button i { margin-right: 5px; }
  .rights-site .rights-articles-grid, .rights-site .site-shell .article-grid { grid-template-columns: 1fr; }
  .timeline-scroll { margin-right: calc(-1 * var(--gutter)); padding-right: var(--gutter); }
  .timeline-detail { padding: 14px; }
  body.rights-site .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 14px; }
  body.rights-site .site-footer .footer-brand, body.rights-site .site-footer .footer-statement { grid-column: 1 / -1; }
  body.rights-site .site-footer .footer-bottom .container { flex-direction: column; align-items: flex-start; }
}
