/* Weitere Themenseiten – dezente sitewide Sektion vor dem Footer */
.themenseiten {
  background: var(--bg-soft, #f3f5f7);
  border-top: 1px solid var(--line, #e4e8ee);
  padding: 56px 0;
}
.themenseiten .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.themenseiten .kicker {
  color: #B70017;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.themenseiten h2 {
  color: var(--blue, #164384);
  font-size: 1.7rem;
  line-height: 1.25;
  margin: 0 0 12px;
}
.themenseiten .themen-intro {
  color: var(--muted, #55627a);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 60ch;
}
.themen-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.themen-card {
  background: #fff;
  border: 1px solid var(--line, #e4e8ee);
  border-radius: var(--radius, 12px);
  transition: box-shadow .2s ease, transform .2s ease;
  position: relative;
}
.themen-card:hover, .themen-card:focus-within {
  box-shadow: var(--shadow-md, 0 6px 20px rgba(22, 67, 132, 0.10));
  transform: translateY(-2px);
}
.themen-card > a {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: var(--radius, 12px);
  padding: 24px;
  height: 100%;
}
.themen-card > a:focus-visible {
  outline: 3px solid var(--blue, #164384);
  outline-offset: 2px;
}
.themen-card > a .themen-title {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(22, 67, 132, .35);
  text-decoration-thickness: 1px;
}
.themen-card > a:hover .themen-title,
.themen-card > a:focus-visible .themen-title {
  text-decoration-color: var(--blue, #164384);
}
.themen-title {
  display: block;
  color: var(--blue, #164384);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 10px;
  overflow-wrap: break-word;
  hyphens: auto;
}
.themen-title-sub {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted, #55627a);
  margin-top: 2px;
}
.themen-domain {
  display: block;
  color: var(--muted, #55627a);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.themen-card p {
  color: var(--muted, #55627a);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 900px) {
  .themen-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .themen-list { grid-template-columns: 1fr; }
}
