/*
 * content.css — styles for the content hub pages (Glossar, Tipps/Blog, Neuigkeiten).
 * Linked via the page_css block. Relies on tokens/utilities from styles.css.
 *
 * Each page's rules are scoped under a per-page class set via the
 * `container_class` block, because hub and detail pages reuse class names
 * (.page-header, .category-badge, .tip-card, .tipps-grid, .impact-pill, ...)
 * with slightly different definitions.
 */

/* ===================================================================== */
/* Audit CTA component (used on Glossar and Tipps pages)                  */
/* ===================================================================== */

/* -- Full variant -- */
.acta {
  margin: 2.5rem 0;
  border-radius: var(--border-radius);
  background: var(--color-surface, #fff);
  border: 2px solid var(--color-accent, #0f4c81);
  box-shadow: 0 12px 32px -10px rgba(15, 76, 129, 0.15);
  overflow: hidden;
}
.acta__inner {
  padding: 2.5rem 2rem;
  text-align: center;
}
.acta__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.acta__desc {
  color: var(--color-muted);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.acta__checks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin: 0 0 0.5rem;
  padding: 0;
}
.acta__checks li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.95rem;
  color: var(--color-ink);
  font-weight: 500;
}
.acta__checks li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}
.acta__more {
  color: var(--color-muted);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}
.acta__form {
  margin: 1.5rem auto 0;
  max-width: 520px;
}
.acta__input-row {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}
.acta__url {
  flex: 1;
  min-width: 0;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-mono);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  background: white;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.acta__url:focus {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-focus);
}
.acta__url::placeholder {
  color: var(--color-muted);
  opacity: 0.65;
  font-family: var(--font-mono);
}
.acta__btn {
  white-space: nowrap;
  flex-shrink: 0;
}
.acta__trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.acta__badge {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-muted);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

/* -- Glossary variant -- */
.acta--glossary {
  border-color: rgba(15, 76, 129, 0.18);
  background:
    linear-gradient(135deg, rgba(15, 76, 129, 0.06), rgba(255, 255, 255, 0.96)),
    var(--color-surface, #fff);
  box-shadow: 0 16px 36px -18px rgba(15, 76, 129, 0.2);
}
.acta--glossary__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.95fr);
  gap: 1.5rem 2rem;
  align-items: center;
  padding: 2rem;
}
.acta--glossary__eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent, #0f4c81);
}
.acta--glossary__heading {
  text-align: left;
  margin-bottom: 0.75rem;
}
.acta--glossary__desc {
  text-align: left;
  margin-bottom: 0;
}
.acta--glossary__trust {
  justify-content: flex-start;
}
.acta--glossary__actions {
  display: grid;
  gap: 0.85rem;
}
.acta--glossary__form {
  margin: 0;
  max-width: none;
}
.acta--glossary__input-row {
  flex-direction: column;
  gap: 0.6rem;
}
.acta--glossary__input-row .acta__btn {
  width: 100%;
}
.acta--glossary__label {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-muted);
}
.acta--glossary__secondary {
  justify-self: start;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-accent, #0f4c81);
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}
.acta--glossary__secondary:hover {
  color: var(--color-ink);
}

/* -- Compact variant -- */
.acta--compact {
  margin: 2rem 0;
  background: var(--color-surface, #fff);
  border: 2px solid var(--color-accent, #0f4c81);
  box-shadow: 0 8px 24px -8px rgba(15, 76, 129, 0.12);
}
.acta--compact__inner {
  padding: 1.5rem 1.75rem;
  text-align: center;
}
.acta--compact__text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.acta--compact__form {
  display: flex;
  gap: 0.5rem;
  max-width: 520px;
  margin: 0 auto;
  align-items: stretch;
}
.acta--compact__url {
  flex: 1;
  min-width: 0;
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
}
.acta--compact__btn {
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.acta--compact__trust {
  margin-top: 0.75rem;
}

/* -- Responsive -- */
@media (max-width: 600px) {
  .acta__inner {
    padding: 2rem 1.25rem;
  }
  .acta--glossary__inner {
    grid-template-columns: 1fr;
    padding: 1.6rem 1.25rem;
  }
  .acta--glossary__heading,
  .acta--glossary__desc {
    text-align: left;
  }
  .acta--glossary__trust {
    justify-content: flex-start;
  }
  .acta__input-row {
    flex-direction: column;
  }
  .acta__btn {
    width: 100%;
  }
  .acta__checks {
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
  }
  .acta--compact__form {
    flex-direction: column;
  }
  .acta--compact__btn {
    width: 100%;
  }
}

/* ===================================================================== */
/* Glossar hub (/glossar)                                                 */
/* ===================================================================== */
.glossar-hub .page-header {
  margin-bottom: 2rem;
}
.glossar-hub .page-header p {
  color: var(--color-muted);
  font-size: 1.1rem;
  max-width: 600px;
}

.glossar-hub .alphabet-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.glossar-hub .alphabet-nav a {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ddd;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.glossar-hub .alphabet-nav a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.glossar-hub .alphabet-nav a.has-terms {
  border-color: var(--color-ink);
  background: var(--color-ink);
  color: white;
}
.glossar-hub .alphabet-nav a.has-terms:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.glossar-hub .category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.glossar-hub .category-filter a {
  padding: 0.5rem 1rem;
  border: 2px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.glossar-hub .category-filter a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.glossar-hub .category-filter a.active {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: white;
}

.glossar-hub .letter-section {
  margin-bottom: 2.5rem;
}
.glossar-hub .letter-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-accent);
}

.glossar-hub .terms-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) {
  .glossar-hub .terms-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.glossar-hub .term-card {
  padding: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.glossar-hub .term-card:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 0px rgba(0,0,0,0.08);
}
.glossar-hub .term-card a {
  display: block;
}
.glossar-hub .term-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}
.glossar-hub .term-card:hover h3 {
  color: var(--color-accent);
}
.glossar-hub .term-card p {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.glossar-hub .category-badge {
  display: inline-block;
  padding: 0.2rem 0.4rem;
  background: #F0F0F0;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.glossar-hub .empty-state {
  text-align: center;
  padding: 3rem;
  color: var(--color-muted);
}
.glossar-hub .empty-state h2 {
  color: var(--color-muted);
  font-weight: 400;
}

.glossar-hub .full-toggle {
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

.glossar-hub .term-inline {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.glossar-hub .term-inline h3 {
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
}
.glossar-hub .term-inline p {
  color: var(--color-muted);
  margin: 0 0 0.5rem 0;
}
.glossar-hub .term-inline a {
  font-weight: 600;
}

/* ===================================================================== */
/* Glossar detail (/glossar/<slug>)                                       */
/* ===================================================================== */
.glossar-detail .breadcrumb {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}
.glossar-detail .breadcrumb a {
  color: var(--color-muted);
}
.glossar-detail .breadcrumb a:hover {
  color: var(--color-accent);
}

.glossar-detail .term-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.glossar-detail .term-header h1 {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}
.glossar-detail .term-author {
  margin-top: 0.5rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.glossar-detail .category-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: #F0F0F0;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.glossar-detail .short-definition {
  font-size: 1.25rem;
  color: var(--color-muted);
  font-family: var(--font-serif);
  line-height: 1.6;
}

.glossar-detail .term-content {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.glossar-detail .term-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}
.glossar-detail .term-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}
.glossar-detail .term-content p {
  margin-bottom: 1rem;
}
.glossar-detail .term-content ul,
.glossar-detail .term-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.glossar-detail .term-content li {
  margin-bottom: 0.5rem;
}
.glossar-detail .term-content code {
  background: #F0F0F0;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  font-size: 0.9em;
}
.glossar-detail .term-content strong {
  font-weight: 700;
}
.glossar-detail .term-content a {
  color: var(--color-accent);
  text-decoration: underline;
}

.glossar-detail .related-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.glossar-detail .related-section h2 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.glossar-detail .related-terms-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.glossar-detail .related-term-link {
  padding: 0.5rem 1rem;
  background: var(--color-surface);
  border: 2px solid var(--color-ink);
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: all 0.2s ease;
}
.glossar-detail .related-term-link:hover {
  background: var(--color-ink);
  color: white;
}

.glossar-detail .related-tipps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) {
  .glossar-detail .related-tipps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.glossar-detail .tipp-card {
  padding: 1.25rem;
  transition: transform 0.2s ease;
}
.glossar-detail .tipp-card:hover {
  transform: translateY(-2px);
}
.glossar-detail .tipp-card a {
  display: block;
}
.glossar-detail .tipp-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.glossar-detail .tipp-card:hover h3 {
  color: var(--color-accent);
}
.glossar-detail .tipp-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 0;
}

.glossar-detail .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-weight: 500;
}
.glossar-detail .back-link:hover {
  color: var(--color-accent);
}

/* ===================================================================== */
/* Tipps hub (/blog)                                                      */
/* ===================================================================== */
.tipps-hub .page-header {
  margin-bottom: 2.5rem;
}
.tipps-hub .page-header p {
  color: var(--color-muted);
  font-size: 1.1rem;
  max-width: 600px;
}

.tipps-hub .category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.tipps-hub .category-filter a {
  padding: 0.5rem 1rem;
  border: 2px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.tipps-hub .category-filter a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.tipps-hub .category-filter a.active {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: white;
}

.tipps-hub .tipps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .tipps-hub .tipps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tipps-hub .tip-card {
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tipps-hub .tip-card:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0px rgba(0,0,0,0.1);
}
.tipps-hub .tip-card a {
  display: block;
  height: 100%;
}
.tipps-hub .tip-card h3 {
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}
.tipps-hub .tip-card:hover h3 {
  color: var(--color-accent);
}
.tipps-hub .tip-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.tipps-hub .tip-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.tipps-hub .category-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: #F0F0F0;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.tipps-hub .empty-state {
  text-align: center;
  padding: 3rem;
  color: var(--color-muted);
}
.tipps-hub .empty-state h2 {
  color: var(--color-muted);
  font-weight: 400;
}

/* ===================================================================== */
/* Tipps detail (/blog/<slug>)                                            */
/* ===================================================================== */
.tipps-detail .breadcrumb {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}
.tipps-detail .breadcrumb a {
  color: var(--color-muted);
}
.tipps-detail .breadcrumb a:hover {
  color: var(--color-accent);
}

.tipps-detail .tip-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.tipps-detail .tip-header h1 {
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}
.tipps-detail .tip-summary {
  font-size: 1.1rem;
  color: var(--color-muted);
  margin-top: 0.75rem;
}

.tipps-detail .category-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: #F0F0F0;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.tipps-detail .tip-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}
.tipps-detail .tip-meta time {
  font-weight: 500;
}
.tipps-detail .tip-meta .author {
  font-weight: 500;
}

.tipps-detail .difficulty-badge {
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 500;
}
.tipps-detail .difficulty-anfänger { background: #DCFCE7; color: #166534; }
.tipps-detail .difficulty-fortgeschritten { background: #FEF3C7; color: #92400E; }
.tipps-detail .difficulty-experte { background: #FEE2E2; color: #991B1B; }

.tipps-detail .tip-meta .author a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.tipps-detail .tip-meta .author a:hover {
  color: var(--color-accent);
}

.tipps-detail .tip-tldr {
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: start;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(19, 35, 60, 0.16);
}
.tipps-detail .tip-tldr-label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-accent);
}
.tipps-detail .tip-tldr-text {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .tipps-detail .tip-tldr {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.tipps-detail .tip-content {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.tipps-detail .tip-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.tipps-detail .tip-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}
.tipps-detail .tip-content p {
  margin-bottom: 1.25rem;
}
.tipps-detail .tip-content ul,
.tipps-detail .tip-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}
.tipps-detail .tip-content li {
  margin-bottom: 0.5rem;
}
.tipps-detail .tip-content blockquote {
  border-left: 4px solid var(--color-accent);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--color-muted);
}
.tipps-detail .tip-content code {
  background: #F0F0F0;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  font-size: 0.9em;
}
.tipps-detail .tip-content pre {
  background: #1A1A1A;
  color: #F0F0F0;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  overflow-x: auto;
  margin-bottom: 1.25rem;
}
.tipps-detail .tip-content pre code {
  background: none;
  padding: 0;
}
.tipps-detail .tip-content strong {
  font-weight: 700;
}
.tipps-detail .tip-content a {
  color: var(--color-accent);
  text-decoration: underline;
}

.tipps-detail .tip-faq {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.tipps-detail .tip-faq h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.tipps-detail .tip-faq-list {
  margin: 0;
}
.tipps-detail .tip-faq-row {
  margin-bottom: 1.5rem;
}
.tipps-detail .tip-faq-row dt {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.tipps-detail .tip-faq-row dd {
  margin: 0;
  font-family: var(--font-serif);
  line-height: 1.7;
  color: var(--color-muted);
}

.tipps-detail .related-tips {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.tipps-detail .related-tips h2 {
  margin-bottom: 1.5rem;
}

.tipps-detail .tipps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .tipps-detail .tipps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .tipps-detail .tipps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tipps-detail .tip-card {
  padding: 1.25rem;
  transition: transform 0.2s ease;
}
.tipps-detail .tip-card:hover {
  transform: translateY(-4px);
}
.tipps-detail .tip-card a {
  display: block;
}
.tipps-detail .tip-card h3 {
  font-size: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.tipps-detail .tip-card:hover h3 {
  color: var(--color-accent);
}
.tipps-detail .tip-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}
.tipps-detail .tip-card-meta {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.tipps-detail .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-weight: 500;
}
.tipps-detail .back-link:hover {
  color: var(--color-accent);
}
