﻿
    :root {
      --forest: #0a623a;
      --forest-deep: #05381f;
      --forest-rgb: 10, 98, 58;
      --moss: #0d7a47;
      --sage: #6bc996;
      --sage-pale: #e6f5ed;
      --bark: #6b4c3b;
      --gold: #f8be07;
      --gold-light: #fce89a;
      --mist: #f1f8f4;
      --fog: #e8f0eb;
      --paper: #ffffff;
      --ink: #1a2e26;
      --muted: #5a6f65;
      --radius: 20px;
      --radius-sm: 12px;
      --header-h: 96px;
    }

    *, *::before, *::after { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      height: 100%;
    }

    body {
      margin: 0;
      min-height: 100%;
      display: flex;
      flex-direction: column;
      font-family: "DM Sans", system-ui, sans-serif;
      font-size: 1rem;
      color: var(--ink);
      line-height: 1.6;
      background: var(--mist);
      background-image:
        radial-gradient(ellipse 120% 80% at 10% -20%, rgba(149, 213, 178, 0.35), transparent 50%),
        radial-gradient(ellipse 90% 60% at 100% 0%, rgba(233, 196, 106, 0.12), transparent 45%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    }

    .display { font-family: "Fraunces", Georgia, serif; }

    .site-header {
      flex-shrink: 0;
      position: sticky;
      top: 0;
      z-index: 10000;
      background: rgba(var(--forest-rgb), 0.96);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(149, 213, 178, 0.2);
      box-shadow: 0 8px 32px rgba(8, 28, 21, 0.15);
      isolation: isolate;
    }

    .header-inner {
      max-width: 1320px;
      margin: 0 auto;
      padding: 1rem 1.75rem;
      min-height: var(--header-h);
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      gap: 0.75rem 1rem;
      position: relative;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 1.1rem;
      text-decoration: none;
      color: #fff;
      cursor: pointer;
      flex: 1 1 auto;
      min-width: 0;
    }

    .header-nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 10001;
      width: 100%;
      padding: 0.35rem 1rem 1.15rem;
      background: rgba(8, 28, 21, 0.98);
      border-top: 1px solid rgba(255,255,255,.1);
      box-shadow: 0 16px 32px rgba(8, 28, 21, 0.35);
    }

    .header-nav.open {
      display: block;
    }

    .brand img,
    .brand-logo {
      height: 68px;
      width: auto;
      filter: drop-shadow(0 4px 12px rgba(0,0,0,.2));
    }

    .brand-logo {
      object-fit: contain;
      display: block;
    }

    .site-footer .brand-logo {
      height: 44px;
    }

    .brand-text h1 {
      margin: 0;
      font-family: "Fraunces", serif;
      font-size: 2rem;
      font-weight: 600;
      letter-spacing: -0.03em;
      line-height: 1.05;
    }

    .brand-text span {
      display: block;
      font-size: .75rem;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--sage);
      margin-top: 4px;
    }

    .main-nav {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 0.2rem;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .main-nav a {
      color: rgba(255,255,255,.88);
      text-decoration: none;
      font-size: .9rem;
      font-weight: 500;
      display: block;
      padding: 0.7rem 0.85rem;
      border-radius: var(--radius-sm);
      transition: background .2s, color .2s;
    }

    .main-nav a:hover {
      background: rgba(255,255,255,.1);
      color: #fff;
    }

    .main-nav a.active {
      background: var(--gold);
      color: var(--forest-deep);
      font-weight: 600;
    }

    .nav-toggle {
      display: inline-flex;
      flex: 0 0 auto;
      align-items: center;
      justify-content: center;
      width: 2.75rem;
      height: 2.75rem;
      padding: 0;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(255,255,255,.28);
      background: rgba(255,255,255,.1);
      color: #fff;
      cursor: pointer;
      transition: background .2s, border-color .2s;
    }

    .nav-toggle:hover {
      background: rgba(255,255,255,.18);
      border-color: rgba(255,255,255,.4);
    }

    .nav-toggle-bars {
      position: relative;
      display: block;
      width: 1.35rem;
      height: 2px;
      background: currentColor;
      border-radius: 2px;
      transition: background .2s ease;
    }

    .nav-toggle-bars::before,
    .nav-toggle-bars::after {
      content: "";
      position: absolute;
      left: 0;
      width: 100%;
      height: 2px;
      background: currentColor;
      border-radius: 2px;
      transition: transform .22s ease, top .22s ease;
    }

    .nav-toggle-bars::before { top: -7px; }
    .nav-toggle-bars::after { top: 7px; }

    .site-header.nav-open .nav-toggle-bars {
      background: transparent;
    }

    .site-header.nav-open .nav-toggle-bars::before {
      top: 0;
      transform: rotate(45deg);
    }

    .site-header.nav-open .nav-toggle-bars::after {
      top: 0;
      transform: rotate(-45deg);
    }

    .nav-backdrop {
      display: block;
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(8, 28, 21, 0.45);
      border: none;
      padding: 0;
      margin: 0;
      cursor: pointer;
    }

    .nav-backdrop[hidden] {
      display: none !important;
    }

    body.nav-menu-open {
      overflow: hidden;
    }

    .page-main {
      flex: 1 0 auto;
      width: 100%;
    }

    .container {
      max-width: 1320px;
      margin: 0 auto;
      padding: 2rem 1.75rem 3rem;
    }

    .tab-panel {
      display: none;
      animation: rise .4s cubic-bezier(.22, 1, .36, 1);
    }

    .tab-panel.active { display: block; }

    @keyframes rise {
      from { opacity: 0; transform: translateY(12px); }
      to { opacity: 1; transform: none; }
    }

    .hero {
      position: relative;
      border-radius: calc(var(--radius) + 4px);
      overflow: hidden;
      min-height: 380px;
      box-shadow: 0 24px 48px rgba(var(--forest-rgb), 0.12);
    }

    .hero-slides {
      display: flex;
      height: 100%;
      width: 100%;
      transition: transform .7s cubic-bezier(.4, 0, .2, 1);
      will-change: transform;
    }

    .hero-slide {
      flex: 0 0 100%;
      width: 100%;
      min-height: 380px;
      background-size: cover;
      background-position: center;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        105deg,
        rgba(8, 28, 21, 0.75) 0%,
        rgba(var(--forest-rgb), 0.45) 45%,
        rgba(var(--forest-rgb), 0.15) 100%
      );
      pointer-events: none;
    }

    .hero-caption {
      position: absolute;
      left: 0;
      bottom: 0;
      z-index: 2;
      padding: 2.5rem 2.75rem;
      max-width: 680px;
      color: #fff;
    }

    .hero-caption .motto {
      font-family: "Fraunces", serif;
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      font-weight: 600;
      margin: 0 0 .75rem;
      line-height: 1.15;
      text-wrap: balance;
    }

    .hero-caption p {
      margin: 0;
      font-size: 1.1rem;
      opacity: .92;
      font-weight: 400;
      max-width: 52ch;
    }

    .hero-dots {
      position: absolute;
      right: 2rem;
      bottom: 2rem;
      z-index: 3;
      display: flex;
      gap: .6rem;
    }

    .hero-dots button {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,.6);
      background: transparent;
      cursor: pointer;
      padding: 0;
      transition: transform .2s, background .2s;
    }

    .hero-dots button.on {
      background: var(--gold);
      border-color: var(--gold);
      transform: scale(1.15);
    }

    .section-head {
      margin: 2.75rem 0 1.5rem;
    }

    .section-head h2 {
      margin: 0 0 .4rem;
      font-family: "Fraunces", serif;
      font-size: 2rem;
      font-weight: 600;
      color: var(--forest);
      letter-spacing: -0.02em;
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
      font-size: 1.05rem;
      max-width: 60ch;
    }

    .intro-panel {
      margin-top: 2rem;
      padding: 2rem 2.25rem;
      background: var(--paper);
      border-radius: var(--radius);
      border: 1px solid var(--fog);
      box-shadow: 0 4px 24px rgba(var(--forest-rgb), 0.04);
    }

    .intro-panel p { margin: 0 0 1rem; max-width: 70ch; color: var(--muted); }
    .intro-panel p strong { color: var(--ink); }

    .richtext {
      max-width: 72ch;
      color: var(--ink);
      line-height: 1.65;
    }

    .richtext > :first-child { margin-top: 0; }
    .richtext > :last-child { margin-bottom: 0; }

    .richtext p,
    .richtext div,
    .richtext blockquote,
    .richtext figure {
      margin: 0 0 1rem;
    }

    .richtext .lead,
    .richtext--lead {
      font-size: 1.1rem;
      color: var(--muted);
    }

    .richtext h2,
    .richtext h3,
    .richtext h4 {
      font-family: "Fraunces", Georgia, serif;
      color: var(--forest);
      margin: 1.5rem 0 0.75rem;
      line-height: 1.25;
    }

    .richtext ul,
    .richtext ol {
      margin: 0 0 1rem;
      padding-left: 1.35rem;
    }

    .richtext a {
      color: var(--moss);
      font-weight: 600;
    }

    .richtext img {
      max-width: 100%;
      height: auto;
      border-radius: var(--radius-sm);
    }

    .richtext blockquote {
      padding-left: 1rem;
      border-left: 3px solid var(--sage);
      color: var(--muted);
      font-style: italic;
    }

    .richtext--quote {
      font-style: italic;
      font-size: 0.95rem;
      color: var(--muted);
    }

    .grid-3 {
      display: grid;
      gap: 1.5rem;
      margin-top: 2rem;
    }

    @media (min-width: 800px) {
      .grid-3 { grid-template-columns: 1fr 2fr; }
    }

    @media (min-width: 1000px) {
      .grid-3 { grid-template-columns: 1fr 1.2fr 1fr; }
    }

    .grid-4 {
      display: grid;
      gap: 1.25rem;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

    .card {
      background: var(--paper);
      border-radius: var(--radius);
      border: 1px solid var(--fog);
      overflow: hidden;
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(var(--forest-rgb), 0.1);
    }

    .card-body { padding: 1.35rem 1.5rem; }

    .card h3 {
      margin: 0 0 .4rem;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--forest);
    }

    .card p { margin: 0; font-size: .92rem; color: var(--muted); }

    .pill {
      display: inline-block;
      font-size: .7rem;
      font-weight: 600;
      padding: .25rem .7rem;
      border-radius: 999px;
      background: var(--sage-pale);
      color: var(--moss);
      margin-bottom: .6rem;
    }

    .thumb {
      aspect-ratio: 16/10;
      background: linear-gradient(145deg, var(--sage) 0%, var(--forest) 100%);
      display: flex;
      align-items: flex-end;
      padding: 1rem;
      color: #fff;
      font-weight: 600;
      font-size: .9rem;
    }

    .card-thumb-link {
      display: block;
      text-decoration: none;
      color: inherit;
    }

    .card-thumb-link:hover .thumb {
      filter: brightness(1.05);
    }

    .card-thumb-link .thumb {
      transition: filter .2s, transform .2s;
    }

    .card-thumb-link:hover .thumb {
      transform: scale(1.01);
    }

    .article-detail-grid {
      display: grid;
      gap: 2rem;
      align-items: start;
    }

    @media (min-width: 900px) {
      .article-detail-grid {
        grid-template-columns: 1fr minmax(260px, 360px);
      }
    }

    .article-detail-main {
      padding: 2rem 2.25rem;
    }

    .article-detail-media {
      padding: 1.25rem 1.25rem 1.25rem 0;
    }

    @media (max-width: 899px) {
      .article-detail-media {
        padding: 0 1.25rem 1.25rem;
      }
      .article-detail-main {
        padding-bottom: 0;
      }
    }

    .article-detail-photo {
      display: block;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 12px 32px rgba(var(--forest-rgb), 0.12);
      border: 1px solid var(--fog);
      text-decoration: none;
    }

    .article-detail-photo img {
      width: 100%;
      height: auto;
      display: block;
      aspect-ratio: 4/3;
      object-fit: cover;
    }

    .intro-panel input[type="file"] {
      width: 100%;
      padding: .5rem 0;
      font-family: inherit;
      font-size: .92rem;
    }

    .symbol-gallery {
      display: grid;
      gap: 1.25rem;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      margin-top: 1rem;
    }

    .symbol-gallery-item { margin: 0; }

    .symbol-gallery-thumb {
      display: block;
      width: 100%;
      padding: 0;
      border: none;
      border-radius: var(--radius-sm);
      overflow: hidden;
      cursor: zoom-in;
      background: var(--fog);
    }

    .symbol-gallery-thumb img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      display: block;
      transition: transform .25s ease;
    }

    .symbol-gallery-thumb:hover img { transform: scale(1.03); }

    .symbol-gallery-item figcaption {
      margin-top: .5rem;
      font-size: .88rem;
      color: var(--muted);
      line-height: 1.4;
    }

    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(8, 28, 21, 0.92);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      gap: 1rem;
    }

    .lightbox[hidden] { display: none !important; }

    .lightbox-img {
      max-width: min(1100px, 95vw);
      max-height: 75vh;
      border-radius: var(--radius-sm);
      box-shadow: 0 24px 48px rgba(0,0,0,.4);
    }

    .lightbox-caption {
      color: rgba(255,255,255,.9);
      max-width: 60ch;
      text-align: center;
      margin: 0;
      font-size: 1rem;
    }

    .lightbox-close {
      position: absolute;
      top: 1rem;
      right: 1.25rem;
      width: 44px;
      height: 44px;
      border: none;
      border-radius: 50%;
      background: rgba(255,255,255,.15);
      color: #fff;
      font-size: 1.75rem;
      line-height: 1;
      cursor: pointer;
    }

    .lightbox-close:hover { background: rgba(255,255,255,.25); }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: .35rem;
      padding: .65rem 1.25rem;
      border-radius: 999px;
      font-weight: 600;
      font-size: .9rem;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: transform .15s, box-shadow .2s;
    }

    .btn:hover { transform: translateY(-1px); }

    .btn-primary {
      background: var(--forest);
      color: #fff;
      box-shadow: 0 4px 14px rgba(var(--forest-rgb), 0.25);
    }

    .btn-accent {
      background: var(--gold);
      color: var(--forest-deep);
    }

    .btn-soft {
      background: var(--sage-pale);
      color: var(--forest);
    }

    .btn-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }

    .news-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .news-list li {
      display: flex;
      gap: 1rem;
      padding: .85rem 0;
      border-bottom: 1px solid var(--fog);
      font-size: .92rem;
    }

    .news-list li:last-child { border-bottom: none; }

    .news-list time {
      font-weight: 600;
      color: var(--moss);
      font-size: .82rem;
      min-width: 3.5rem;
    }

    .news-list a {
      color: var(--ink);
      font-weight: 500;
      text-decoration: none;
    }

    .news-list a:hover {
      color: var(--moss);
    }

    .filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: .5rem;
      margin-bottom: 1.75rem;
    }

    .filter-bar a,
    .filter-bar button {
      padding: .5rem 1.1rem;
      border-radius: 999px;
      border: 1px solid var(--fog);
      background: var(--paper);
      font-family: inherit;
      font-size: .88rem;
      font-weight: 500;
      color: var(--muted);
      cursor: pointer;
      transition: all .2s;
      text-decoration: none;
      display: inline-block;
    }

    .filter-bar a.on,
    .filter-bar a:hover,
    .filter-bar button.on,
    .filter-bar button:hover {
      background: var(--forest);
      color: #fff;
      border-color: var(--forest);
    }

    .toolbar {
      display: flex;
      flex-wrap: wrap;
      gap: 1.25rem;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 1.25rem;
    }

    .search-input {
      width: 100%;
      max-width: 300px;
      padding: .7rem 1.15rem;
      border: 1px solid var(--fog);
      border-radius: 999px;
      font-family: inherit;
      font-size: .95rem;
      background: var(--paper);
      transition: border-color .2s, box-shadow .2s;
    }

    .search-input:focus {
      outline: none;
      border-color: var(--moss);
      box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.2);
    }

    .club-card .card-body { border-top: 4px solid var(--moss); }
    .club-card.osada .card-body { border-top-color: var(--bark); }

    .person-card { display: grid; gap: 0; }

    @media (min-width: 768px) {
      .person-card { grid-template-columns: minmax(260px, 300px) 1fr; }
    }

    .person-side {
      padding: 2rem;
      background: linear-gradient(180deg, var(--sage-pale), var(--mist));
      text-align: center;
    }

    .avatar {
      width: 140px;
      height: 140px;
      margin: 0 auto 1.25rem;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--moss), var(--forest));
      border: 4px solid var(--paper);
      box-shadow: 0 12px 28px rgba(var(--forest-rgb), 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,.9);
      font-size: .75rem;
    }

    .audio-box {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.1rem 1.25rem;
      background: var(--mist);
      border-radius: var(--radius-sm);
      margin-bottom: 1.25rem;
    }

    .play-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: none;
      background: var(--forest);
      color: #fff;
      font-size: 1rem;
      cursor: pointer;
      flex-shrink: 0;
    }

    .timeline {
      list-style: none;
      padding: 0 0 0 1.25rem;
      margin: 1rem 0 0;
      border-left: 2px solid var(--sage);
    }

    .timeline li {
      position: relative;
      padding: 0 0 .75rem 1rem;
      font-size: .92rem;
      color: var(--muted);
    }

    .timeline li::before {
      content: "";
      position: absolute;
      left: -1.35rem;
      top: .5rem;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--moss);
    }

    #map-container {
      position: relative;
      z-index: 0;
      height: 460px;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 12px 36px rgba(var(--forest-rgb), 0.1);
      border: 1px solid var(--fog);
    }

    #map-container .leaflet-container {
      z-index: 0;
    }

    .map-legend {
      display: flex;
      gap: 1.5rem;
      font-size: .8rem;
      font-weight: 500;
      color: var(--muted);
    }

    .map-legend span::before {
      content: "";
      display: inline-block;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      margin-right: .4rem;
      vertical-align: middle;
    }

    .map-legend .c-tabor::before { background: var(--moss); }
    .map-legend .c-vyznam::before { background: var(--gold); }

    .topic-index {
      background: var(--paper);
      padding: 2rem 2.5rem;
      border-radius: var(--radius);
      border: 1px solid var(--fog);
      display: grid;
      gap: 1.25rem 2.5rem;
      grid-template-columns: 1fr;
    }

    @media (min-width: 700px) {
      .topic-index { grid-template-columns: repeat(3, 1fr); }
    }

    .topic-letter {
      break-inside: avoid;
      min-width: 0;
    }

    .topic-letter-title {
      font-weight: 700;
      font-size: 1.25rem;
      color: var(--forest);
      margin: 0 0 .35rem;
      font-family: "Fraunces", Georgia, serif;
    }

    .topic-letter-items {
      margin: 0;
      font-size: .9rem;
      color: var(--muted);
      line-height: 1.5;
    }

    .topic-letter-items a {
      color: var(--muted);
      font-weight: 500;
      text-decoration: none;
    }

    .topic-letter-items a:hover { color: var(--forest); }

    .highlight-card {
      background: linear-gradient(145deg, var(--forest) 0%, var(--forest-deep) 100%);
      color: #fff;
      text-align: center;
    }

    .highlight-card h3 { color: var(--gold-light); font-family: "Fraunces", serif; }
    .highlight-card p { color: rgba(255,255,255,.8); }

    .site-footer {
      flex-shrink: 0;
      margin-top: auto;
      padding: 2.25rem 1.75rem;
      background: var(--forest-deep);
      color: rgba(255,255,255,.75);
      text-align: center;
      font-size: .9rem;
    }

    .footer-inner {
      max-width: 1320px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .75rem;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: .75rem;
    }

    .site-footer img {
      height: 44px;
      opacity: .95;
    }

    .site-footer strong { color: #fff; }
    .site-footer a { color: var(--sage); text-decoration: none; }
    .site-footer a:hover { color: var(--gold); }

    /* Desktop: logo vlevo, menu vpravo na jedné řádce */
    @media (min-width: 1100px) {
      .header-inner {
        flex-wrap: nowrap;
        gap: 1.5rem;
        padding-bottom: 1rem;
      }

      .brand {
        flex: 0 1 auto;
      }

      .nav-toggle {
        display: none;
      }

      .header-nav {
        display: block;
        position: static;
        flex: 1 1 auto;
        width: auto;
        margin-left: auto;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
      }

      .main-nav {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-end;
        gap: .35rem;
      }

      .main-nav a {
        display: inline-block;
        padding: .55rem 1rem;
        border-radius: 999px;
      }

      .nav-backdrop {
        display: none !important;
      }

      body.nav-menu-open {
        overflow: auto;
      }
    }

    /* Mobil / tablet: menší logo, burger hned vedle nadpisu vpravo */
    @media (max-width: 1099px) {
      :root { --header-h: auto; }

      .brand-text h1 {
        font-size: 1.55rem;
      }

      .brand img,
      .brand-logo {
        height: 52px;
      }
    }

    .flash { padding: 1rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 1rem; }
    .flash-success { background: var(--sage-pale); color: var(--forest); }
    .flash-error { background: #fde8e8; color: #7a1f1f; }
    .honeypot { position: absolute; left: -9999px; height: 0; overflow: hidden; }
    .filter-bar .btn.on, .filter-bar a.btn.on { background: var(--forest); color: #fff; border-color: var(--forest); }
    .pagination { display: flex; align-items: center; gap: 1rem; margin: 2rem 0; flex-wrap: wrap; }
    .pagination-info { color: var(--muted); font-size: .9rem; }
    .intro-panel label { display: block; font-weight: 600; margin: .75rem 0 .25rem; }
    .intro-panel input, .intro-panel textarea { width: 100%; padding: .65rem; border: 1px solid var(--fog); border-radius: var(--radius-sm); font-family: inherit; }
    .card h3 a { color: inherit; text-decoration: none; }
    .card h3 a:hover { color: var(--moss); }

