/* ============================================================================
   TRAILHEAD — SEITENSPEZIFISCHE ABSCHNITTE
   ============================================================================
   Alles, was nur auf einzelnen Seiten vorkommt. Design-Tokens, Nav, Footer und
   Formulare stehen in style.css.
   Farben hier nie hartcodieren — immer die var(--th-*)-Tokens verwenden.
   ============================================================================ */


/* ---------------------------------------------------------------------------
   HERO
   --------------------------------------------------------------------------- */

.th-hero {
  position: relative;
  background:
    repeating-radial-gradient(circle at 82% 15%,
      transparent 0, transparent 42px,
      rgba(236, 233, 222, 0.05) 43px, rgba(236, 233, 222, 0.05) 44px),
    radial-gradient(circle at 82% 15%, #232922 0%, var(--th-graphite) 55%),
    var(--th-graphite);
  padding: 84px var(--th-gutter) 0;
}

.th-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--th-font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--th-hivis);
  margin-bottom: 26px;
}
.th-eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--th-hivis);
  border-radius: 50%;
  box-shadow: 0 0 10px 2px rgba(200, 255, 61, 0.6);
}

.th-hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 5.2rem);
  line-height: 0.98;
  margin: 0 0 22px;
  max-width: 14ch;
}
.th-hero h1 em { font-style: normal; color: var(--th-hivis); }

.th-hero .th-lead { margin: 0 0 36px; }

.th-cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

/* Höhenprofil-Linie — das Signature-Element des Designs, ersetzt ein Hero-Foto */
.th-elev { width: 100%; max-width: 720px; margin-bottom: 8px; display: block; }
.th-elev path {
  fill: none;
  stroke: var(--th-rust);
  stroke-width: 2;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: th-draw 1.6s ease-out 0.3s forwards;
}
@keyframes th-draw { to { stroke-dashoffset: 0; } }

/* Kennzahlen-Leiste */
.th-hud {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--th-line);
  margin-top: 10px;
  font-family: var(--th-font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.th-hud > div {
  padding: 22px 20px 30px 0;
  border-right: 1px solid var(--th-line);
}
.th-hud > div:last-child { border-right: none; }
.th-hud .th-num {
  font-family: var(--th-font-disp);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--th-paper);
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
  text-transform: none;
}
.th-hud .th-lbl { font-size: 0.68rem; color: var(--th-stone); }

@media (max-width: 860px) {
  .th-hud { grid-template-columns: 1fr; }
  .th-hud > div {
    border-right: none;
    border-bottom: 1px solid var(--th-line);
    padding: 18px 0;
  }
}
@media (max-width: 700px) {
  .th-hero { padding: 56px var(--th-gutter-mobile) 0; }
}


/* ---------------------------------------------------------------------------
   BENTO-GRID (Service / Community / Verkauf)
   --------------------------------------------------------------------------- */

.th-bento {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  background: var(--th-line);
  margin-top: 64px;
}
.th-card {
  position: relative;
  background: var(--th-graphite-2);
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s ease;
}
.th-card:hover { box-shadow: inset 0 0 0 1px rgba(200, 255, 61, 0.35); }
.th-card--tall { grid-row: 1 / 3; }
.th-card h3 { font-size: clamp(1.4rem, 2vw, 1.9rem); margin: 0 0 10px; }
.th-card p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--th-paper-3);
  max-width: 34ch;
  margin: 0;
}
.th-card .th-icn {
  position: absolute;
  top: 34px; right: 34px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--th-hivis);
  display: flex; align-items: center; justify-content: center;
}
.th-card .th-icn svg {
  width: 22px; height: 22px;
  stroke: var(--th-hivis); fill: none; stroke-width: 1.6;
}

/* Marken-Laufband */
.th-marquee {
  margin-top: 20px;
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.th-marquee-track {
  display: inline-flex;
  gap: 34px;
  animation: th-scroll 22s linear infinite;
  font-family: var(--th-font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.th-marquee:hover .th-marquee-track { animation-play-state: paused; }
.th-marquee-track span { font-size: 0.75rem; color: var(--th-stone); }
@keyframes th-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 860px) {
  .th-bento { grid-template-columns: 1fr; grid-template-rows: none; }
  .th-card--tall { grid-row: auto; }
}


/* ---------------------------------------------------------------------------
   SCROLL-REVEAL
   Startzustand nur setzen, wenn JS läuft — sonst bleiben Inhalte unsichtbar,
   falls das Skript blockiert wird.
   --------------------------------------------------------------------------- */

.js .th-reveal { opacity: 0; transform: translateY(24px); }
.js .th-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}


/* ---------------------------------------------------------------------------
   BIKE-FINDER QUIZ
   --------------------------------------------------------------------------- */

.th-quiz-box {
  max-width: 620px;
  margin: 0 auto;
  background: var(--th-graphite-2);
  border: 1px solid var(--th-line);
  padding: 44px;
}
.th-quiz-dots { display: flex; gap: 8px; margin-bottom: 26px; }
.th-quiz-dots span { width: 24px; height: 3px; background: var(--th-line); }
.th-quiz-dots span.is-active { background: var(--th-hivis); }
.th-quiz-step { display: none; }
.th-quiz-step.is-active { display: block; }
.th-quiz-step h3 { font-size: 1.3rem; margin: 0 0 22px; }
.th-quiz-options { display: flex; flex-direction: column; gap: 10px; }
.th-quiz-opt {
  text-align: left;
  background: var(--th-ink);
  border: 1px solid var(--th-line);
  color: var(--th-paper);
  padding: 14px 18px;
  font-family: var(--th-font-body);
  font-size: 0.92rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.th-quiz-opt:hover { border-color: var(--th-hivis); color: var(--th-hivis); }
.th-quiz-result { text-align: center; display: none; }
.th-quiz-result.is-active { display: block; }
.th-quiz-result h3 { font-size: 1.6rem; margin: 8px 0 12px; }
.th-quiz-result p { color: var(--th-paper-3); font-size: 0.92rem; margin: 0 0 26px; }
.th-quiz-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.th-quiz-restart {
  background: transparent;
  border: none;
  color: var(--th-stone);
  font-family: var(--th-font-mono);
  font-size: 0.78rem;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 18px;
}
.th-quiz-restart:hover { color: var(--th-paper); }

/* Ohne JS ist das Quiz nicht bedienbar — dann Hinweis statt kaputter Box */
.th-quiz-box .th-quiz-nojs { display: block; color: var(--th-stone); font-size: 0.9rem; }
.js .th-quiz-box .th-quiz-nojs { display: none; }

@media (max-width: 600px) {
  .th-quiz-box { padding: 28px 20px; }
}


/* ---------------------------------------------------------------------------
   BEWERTUNGEN
   --------------------------------------------------------------------------- */

.th-rating-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--th-font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--th-stone);
}
.th-rating-badge .th-stars { color: var(--th-hivis); letter-spacing: 2px; }
.th-rating-badge strong { color: var(--th-paper); font-family: var(--th-font-disp); }

.th-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--th-line);
}
.th-review-card { background: var(--th-graphite-2); padding: 30px 28px; }
.th-review-card .th-stars {
  color: var(--th-hivis);
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 14px;
  display: block;
}
.th-review-card blockquote {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--th-paper-2);
  margin: 0 0 18px;
}
.th-review-card .th-who {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--th-line);
  padding-top: 14px;
}
.th-review-card .th-who-name { font-size: 0.85rem; color: var(--th-paper); }
.th-review-card .th-who-meta {
  font-family: var(--th-font-mono);
  font-size: 0.68rem;
  color: var(--th-stone);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 860px) { .th-review-grid { grid-template-columns: 1fr; } }


/* ---------------------------------------------------------------------------
   ANKAUF-BANNER
   --------------------------------------------------------------------------- */

.th-tradein {
  margin: 0 var(--th-gutter) 80px;
  background: var(--th-graphite-2);
  border-left: 3px solid var(--th-hivis);
  padding: 36px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.th-tradein h3 { font-size: 1.3rem; margin: 0 0 8px; }
.th-tradein p { font-size: 0.9rem; color: var(--th-paper-3); margin: 0; max-width: 48ch; }

@media (max-width: 700px) {
  .th-tradein { margin-left: var(--th-gutter-mobile); margin-right: var(--th-gutter-mobile); padding: 28px 22px; }
}


/* ---------------------------------------------------------------------------
   SERVICE-SEITE: Badges und FAQ
   --------------------------------------------------------------------------- */

.th-badges { display: flex; flex-wrap: wrap; gap: 14px; }
.th-badge {
  border: 1px solid var(--th-line);
  padding: 10px 18px;
  font-family: var(--th-font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--th-paper-2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.th-badge svg { width: 16px; height: 16px; stroke: var(--th-hivis); fill: none; stroke-width: 1.8; flex: none; }

.th-faq { max-width: 820px; }
.th-faq-item { border-bottom: 1px solid var(--th-line); }
.th-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--th-paper);
  font-family: var(--th-font-disp);
  font-weight: 700;
  font-size: 1rem;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}
.th-faq-q .th-faq-icon {
  color: var(--th-hivis);
  font-size: 1.2rem;
  flex: none;
  transition: transform 0.2s ease;
}
.th-faq-q[aria-expanded="true"] .th-faq-icon { transform: rotate(45deg); }
.th-faq-a { display: none; }
.th-faq-a.is-open { display: block; }
.th-faq-a p {
  font-size: 0.9rem;
  color: var(--th-paper-3);
  line-height: 1.6;
  padding: 0 0 20px;
  margin: 0;
  max-width: 62ch;
}
/* Ohne JS alle Antworten offen, damit die Inhalte lesbar bleiben */
.js .th-faq-a:not(.is-open) { display: none; }
html:not(.js) .th-faq-a { display: block; }


/* ---------------------------------------------------------------------------
   BIKES-SEITE: Filter und Produktraster
   --------------------------------------------------------------------------- */

.th-filters { display: flex; gap: 10px; flex-wrap: wrap; margin: 0 0 40px; }
.th-filter-btn {
  border: 1px solid var(--th-line);
  background: transparent;
  color: var(--th-paper);
  border-radius: 22px;
  padding: 9px 18px;
  font-family: var(--th-font-body);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.th-filter-btn:hover { border-color: var(--th-hivis); }
.th-filter-btn.is-active {
  background: var(--th-hivis);
  border-color: var(--th-hivis);
  color: var(--th-ink);
  font-weight: 500;
}

.th-bike-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--th-line);
}
.th-bike-card { background: var(--th-graphite-2); display: flex; flex-direction: column; }
.th-bike-card.is-hidden { display: none; }
.th-bike-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--th-graphite);
  display: block;
}
.th-bike-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.th-bike-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.th-bike-cat {
  font-family: var(--th-font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--th-hivis);
  margin-bottom: 8px;
}
.th-bike-card h3 { font-size: 1.15rem; margin: 0 0 6px; }
.th-bike-card h3 a { color: inherit; text-decoration: none; }
.th-bike-card h3 a:hover { color: var(--th-hivis); }
.th-bike-desc { font-size: 0.85rem; color: var(--th-paper-3); margin: 0 0 16px; }
.th-bike-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.th-bike-price {
  font-family: var(--th-font-disp);
  font-weight: 700;
  font-size: 1.05rem;
}
.th-bike-price del { color: var(--th-stone); font-weight: 400; font-size: 0.85rem; margin-right: 6px; }
.th-bike-price ins { text-decoration: none; }
.th-bike-link {
  font-size: 0.82rem;
  color: var(--th-paper);
  text-decoration: none;
  border-bottom: 1px solid var(--th-hivis);
  white-space: nowrap;
}
.th-bike-link:hover { color: var(--th-hivis); }

@media (max-width: 900px) { .th-bike-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .th-bike-grid { grid-template-columns: 1fr; } }


/* ---------------------------------------------------------------------------
   ANKAUF-SEITE: Prozess-Schritte und Kriterien
   --------------------------------------------------------------------------- */

.th-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--th-line);
}
.th-step { background: var(--th-graphite-2); padding: 32px; }
.th-step .th-step-num {
  font-family: var(--th-font-disp);
  font-weight: 700;
  color: var(--th-hivis);
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: block;
}
.th-step h3 { font-size: 1.05rem; margin: 0 0 8px; }
.th-step p { font-size: 0.88rem; color: var(--th-paper-3); margin: 0; }

.th-crit-list { list-style: none; margin: 0; padding: 0; max-width: 660px; }
.th-crit-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--th-line);
  font-size: 0.92rem;
  color: var(--th-paper-2);
}
.th-crit-list svg {
  flex: none;
  width: 18px; height: 18px;
  stroke: var(--th-hivis); fill: none; stroke-width: 1.8;
  margin-top: 3px;
}

.th-panel {
  max-width: 760px;
  background: var(--th-graphite-2);
  border: 1px solid var(--th-line);
  padding: 40px;
}
.th-panel h2 { font-size: 1.4rem; margin: 0 0 6px; }
.th-panel > p.th-hint { font-size: 0.85rem; color: var(--th-stone); margin: 0 0 26px; }

@media (max-width: 860px) { .th-steps { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .th-panel { padding: 28px 20px; } }


/* ---------------------------------------------------------------------------
   TOUREN / JOURNAL
   --------------------------------------------------------------------------- */

.th-featured {
  background: var(--th-graphite-2);
  border: 1px solid var(--th-line);
  padding: 40px;
}
.th-featured h2 { font-size: 1.6rem; margin: 0 0 14px; }
.th-featured p { color: var(--th-paper-3); font-size: 0.95rem; max-width: 60ch; margin: 0 0 24px; line-height: 1.6; }
.th-featured-stats { display: flex; gap: 30px; flex-wrap: wrap; margin-bottom: 22px; }
.th-featured-stats .th-num {
  display: block;
  font-family: var(--th-font-disp);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--th-paper);
}
.th-featured-stats .th-lbl {
  font-family: var(--th-font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.66rem;
  color: var(--th-stone);
}
.th-elev-featured { width: 100%; max-width: 600px; display: block; }
.th-elev-featured path { fill: none; stroke: var(--th-rust); stroke-width: 2; }

.th-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--th-line);
}
.th-post-card { background: var(--th-graphite-2); display: flex; flex-direction: column; }
.th-post-img {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: var(--th-graphite);
}
.th-post-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.th-post-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.th-post-cat {
  font-family: var(--th-font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--th-hivis);
  margin-bottom: 8px;
}
.th-post-card h3 { font-size: 1.1rem; margin: 0 0 8px; }
.th-post-card h3 a { color: inherit; text-decoration: none; }
.th-post-card h3 a:hover { color: var(--th-hivis); }
.th-post-card p { font-size: 0.86rem; color: var(--th-paper-3); margin: 0 0 16px; }
.th-post-link {
  font-size: 0.82rem;
  color: var(--th-paper);
  text-decoration: none;
  border-bottom: 1px solid var(--th-hivis);
  align-self: flex-start;
  margin-top: auto;
}
.th-post-link:hover { color: var(--th-hivis); }

@media (max-width: 900px) { .th-post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) {
  .th-post-grid { grid-template-columns: 1fr; }
  .th-featured { padding: 28px 20px; }
}


/* ---------------------------------------------------------------------------
   ÜBER UNS
   --------------------------------------------------------------------------- */

.th-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--th-line);
  margin: 0 var(--th-gutter);
  font-family: var(--th-font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.th-about-stats > div { padding: 22px 24px 30px 0; border-right: 1px solid var(--th-line); }
.th-about-stats > div:last-child { border-right: none; }
.th-about-stats .th-num {
  font-family: var(--th-font-disp);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
  text-transform: none;
}
.th-about-stats .th-lbl { font-size: 0.66rem; color: var(--th-stone); }

.th-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--th-line); }
.th-value-card { background: var(--th-graphite-2); padding: 30px; }
.th-value-card h3 { font-size: 1.05rem; margin: 0 0 8px; }
.th-value-card p { font-size: 0.88rem; color: var(--th-paper-3); margin: 0; }

.th-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.th-team-card { text-align: center; }
.th-team-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  margin-bottom: 16px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.th-team-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.th-team-card h3 { font-size: 1rem; margin: 0 0 4px; }
.th-team-card p { font-size: 0.8rem; color: var(--th-stone); margin: 0; }

@media (max-width: 900px) {
  .th-team-grid { grid-template-columns: repeat(2, 1fr); }
  .th-values { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .th-about-stats { grid-template-columns: 1fr; margin: 0 var(--th-gutter-mobile); }
  .th-about-stats > div { border-right: none; border-bottom: 1px solid var(--th-line); padding: 18px 0; }
}


/* ---------------------------------------------------------------------------
   BEITRAG, SEITE, 404
   --------------------------------------------------------------------------- */

.th-entry { max-width: 760px; }
.th-entry h1 { font-size: clamp(1.9rem, 4vw, 3rem); margin: 0 0 16px; }
.th-entry-meta {
  font-family: var(--th-font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--th-stone);
  margin-bottom: 34px;
}
.th-entry-content { font-size: 1rem; line-height: 1.7; color: var(--th-paper-2); }
.th-entry-content h2 { font-size: 1.5rem; margin: 40px 0 14px; color: var(--th-paper); }
.th-entry-content h3 { font-size: 1.2rem; margin: 32px 0 12px; color: var(--th-paper); }
.th-entry-content p { margin: 0 0 18px; }
.th-entry-content ul, .th-entry-content ol { margin: 0 0 18px; padding-left: 22px; }
.th-entry-content li { margin-bottom: 8px; }
.th-entry-content a { color: var(--th-hivis); }
.th-entry-content img { margin: 24px 0; }
.th-entry-content blockquote {
  margin: 24px 0;
  padding: 4px 0 4px 20px;
  border-left: 3px solid var(--th-hivis);
  color: var(--th-paper);
}
.th-entry-content table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.th-entry-content th, .th-entry-content td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--th-line);
  font-size: 0.9rem;
}
.th-entry-content code {
  font-family: var(--th-font-mono);
  font-size: 0.85em;
  background: var(--th-graphite-2);
  padding: 2px 6px;
}
.th-entry-content pre {
  background: var(--th-graphite-2);
  border: 1px solid var(--th-line);
  padding: 18px;
  overflow-x: auto;
}

.th-pagination { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 50px; }
.th-pagination .page-numbers {
  border: 1px solid var(--th-line);
  padding: 9px 16px;
  color: var(--th-paper);
  text-decoration: none;
  font-size: 0.85rem;
}
.th-pagination .page-numbers:hover { border-color: var(--th-hivis); color: var(--th-hivis); }
.th-pagination .page-numbers.current {
  background: var(--th-hivis);
  border-color: var(--th-hivis);
  color: var(--th-ink);
}
