/* =========================================================================
   EsWirkt! Blog – blog.css
   Design-Tokens ganz oben; darunter ausschliesslich diese Variablen nutzen.
   Marken-Tokens EsWirkt!: Schrift Jost, Sage-Grün, BG #f7f7f7, Text #232323.
   ========================================================================= */

/* Schrift Jost laden (falls die Seite sie nicht ohnehin einbindet) */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&display=swap');

:root {
  /* --- Schriften --- */
  --blog-font-head: "Jost", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --blog-font-body: "Jost", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* --- Farben (EsWirkt!) --- */
  --blog-ink:     #3a3a3a;   /* Text & Überschriften – ein Tick heller als reines Schwarz */
  --blog-ink-hover:#6b6b6b;  /* Hover-Grau für Kachel-Titel (heller als --blog-ink) */
  --blog-brand:   #2f6b57;   /* Links – dunkleres Grün, WCAG AA auf #f7f7f7 */
  --blog-accent:  #8faf9d;   /* Sage-Grün – Deko: Header/Footer, Linien, Badge */
  --blog-bg:      #ffffff;   /* Blog-Hintergrund: ganz weiss */
  --blog-surface: #ffffff;   /* Kacheln/Karten */
  --blog-line:    #e3e6e4;
  --blog-bg-soft: #eef1ef;
  --blog-muted:   #5b6570;

  /* --- Layout --- */
  --blog-maxwidth: 760px;    /* Lesebreite Artikel */
  --blog-listwidth: 1500px;  /* Übersicht darf breiter sein */
  --blog-radius: 12px;
  --blog-nav-offset: 112px;  /* Abstand für fixierte Navi (Logo 5rem) – anpassen */
  --blog-font-size: 18px;    /* Fliesstext lese-freundlich (nie <16px) */
  --blog-line-height: 2.0;   /* luftiger Zeilenabstand */
}

/* --- Grundlayout --------------------------------------------------------- */
body.blog-body,
body { }

.blog-main,
main.blog-main { }

/* Der Blog-Container wird um den <!-- CONTENT --> gelegt (siehe template) */
.blog-wrap {
  padding-top: var(--blog-nav-offset);
  background: var(--blog-bg);
  color: var(--blog-ink);
  font-family: var(--blog-font-body);
  font-size: var(--blog-font-size);
  line-height: var(--blog-line-height);
}

/* Artikel-Lesespalte auf weissem Hintergrund (kein Grau) */
.blog-container {
  max-width: var(--blog-maxwidth);
  margin: 0 auto;
  padding: 2rem 1.6rem 3.5rem;
  background: transparent;
}
/* Übersicht/Listen: breiter, ebenfalls weiss */
.blog-container--wide {
  max-width: var(--blog-listwidth);
  padding: 1.5rem 1.1rem 4rem;
}
@media (max-width: 600px) {
  .blog-container { padding: 1.4rem 1.2rem 2.2rem; }
}

/* --- Typografie ---------------------------------------------------------- */
.blog-content, .blog-article, .blog-overview { color: var(--blog-ink); }

/* H-Struktur durchgehend Bold (Jost 700) UND in der Textfarbe #232323.
   Farbe explizit, damit ein späteres Theme-CSS die Headings nicht umfärbt. */
.blog-article h1, .blog-overview h1,
.blog-content h2, .blog-content h3, .blog-content h4,
.blog-faq__title, .blog-faq__q, .blog-related__heading,
.blog-related__title, .blog-card__title {
  font-weight: 700;
  color: var(--blog-ink);
}

.blog-article h1,
.blog-overview h1 {
  font-family: var(--blog-font-head);
  font-size: 2.5rem;
  line-height: 1.15;
  margin: 0 0 .6rem;
  color: var(--blog-ink);
}
.blog-content h2 {
  font-family: var(--blog-font-head);
  font-size: 1.7rem; line-height: 1.25;
  margin: 2.2rem 0 .8rem;
}
.blog-content h3 {
  font-family: var(--blog-font-head);
  font-size: 1.3rem; line-height: 1.3;
  margin: 1.8rem 0 .6rem;
}
.blog-content h4 { font-family: var(--blog-font-head); font-size: 1.1rem; margin: 1.4rem 0 .5rem; }

.blog-content p { margin: 0 0 1.3em; line-height: var(--blog-line-height); }
/* Artikel-Links IMMER unterstrichen (auch im Hover) – nur im Artikel-Inhalt,
   nicht in Navi/Footer. Bild-Links (Bild in <a>) ohne Textstrich. */
.blog-content a,
.blog-content a:visited {
  color: var(--blog-brand);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.blog-content a:hover,
.blog-content a:focus-visible { text-decoration: underline; }
.blog-content a:has(img),
.blog-figure a { text-decoration: none; }
.blog-content ul, .blog-content ol { margin: 0 0 1.1em 1.4em; padding: 0; }
.blog-content li { margin: .35em 0; }
.blog-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: var(--blog-bg-soft); padding: .1em .4em; border-radius: 6px; font-size: .9em;
}
.blog-content blockquote {
  margin: 1.4em 0; padding: .6em 1.1em; border-left: 4px solid var(--blog-accent);
  background: var(--blog-bg-soft); border-radius: 0 var(--blog-radius) var(--blog-radius) 0;
  color: var(--blog-muted);
}
.blog-content hr { border: 0; border-top: 1px solid var(--blog-line); margin: 2rem 0; }

.blog-article__meta { color: var(--blog-muted); font-size: .95rem; margin: 0 0 1.5rem; }

.blog-draft-note {
  background: #fff4d6; border: 1px solid #f0d488; color: #7a5b00;
  padding: .6rem 1rem; border-radius: var(--blog-radius); margin: 0 0 1.2rem;
}

/* --- Bilder / Figuren ---------------------------------------------------- */
.blog-figure { margin: 1.6rem 0; }
.blog-figure img { max-width: 100%; height: auto; display: block; border-radius: var(--blog-radius); }
.blog-figure figcaption { font-size: .85rem; color: var(--blog-muted); margin-top: .4rem; text-align: center; }

.blog-img--hero { margin: 0 0 1.6rem; }
.blog-img--center { text-align: center; }
.blog-img--center .ai-badge-wrap { margin: 0 auto; }
.blog-img--full img { width: 100%; }

.blog-img--left, .blog-img--right { max-width: 46%; }
.blog-img--left  { float: left;  margin: .3rem 1.4rem 1rem 0; }
.blog-img--right { float: right; margin: .3rem 0 1rem 1.4rem; }
.blog-content::after { content: ""; display: block; clear: both; }

@media (max-width: 600px) {
  .blog-img--left, .blog-img--right { float: none; max-width: 100%; margin: 1.2rem 0; }
}

/* --- KI-Kennzeichnung ---------------------------------------------------- */
.ai-badge-wrap { position: relative; display: inline-block; max-width: 100%; }
.ai-badge {
  position: absolute; right: .6rem; bottom: .6rem;
  background: var(--blog-ink); color: #fff;
  font-family: var(--blog-font-body); font-size: .8rem; font-weight: 600; line-height: 1;
  padding: .4rem .7rem; border-radius: 999px; box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.ai-badge b { color: var(--blog-accent); font-weight: 800; }
/* kleinere Variante für Kachel-/Karten-Thumbnails (Übersicht, Verwandte Beiträge) */
.ai-badge--sm {
  right: .4rem; bottom: .4rem; font-size: .66rem; padding: .28rem .5rem;
  box-shadow: 0 1px 5px rgba(0,0,0,.28);
}

.blog-ai-note {
  margin-top: 2.4rem; padding-top: 1rem; border-top: 1px solid var(--blog-line);
  font-size: .8rem; color: var(--blog-muted);
}

/* --- Hinweis-Box --------------------------------------------------------- */
.blog-note {
  margin: 1.6rem 0; padding: 1rem 1.2rem;
  background: var(--blog-bg-soft); border: 1px solid var(--blog-line);
  border-left: 4px solid var(--blog-accent); border-radius: var(--blog-radius);
}
.blog-note p:last-child { margin-bottom: 0; }

/* --- FAQ ----------------------------------------------------------------- */
.blog-faq { margin: 2.4rem 0; }
.blog-faq__title { font-family: var(--blog-font-head); font-size: 1.7rem; margin: 0 0 1rem; }
.blog-faq__item { border-bottom: 1px solid var(--blog-line); padding: .9rem 0; }
.blog-faq__q { font-family: var(--blog-font-head); font-size: 1.15rem; margin: 0 0 .4rem; }
.blog-faq__a p:last-child { margin-bottom: 0; }

/* --- Teilen -------------------------------------------------------------- */
.blog-share { margin: 1.6rem 0; }
.blog-share__label { display: block; font-size: .85rem; color: var(--blog-muted); margin-bottom: .5rem; }
.blog-share__buttons { display: flex; flex-wrap: wrap; gap: .5rem; }
.blog-share__btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem .8rem; border: 1px solid var(--blog-line); border-radius: 999px;
  background: var(--blog-surface); color: var(--blog-ink); font-size: .9rem;
  text-decoration: none; cursor: pointer; transition: background .15s, border-color .15s;
}
/* Hover: dezentes Grau (kein Grün/Gelb); Textfarbe fix, damit das Theme-a:hover nicht durchschlägt */
.blog-share__btn:hover,
.blog-share__btn:focus { background: #f0f1f2; border-color: #cfd3d6; color: var(--blog-ink); }
.blog-share__btn:hover .blog-share__text { color: var(--blog-ink); }
.blog-share__btn svg { width: 18px; height: 18px; fill: currentColor; }
.blog-share__text { line-height: 1; }
@media (max-width: 480px) { .blog-share__text { display: none; } }

/* --- Verwandte Beiträge (robuste padding-top-Technik) -------------------- */
.blog-related { margin-top: 2.5rem; }
.blog-related__heading { font-family: var(--blog-font-head); font-size: 1.4rem; margin: 0 0 1rem; }
.blog-related__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.blog-related__card {
  display: flex; flex-direction: column;
  border: 1px solid var(--blog-line); border-radius: var(--blog-radius);
  overflow: hidden; background: var(--blog-surface); text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.blog-related__card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.08); }
.blog-related__thumb { position: relative; width: 100%; padding-top: 100%; overflow: hidden; background: var(--blog-bg-soft); }
.blog-related__thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-related__placeholder { position: absolute; inset: 0; background: linear-gradient(135deg, var(--blog-bg-soft), var(--blog-line)); }
.blog-related__title {
  padding: .8rem 1rem; font-family: var(--blog-font-head);
  color: var(--blog-ink); font-size: 1.05rem; line-height: 1.3;
}
.blog-related__card:hover .blog-related__title { color: var(--blog-ink-hover); }
@media (max-width: 600px) { .blog-related__grid { grid-template-columns: 1fr; } }

/* --- Übersicht / Kachel-Raster ------------------------------------------ */
.blog-overview__head { margin-bottom: 1.8rem; }
.blog-overview__intro { color: var(--blog-muted); font-size: 1.05rem; margin-top: .2rem; }

.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.blog-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--blog-line); border-radius: var(--blog-radius);
  overflow: hidden; background: var(--blog-surface); text-decoration: none; color: var(--blog-ink);
  transition: transform .15s, box-shadow .15s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.09); }
.blog-card__thumb { position: relative; width: 100%; padding-top: 62%; overflow: hidden; background: var(--blog-bg-soft); }
.blog-card__thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card__placeholder { position: absolute; inset: 0; background: linear-gradient(135deg, var(--blog-bg-soft), var(--blog-line)); }
.blog-card__body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.blog-card__title { font-family: var(--blog-font-head); font-weight: 700; font-size: 1.15rem; line-height: 1.3; }
.blog-card:hover .blog-card__title { color: var(--blog-ink-hover); }
.blog-card__teaser { color: var(--blog-muted); font-size: .95rem; flex: 1; }
.blog-card__date { color: var(--blog-muted); font-size: .82rem; }

@media (max-width: 1100px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .blog-grid { grid-template-columns: 1fr; } }

/* --- Sprachumschalter ---------------------------------------------------- */
.blog-langswitch { display: flex; gap: .6rem; justify-content: flex-end; margin: 0 0 1rem; }
.blog-langswitch a { color: var(--blog-muted); text-decoration: none; font-size: .9rem; padding: .2rem .5rem; border-radius: 6px; }
.blog-langswitch a.is-active { color: var(--blog-brand); font-weight: 700; }
.blog-langswitch a:hover { background: var(--blog-bg-soft); }

/* --- 404 ----------------------------------------------------------------- */
.blog-404 { text-align: center; padding: 3rem 0; }
.blog-btn {
  display: inline-block; margin-top: 1rem; padding: .7rem 1.3rem;
  background: var(--blog-brand); color: #fff; text-decoration: none; border-radius: 999px;
}
.blog-btn:hover { filter: brightness(1.08); }

/* --- Hauptthemen-Leiste (unter der Navigation) ---------------------------- */
.blog-topics {
  border-bottom: 1px solid var(--blog-line);
  background: var(--blog-bg);
  margin-bottom: 1.6rem;
}
.blog-topics__in {
  max-width: var(--blog-listwidth);
  margin: 0 auto;
  padding: 1rem 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  justify-content: center;
}
.blog-topics__btn {
  display: inline-block;
  padding: .5rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--blog-line);
  background: #fbfbfb;
  color: var(--blog-ink);
  font-family: var(--blog-font-head);
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s;
}
.blog-topics__btn:hover {
  background: #e9efec;
  border-color: var(--blog-accent);
  color: var(--blog-ink);
}
/* aktives Thema: Sage-Grün mit dunkler Schrift (Kontrast ~4.9:1) */
.blog-topics__btn.is-active {
  background: var(--blog-accent);
  border-color: var(--blog-accent);
  color: var(--blog-ink);
  font-weight: 700;
}
@media (max-width: 600px) {
  .blog-topics__in { gap: .4rem; padding: .8rem .8rem; }
  .blog-topics__btn { padding: .45rem .85rem; font-size: .88rem; }
}

/* ============================================================
   FRONTEND-ANPASSUNGEN (Juli 2026) – laden nach dem Theme,
   überschreiben es gezielt. Reihenfolge: diese Datei ist zuletzt.
   ============================================================ */

/* 1) Kacheln: grauer Fleck in den Bild-Ecken weg.
   Ursache: Die Rundung sass auf der KARTE, das graue Kachel-Feld
   (--blog-bg-soft) schien an der Ecke durch. Lösung: Rundung direkt
   aufs Bild-Feld legen, graues Feld transparent, Rahmen weg,
   dezenter Dauer-Schatten für die Abgrenzung auf weissem Grund. */
/* Ziel (Referenzbild): Karte rundum leicht gerundet mit zartem Rahmen.
   Das BILD rundet sich NICHT selbst – es füllt randlos, oben schneidet die
   Karte die Ecken sanft ab, unten läuft es schnurgerade in den Text.
   Kein Grau mehr: Kachel-Feld transparent, dahinter die weisse Karte. */
.blog-card {
  border: 1px solid var(--blog-line);
  border-radius: 8px;               /* rundum leicht */
  box-shadow: 0 1px 3px rgba(20,32,27,.05), 0 8px 22px -14px rgba(20,32,27,.18);
}
.blog-card:hover {
  box-shadow: 0 4px 10px rgba(20,32,27,.08), 0 16px 36px -18px rgba(20,32,27,.28);
}
.blog-card__thumb { background: transparent; border-radius: 0; }
/* !important MUSS sein: das Mobirise-Theme setzt `img{border-radius:2rem !important}`
   auf ALLE Bilder. Ohne unser !important rundet sich das Kachel-Bild trotzdem (32px)
   und zeigt unten weisse Ecken. */
.blog-card__thumb img { border-radius: 0 !important; }
/* Verwandte Beiträge gleich behandeln */
.blog-related__card { border-radius: 8px; }
.blog-related__thumb { background: transparent; border-radius: 0; }
.blog-related__thumb img { border-radius: 0 !important; }

/* 2) Themenleiste – Vorschlag 1 „Sage-Chips":
   inaktive Themen als weiche Sage-Pille, aktives Thema dunkelgrün gefüllt.
   Bindet die Marke ein und verbindet die Leiste sichtbar mit der grünen Navi. */
.blog-topics__btn {
  background: #e8efe9;
  border-color: transparent;
  color: #3a4a43;
}
.blog-topics__btn:hover {
  background: #dbe6de;
  border-color: transparent;
  color: #26332c;
}
.blog-topics__btn.is-active,
.blog-topics__btn.is-active:hover {
  background: #2b3a30;          /* dunkelgrün wie die Navi */
  border-color: #2b3a30;
  color: #ffffff;
  font-weight: 600;
}

/* 3) Navigation im Look der Hauptsite es-wirkt.ch (live abgeglichen):
   schlanke, dunkelgrüne Pille #2b3a30, weisse Schrift. Die Hauptsite ist
   58 px hoch; der Blog-Balken war 90 px – wir machen ihn schlanker (64 px)
   und verkleinern das Logo passend, damit es die Proportion trifft. */
.cid-vobBAFdDjQ .container {
  background-color: #2b3a30;   /* exakt wie es-wirkt.ch */
  height: 64px;
  /* Kompakte, mittig schwebende Pille statt voller Breite – wie die Hauptsite. */
  max-width: 1100px;
  margin: .8rem auto 0;
}
.cid-vobBAFdDjQ .dropdown-menu { background: #2b3a30; }
/* Logo passt sich der schlankeren Leiste an (war 5rem) */
.cid-vobBAFdDjQ .navbar-brand img,
.cid-vobBAFdDjQ .navbar-logo img { height: 3rem !important; }
/* Menü-Schrift wie auf es-wirkt.ch gemessen: 15.7px, Gewicht 600.
   !important, weil die Mobirise-Klasse `display-4` sonst grösser skaliert. */
.cid-vobBAFdDjQ .navbar-nav .nav-item .nav-link,
.cid-vobBAFdDjQ .nav-link.display-4 {
  font-size: .98rem !important;
  font-weight: 600 !important;
}
/* Menüpunkte: weisser Text bleibt, Hover ein dezenter heller Schimmer. */
.cid-vobBAFdDjQ .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(255,255,255,.12);
}
/* Sprachauswahl rechts folgt derselben Schriftgrösse */
.ew-nav-lang .blog-lang__link { font-size: .98rem; font-weight: 600; }

/* 4) Footer im Look von es-wirkt.ch (live abgeglichen):
   cremeweisser Grund #f6f6f2 statt Sage, grauer Text statt Gelb.
   Die gelben Links (.text-primary hat #ffe885 !important) müssen scoped
   und mit !important überschrieben werden, sonst wären sie auf Creme unsichtbar. */
.cid-vo9EEbRXHP {
  background-color: #f6f6f2 !important;
  border-top: 1px solid #e6e6df;
}
.cid-vo9EEbRXHP .copyright { color: #6b6b6b !important; }
.cid-vo9EEbRXHP a.text-primary { color: #2f6b57 !important; }
.cid-vo9EEbRXHP a.text-primary:hover,
.cid-vo9EEbRXHP a.text-primary:focus { color: #234f42 !important; }

/* ============================================================
   FRONTEND-FIXES (Mobil & Artikel) – Juli 2026
   ============================================================ */

/* --- Bild 1: Artikel-Bilder & Tabellen ---
   Das Theme setzt img{border-radius:2rem !important}. Im Fliesstext ist das
   zu viel; auf 8px bringen. Tabellen dezent gerundet und auf schmalen Screens
   horizontal scrollbar, damit sie die Seite nicht sprengen. */
.blog-content img,
.blog-figure img { border-radius: 8px !important; }
.blog-content table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  border-radius: 8px;
  -webkit-overflow-scrolling: touch;
}
.blog-content th,
.blog-content td { border: 1px solid var(--blog-line); padding: .55rem .8rem; text-align: left; }
.blog-content thead th { background: #e8efe9; }

/* --- Bild 2: Hamburger-Menü in Logo-Gelb statt Schwarz --- */
.cid-vobBAFdDjQ .hamburger span { background-color: #fbe993 !important; }

/* --- Bild 3: Sprachumschalter = nur Fahne als kleiner Kreis, kein Text ---
   Kein Schatten – die Fahne hebt sich beim Überfahren dezent an (eleganter). */
.blog-lang__txt { display: none !important; }
.ew-nav-lang .blog-lang__link { gap: 0; padding: .25rem; background: transparent !important;
  transition: transform .15s ease; }
.ew-nav-lang .blog-lang__link:hover { transform: translateY(-2px); }
.ew-nav-lang .blog-flag {
  width: 26px; height: 26px;
  border-radius: 50% !important;
  box-shadow: none;
}

/* ---- PDF-Download mit E-Mail-Gate ---- */
.blog-pdf { margin: 2rem 0 1rem; text-align: center; }
.blog-pdf__btn {
  font-family: var(--blog-font-head); font-size: 1rem; font-weight: 600; cursor: pointer;
  background: #2b3a30; color: #fff; border: 0; border-radius: 999px; padding: .7rem 1.5rem;
  transition: transform .12s ease, background .12s ease;
}
.blog-pdf__btn:hover { background: #26332c; transform: translateY(-1px); }
.blog-pdf__ov {
  position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center;
  justify-content: center; padding: 1.2rem; background: rgba(20,32,27,.55);
}
.blog-pdf__ov[hidden] { display: none; }
.blog-pdf__box {
  position: relative; width: 100%; max-width: 30rem; background: #fff; color: var(--blog-ink);
  border-radius: 14px; padding: 1.6rem 1.5rem; box-shadow: 0 24px 60px -12px rgba(20,32,27,.5);
}
.blog-pdf__box h2 { font-family: var(--blog-font-head); font-size: 1.3rem; margin: 0 0 .4rem; color: var(--blog-ink); }
.blog-pdf__lead { color: var(--blog-muted); margin: 0 0 1rem; font-size: .95rem; }
.blog-pdf__x {
  position: absolute; top: .7rem; right: .8rem; width: 2rem; height: 2rem; border: 0;
  background: transparent; font-size: 1.6rem; line-height: 1; cursor: pointer; color: var(--blog-muted);
}
.blog-pdf__field { display: block; font-size: .85rem; color: var(--blog-muted); margin: 0 0 .8rem; }
.blog-pdf__field input {
  display: block; width: 100%; margin-top: .3rem; padding: .6rem .7rem; font: inherit;
  border: 1px solid var(--blog-line); border-radius: 8px; color: var(--blog-ink);
}
.blog-pdf__check { display: flex; gap: .5rem; align-items: flex-start; font-size: .85rem; color: var(--blog-ink); margin: 0 0 .8rem; cursor: pointer; }
.blog-pdf__check input { margin-top: .2rem; flex: none; }
.blog-pdf__note { font-size: .78rem; color: var(--blog-muted); margin: 0 0 1rem; }
.blog-pdf__note a { color: var(--blog-brand); }
.blog-pdf__submit {
  font-family: var(--blog-font-head); font-size: 1rem; font-weight: 600; cursor: pointer;
  background: var(--blog-brand); color: #fff; border: 0; border-radius: 999px; padding: .65rem 1.4rem; width: 100%;
}
.blog-pdf__submit:disabled { opacity: .6; cursor: default; }
.blog-pdf__msg { min-height: 1.2em; font-size: .85rem; color: var(--blog-danger, #a4342a); margin: .6rem 0 0; text-align: center; }
