/* ===========================================================
   Bausteine der Baukastenseiten
   Nutzt dieselben Variablen wie styles.css, damit die im Admin
   gesetzten Farben durchschlagen.
   =========================================================== */

.page-wrap {
  flex: 1;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: calc(var(--header-height-large) + 40px) 5% 80px;
}

@media (max-width: 768px) {
  .page-wrap { padding-top: calc(var(--header-height-small) + 40px); }
}

.page-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.9rem);
  font-weight: normal;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.page-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin-top: 16px;
}

/* Hinweis im Entwurfsmodus */
.draft-note {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  padding: 11px 18px;
  background: var(--accent);
  color: #14140f;
  font-size: 0.84rem;
  font-weight: 600;
  text-align: center;
}
.draft-note a { color: #14140f; }

/* --- Grundgerüst eines Bausteins ------------------------------------- */

.blk {
  margin: 34px 0;
  border-radius: 10px;
}
.blk:first-of-type { margin-top: 26px; }

.blk-inner { max-width: 720px; }
.al-center .blk-inner { margin-left: auto; margin-right: auto; }

.blk.al-center { text-align: center; }

/* Hintergrundvarianten statt freier Farbwahl pro Baustein */
.blk.tone-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 26px;
}
.blk.tone-accent {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)), var(--accent);
  color: #14140f;
  padding: 30px 26px;
}
.blk.tone-accent h2,
.blk.tone-accent h3,
.blk.tone-accent p,
.blk.tone-accent summary { color: #14140f; }
.blk.tone-accent a { color: #14140f; text-decoration: underline; }
.blk.tone-accent figcaption { color: rgba(20, 20, 15, 0.72); }

@media (max-width: 600px) {
  .blk.tone-card,
  .blk.tone-accent { padding: 22px 18px; }
}

/* --- Überschrift ------------------------------------------------------ */

.blk-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.6vw, 2.2rem);
  font-weight: normal;
  line-height: 1.25;
}
.blk-heading h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.6vw, 1.55rem);
  font-weight: normal;
  color: var(--accent);
}
.blk-heading.tone-accent h3 { color: #14140f; }

/* --- Text -------------------------------------------------------------- */

.blk-text p {
  color: var(--text-muted);
  font-size: 1.03rem;
  line-height: 1.75;
  margin-bottom: 15px;
}
.blk-text p:last-child { margin-bottom: 0; }
.blk-text strong { color: var(--text-main); font-weight: 600; }
.blk-text a { color: var(--accent); }
.blk-text.tone-accent p { color: rgba(20, 20, 15, 0.85); }

/* --- Einzelbild -------------------------------------------------------- */

.blk-image figure { margin: 0; }
.blk-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  cursor: zoom-in;
}
.blk-image.size-small  figure { max-width: 320px; }
.blk-image.size-medium figure { max-width: 560px; }
.blk-image.size-large  figure { max-width: 820px; }
.blk-image.size-full   figure { max-width: 100%; }

.blk-image.al-center figure,
.blk-image.size-small figure,
.blk-image.size-medium figure { margin-left: auto; margin-right: auto; }

.blk figcaption {
  margin-top: 9px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* --- Bild mit Text ----------------------------------------------------- */

.it-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}
.it-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  cursor: zoom-in;
}
.it-text h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: normal;
  color: var(--accent);
  margin-bottom: 12px;
}
.it-text p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 13px;
}
.blk-imagetext.tone-accent .it-text h3 { color: #14140f; }

@media (max-width: 700px) {
  .it-grid { grid-template-columns: 1fr; gap: 20px; }
  /* Auf schmalen Schirmen steht das Bild immer oben */
  .blk-imagetext.side-right .it-img { order: -1; }
}

/* --- Bilderreihe ------------------------------------------------------- */

.gal-grid { display: grid; gap: 13px; }
.gal-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.gal-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.gal-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.gal-grid figure { margin: 0; }
.gal-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  cursor: zoom-in;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.gal-grid img:hover { transform: scale(1.03); filter: brightness(1.08); }

@media (max-width: 700px) {
  .gal-grid.cols-3,
  .gal-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
  .gal-grid { grid-template-columns: 1fr; }
}

/* --- Knopf -------------------------------------------------------------- */

.blk-btn {
  display: inline-block;
  padding: 14px 30px;
  background: var(--accent);
  color: #14140f;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.blk-btn:hover { background: var(--accent-hover); transform: translateY(-2px); }

.blk-button.tone-accent .blk-btn {
  background: #14140f;
  color: var(--accent);
  text-decoration: none;
}

/* --- Fragen und Antworten ---------------------------------------------- */

.blk-faq details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 0;
}
.blk-faq summary {
  cursor: pointer;
  padding: 16px 0;
  font-size: 1.02rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}
.blk-faq summary::-webkit-details-marker { display: none; }
.blk-faq summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}
.blk-faq details[open] summary::after { transform: rotate(45deg); }
.blk-faq.tone-accent summary::after { color: #14140f; }

.faq-a { padding: 0 0 18px; }
.faq-a p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 11px;
}
.faq-a p:last-child { margin-bottom: 0; }
.blk-faq.tone-accent .faq-a p { color: rgba(20, 20, 15, 0.85); }

/* --- Abstand ------------------------------------------------------------ */

.blk-divider hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0;
}
.blk-divider.sp-small  { margin: 20px 0; }
.blk-divider.sp-medium { margin: 44px 0; }
.blk-divider.sp-large  { margin: 80px 0; }

/* Menüpunkt der aktuellen Seite */
header nav a.active { color: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  .gal-grid img,
  .blk-btn { transition: none; }
}

/* ===========================================================
   Startseite: Ergänzungen zur bestehenden styles.css
   =========================================================== */

.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 25px; }
.hero-grid.single { grid-template-columns: 1fr; max-width: 800px; }

.hero-side-block { margin-bottom: 20px; }
.hero-side-block:last-of-type { margin-bottom: 0; }
.hero-side-label { margin: 0 !important; font-weight: bold; color: var(--accent); }
.hero-side-block p + p { margin: 5px 0 0; }

.section-narrow {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 5% 40px;
}

.section-band {
  background: var(--bg-card);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 100px 5%;
}

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

.card.plain { border: none; background: transparent; }
.card.plain:hover { transform: none; border-color: transparent; }
.card.plain h3 {
  color: var(--accent);
  margin-bottom: 10px;
  font-size: 1.15rem;
}
.step-text { font-size: 0.9rem; color: var(--text-muted); text-align: left !important; text-transform: none !important; }

.maps-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid;
}

/* ===========================================================
   Team
   =========================================================== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.team-grid.wide { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.team-card {
  background: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.team-card:hover { transform: translateY(-6px); border-color: var(--accent); }

.team-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-card);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(35%);
  transition: filter 0.4s ease, transform 0.5s ease;
}
.team-card:hover .team-photo img { filter: grayscale(0); transform: scale(1.04); }

.team-photo-empty {
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo-empty span {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  color: var(--accent);
  opacity: 0.5;
}

.team-body { padding: 22px 20px 24px; }

.team-body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: normal;
  margin-bottom: 4px;
}

.team-role {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.team-specialty {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.team-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 10px;
}
.team-text strong { color: var(--text-main); }

.team-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  margin-top: 16px;
}

.team-more,
.team-insta {
  display: inline-block;
  font-size: 0.83rem;
  text-decoration: none;
  color: var(--accent);
  border-bottom: 1px solid rgba(201, 162, 77, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}
.team-more:hover,
.team-insta:hover { border-bottom-color: var(--accent); }

/* ===========================================================
   Galerie-Filter
   =========================================================== */

.gal-filters {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin: -20px 0 45px;
}

.gal-filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.gal-chip {
  display: inline-block;
  padding: 8px 18px;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.gal-chip:hover { color: var(--text-main); border-color: var(--accent); }
.gal-chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #14140f;
  font-weight: 700;
}

.gallery-by {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  letter-spacing: 1px;
  opacity: 0.65;
  text-transform: none;
}

.gal-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 60px 20px;
  font-size: 0.95rem;
}
.gal-empty a { color: var(--accent); }

@media (max-width: 768px) {
  .section-band { padding: 70px 5%; }
  .section-narrow { padding: 70px 5% 30px; }
}

/* ===========================================================
   Einwilligungserklärung
   =========================================================== */

.fm-wrap {
  flex: 1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: calc(var(--header-height-large) + 40px) 5% 90px;
}
@media (max-width: 768px) {
  .fm-wrap { padding-top: calc(var(--header-height-small) + 30px); }
}

.fm-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  font-weight: normal;
  margin-bottom: 10px;
}
.fm-lead { color: var(--text-muted); font-size: 0.98rem; margin-bottom: 26px; }

.fm-error {
  padding: 14px 16px;
  border-radius: 8px;
  border-left: 3px solid #d9534f;
  background: rgba(217, 83, 79, 0.12);
  font-size: 0.92rem;
  margin-bottom: 22px;
}

/* Fortschritt */
.fm-progress { margin-bottom: 28px; }
.fm-progress-bar {
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.09);
  overflow: hidden;
}
.fm-progress-bar span {
  display: block;
  height: 100%;
  width: 16%;
  background: var(--accent);
  border-radius: 4px;
  transition: width 0.3s ease;
}
.fm-progress-text {
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fm-step h2 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: normal;
  margin-bottom: 6px;
}
.fm-note, .fm-step > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 22px;
  line-height: 1.6;
}

/* Für Menschen unsichtbar */
.fm-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Felder */
.fm-field { margin-bottom: 18px; }
.fm-field label,
.fm-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 7px;
}
.fm-hint { display: block; font-size: 0.79rem; color: var(--text-muted); margin-top: 6px; font-weight: 400; }

.fm-wrap input[type="text"],
.fm-wrap input[type="tel"],
.fm-wrap input[type="email"],
.fm-wrap input[type="date"],
.fm-wrap select,
.fm-wrap textarea {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  padding: 13px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: var(--bg-card);
  color: var(--text-main);
  transition: border-color 0.15s ease;
}
.fm-wrap input:focus,
.fm-wrap select:focus,
.fm-wrap textarea:focus { border-color: var(--accent); outline: none; }
.fm-wrap textarea { resize: vertical; min-height: 80px; line-height: 1.5; }

.fm-miss { border-color: #d9534f !important; }

.fm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fm-row.wide-first { grid-template-columns: 3fr 1fr; }
@media (max-width: 560px) {
  .fm-row { grid-template-columns: 1fr; }
  .fm-row.wide-first { grid-template-columns: 3fr 1fr; }
}

/* Auswahl als Knopfreihe */
.fm-choice { display: flex; flex-wrap: wrap; gap: 8px; }
.fm-choice label { margin: 0; }
.fm-choice input { position: absolute; opacity: 0; pointer-events: none; }
.fm-choice span {
  display: inline-block;
  padding: 11px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: var(--bg-card);
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.fm-choice input:checked + span {
  background: var(--accent);
  border-color: var(--accent);
  color: #14140f;
  font-weight: 700;
}
.fm-choice input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }

/* Feste Angaben */
.fm-static {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 16px 18px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 20px;
}
.fm-static span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.fm-static strong { font-size: 0.98rem; font-weight: 600; }

/* Gesundheitsfragen */
.fm-q {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.fm-q.fm-miss { border-bottom-color: #d9534f; }
.fm-q-text { font-size: 0.95rem; line-height: 1.55; margin-bottom: 11px; }

.fm-yesno { display: flex; gap: 8px; }
.fm-yesno label { margin: 0; }
.fm-yesno input { position: absolute; opacity: 0; pointer-events: none; }
.fm-yesno span {
  display: inline-block;
  min-width: 84px;
  text-align: center;
  padding: 11px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: var(--bg-card);
  font-size: 0.9rem;
  cursor: pointer;
}
.fm-yesno input:checked + span {
  background: var(--accent);
  border-color: var(--accent);
  color: #14140f;
  font-weight: 700;
}
.fm-yesno input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }

.fm-detail { margin-top: 12px; }
.fm-detail label { font-size: 0.82rem; font-weight: 400; color: var(--text-muted); }

/* Hinweistext zum Lesen */
.fm-legal {
  max-height: 340px;
  overflow-y: auto;
  padding: 18px 20px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  -webkit-overflow-scrolling: touch;
}
.fm-legal h3 {
  font-size: 0.92rem;
  color: var(--accent);
  margin: 18px 0 7px;
}
.fm-legal h3:first-child { margin-top: 0; }
.fm-legal p {
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* Bestätigungen */
.fm-check {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 15px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: var(--bg-card);
  cursor: pointer;
  font-size: 0.92rem;
}
.fm-check input {
  width: 22px; height: 22px;
  flex: 0 0 22px;
  margin-top: 1px;
  accent-color: var(--accent);
  cursor: pointer;
}
.fm-check small {
  display: block;
  margin-top: 5px;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.fm-check input.fm-miss { outline: 2px solid #d9534f; outline-offset: 3px; }

/* Unterschrift */
.fm-siglabel { font-size: 0.88rem; margin: 24px 0 10px; }

.fm-sigbox {
  position: relative;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #fbfbf9;
  overflow: hidden;
  touch-action: none;
}
.fm-sigbox canvas {
  display: block;
  width: 100%;
  height: 210px;
  touch-action: none;
  cursor: crosshair;
}
.fm-sigline {
  position: absolute;
  left: 8%; right: 8%;
  bottom: 44px;
  border-top: 1px solid #c4c4bd;
  pointer-events: none;
}
.fm-sighint {
  position: absolute;
  left: 0; right: 0;
  bottom: 18px;
  text-align: center;
  font-size: 0.82rem;
  color: #9d9d95;
  pointer-events: none;
}

.fm-sigtools { display: flex; justify-content: flex-end; margin-top: 10px; }

/* Zusammenfassung */
.fm-summary {
  margin-top: 26px;
  padding: 18px 20px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.fm-summary h3 { font-size: 0.88rem; margin-bottom: 12px; color: var(--accent); }
.fm-summary dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 16px; font-size: 0.87rem; }
.fm-summary dt { color: var(--text-muted); }
.fm-summary ul { margin: 8px 0 0 18px; font-size: 0.85rem; color: var(--text-muted); }
.fm-summary li { margin-bottom: 4px; }
.fm-summary-flag { margin-top: 14px; font-size: 0.86rem; }
.fm-summary-ok { margin-top: 14px; font-size: 0.86rem; color: var(--text-muted); }

/* Steuerung */
.fm-nav {
  display: flex;
  gap: 11px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.fm-btn {
  flex: 1;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--accent);
  color: #14140f;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.fm-btn:hover { background: var(--accent-hover); }
.fm-btn:disabled { opacity: 0.6; cursor: default; }
.fm-btn.ghost {
  flex: 0 0 auto;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-main);
  font-weight: 600;
}
.fm-btn.ghost:hover { border-color: var(--accent); color: var(--accent); }
.fm-btn.small { padding: 10px 18px; font-size: 0.85rem; }

/* Abschluss */
.fm-done { text-align: center; padding: 60px 20px; }
.fm-done-mark {
  width: 68px; height: 68px;
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 2rem;
}
.fm-done h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 14px;
}
.fm-done p { color: var(--text-muted); max-width: 460px; margin: 0 auto 14px; line-height: 1.7; }
.fm-done-note { font-size: 0.85rem; opacity: 0.75; }
.fm-done .fm-btn { display: inline-block; flex: 0 0 auto; margin-top: 22px; }

@media (prefers-reduced-motion: reduce) {
  .fm-progress-bar span { transition: none; }
}

/* Auf dem Formular stören die schwebenden Kontaktknöpfe:
   sie liegen sonst über dem Absenden-Knopf. */
.seite-formular .social-float { display: none; }

/* Auswahl der Formularart */
.fm-arten {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.fm-art {
  display: block;
  padding: 24px 26px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.09);
  text-decoration: none;
  color: var(--text-main);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.fm-art:hover { border-color: var(--accent); transform: translateY(-2px); }
.fm-art strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: normal;
  margin-bottom: 5px;
}
.fm-art span { font-size: 0.88rem; color: var(--text-muted); }

.fm-wechsel {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: -14px 0 22px;
}
.fm-wechsel a { color: var(--accent); }
