/* ================================================================
   BAUER BLUMEN — Blogartikel
   Gemeinsames Stylesheet aller blog-*.html. Der Kopf traegt die
   Bereichsfarbe der Kategorie, damit ein Beitrag zur Bestattung
   sofort als solcher erkennbar ist.
================================================================ */

.art {
  --r:          18px;
  --r-pill:     999px;
  --line-soft:  rgba(28,28,28,0.07);
  --shadow:     0 1px 2px rgba(28,28,28,0.04), 0 18px 44px rgba(45,74,30,0.07);
  --wrap:       780px;
  --pad-x:      clamp(20px, 6vw, 72px);

  --a-flor: 91, 121, 54;
  --a-best: 112, 72, 97;
  --a-grab: 150, 112, 60;
  --a: var(--a-flor);
}
.art[data-area="flor"] { --a: var(--a-flor); }
.art[data-area="best"] { --a: var(--a-best); }
.art[data-area="grab"] { --a: var(--a-grab); }

/* ── Kopf ─────────────────────────────────────────────────────── */
.art-hero {
  position: relative;
  padding: calc(var(--nav-h-small, 66px) + clamp(30px, 4vw, 52px))
           var(--pad-x) clamp(28px, 3.4vw, 44px);
  background:
    linear-gradient(150deg,
      rgba(var(--a), 0.16) 0%,
      rgba(var(--a), 0.06) 46%,
      rgba(var(--a), 0.02) 100%),
    linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
  overflow: hidden;
}
.art-hero::after {
  content: '';
  position: absolute;
  left: var(--pad-x); right: var(--pad-x); bottom: 0;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(var(--a),0) 0%, rgba(var(--a),0.3) 20%,
    rgba(var(--a),0.3) 80%, rgba(var(--a),0) 100%);
}
.art-hero-inner { max-width: var(--wrap); margin: 0 auto; }

.art-kat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 15px;
  border-radius: var(--r-pill);
  background: rgba(var(--a), 0.10);
  border: 1px solid rgba(var(--a), 0.24);
  font-size: 0.62rem;
  font-weight: var(--fw-semi);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgb(var(--a));
  text-decoration: none;
  margin-bottom: 18px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.art-kat:hover { background: rgb(var(--a)); color: #fff; }
.art-kat::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.art-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: var(--fw-light);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--dark);
  text-wrap: balance;
  margin: 0 0 16px;
}
.art-lead {
  font-size: var(--fs-lead);
  font-weight: var(--fw-light);
  line-height: 1.68;
  color: var(--grey);
  margin: 0 0 22px;
  text-wrap: pretty;
}
.art-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  font-size: var(--fs-fine);
  font-weight: var(--fw-light);
  color: rgba(107,107,107,0.85);
}
.art-meta span { display: inline-flex; align-items: center; gap: 7px; }
.art-meta span + span::before {
  content: '';
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(var(--a), 0.5);
  margin-right: 11px;
}

/* ── Fliesstext ───────────────────────────────────────────────── */
.art-body {
  padding: clamp(38px, 5vw, 62px) var(--pad-x) clamp(48px, 6vw, 76px);
  background: var(--light);
}
.art-body-inner { max-width: var(--wrap); margin: 0 auto; }

.art-body h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: var(--fw-light);
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--dark);
  text-wrap: balance;
  margin: clamp(38px, 4.5vw, 58px) 0 14px;
}
.art-body h2:first-child { margin-top: 0; }
.art-body h3 {
  font-size: 1.06rem;
  font-weight: var(--fw-medium);
  line-height: 1.4;
  color: var(--dark);
  margin: 30px 0 10px;
}
.art-body p {
  font-size: var(--fs-body);
  font-weight: var(--fw-light);
  line-height: 1.82;
  color: #4a453f;
  margin: 0 0 18px;
  text-wrap: pretty;
}
.art-body ul, .art-body ol {
  margin: 0 0 22px;
  padding-left: 0;
  list-style: none;
}
.art-body ol { counter-reset: schritt; }
.art-body li {
  position: relative;
  padding-left: 28px;
  font-size: var(--fs-body);
  font-weight: var(--fw-light);
  line-height: 1.78;
  color: #4a453f;
  margin-bottom: 11px;
}
.art-body ul li::before {
  content: '';
  position: absolute;
  left: 4px; top: 0.78em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(var(--a), 0.55);
}
.art-body ol li { counter-increment: schritt; }
.art-body ol li::before {
  content: counter(schritt);
  position: absolute;
  left: 0; top: 0.14em;
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: rgb(var(--a));
}
.art-body strong { font-weight: var(--fw-medium); color: var(--dark); }
.art-body a { color: rgb(var(--a)); text-decoration: underline; text-underline-offset: 3px; }
.art-body a:hover { text-decoration-thickness: 2px; }

/* ── Das Auge des Floristen: der wiederkehrende Kasten ────────── */
.art-usp {
  margin: clamp(30px, 4vw, 44px) 0;
  padding: clamp(24px, 3vw, 32px);
  border-radius: var(--r);
  background: linear-gradient(150deg,
    rgba(var(--a), 0.10) 0%, rgba(var(--a), 0.04) 100%);
  border: 1px solid rgba(var(--a), 0.20);
}
.art-usp-label {
  display: block;
  font-size: 0.59rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgb(var(--a));
  margin-bottom: 12px;
}
.art-usp p { margin: 0; font-size: 1.02rem; line-height: 1.78; }
.art-usp p + p { margin-top: 14px; }

/* Zitat / Merksatz */
.art-merk {
  margin: clamp(30px, 4vw, 44px) 0;
  padding: 4px 0 4px 22px;
  border-left: 2px solid rgb(var(--a));
}
.art-merk p {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-style: italic;
  font-weight: var(--fw-light);
  line-height: 1.4;
  color: var(--dark);
  margin: 0;
}

/* Fakten-Tabelle */
.art-tabelle {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 26px;
  font-size: var(--fs-sm);
}
.art-tabelle th, .art-tabelle td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  font-weight: var(--fw-light);
  color: #4a453f;
  line-height: 1.6;
}
.art-tabelle th {
  font-size: var(--fs-micro);
  font-weight: var(--fw-semi);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(var(--a));
  border-bottom: 1px solid rgba(var(--a), 0.3);
}
.art-tabelle td:last-child { white-space: nowrap; font-weight: var(--fw-regular); color: var(--dark); }
.art-tabelle-wrap { overflow-x: auto; }

/* Haeufige Fragen */
.art-faq { margin: clamp(30px, 4vw, 44px) 0 0; }
.art-frage {
  border-bottom: 1px solid var(--line-soft);
}
.art-frage summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 0;
  font-size: 1.02rem;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  color: var(--dark);
  transition: color 0.3s ease;
}
.art-frage summary::-webkit-details-marker { display: none; }
.art-frage summary::after {
  content: '';
  flex-shrink: 0;
  margin-top: 7px;
  width: 8px; height: 8px;
  border-right: 1.5px solid rgb(var(--a));
  border-bottom: 1.5px solid rgb(var(--a));
  transform: rotate(45deg);
  transition: transform 0.35s var(--ease);
}
.art-frage[open] summary::after { transform: rotate(-135deg) translate(-2px,-2px); }
.art-frage summary:hover { color: rgb(var(--a)); }
.art-frage p { margin: 0 0 18px; font-size: var(--fs-sm); line-height: 1.78; }

/* ── Handlungsaufruf ──────────────────────────────────────────── */
.art-cta {
  padding: 0 var(--pad-x) clamp(56px, 7vw, 84px);
  background: var(--light);
}
.art-cta-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(30px, 4vw, 46px);
  border-radius: var(--r);
  background: linear-gradient(158deg,
    rgba(var(--a), 0.97) 0%, rgba(var(--a), 0.82) 100%);
  box-shadow: 0 18px 48px rgba(var(--a), 0.28);
}
.art-cta-label {
  font-size: 0.59rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin: 0 0 12px;
}
.art-cta h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: var(--fw-light);
  line-height: 1.24;
  color: #fff;
  text-wrap: balance;
  margin: 0 0 12px;
}
.art-cta p {
  font-size: var(--fs-sm);
  font-weight: var(--fw-light);
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  margin: 0 0 24px;
  max-width: 52ch;
}
.art-cta-knoepfe { display: flex; flex-wrap: wrap; gap: 12px; }
.art-cta-tel, .art-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  font-size: var(--fs-label);
  font-weight: var(--fw-semi);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.art-cta-tel { background: #fff; color: rgb(var(--a)); }
.art-cta-tel:hover { background: var(--gold-light); transform: translateY(-2px); }
.art-cta-link {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.34);
  color: #fff;
}
.art-cta-link:hover { background: rgba(255,255,255,0.24); transform: translateY(-2px); }
.art-cta-zeit {
  margin: 20px 0 0;
  font-size: var(--fs-fine);
  font-weight: var(--fw-light);
  line-height: 1.65;
  color: rgba(255,255,255,0.62);
}

/* ── Brotkrumen ───────────────────────────────────────────────── */
.art-krumen {
  max-width: var(--wrap);
  margin: 0 auto 18px;
  font-size: var(--fs-fine);
  font-weight: var(--fw-light);
  color: rgba(107,107,107,0.8);
}
.art-krumen a { color: inherit; text-decoration: none; }
.art-krumen a:hover { color: rgb(var(--a)); }
.art-krumen span { margin: 0 7px; opacity: 0.5; }

@media (max-width: 600px) {
  .art-cta-knoepfe > * { flex: 1 1 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .art-kat, .art-cta-tel, .art-cta-link, .art-frage summary::after { transition: none !important; }
  .art-cta-tel:hover, .art-cta-link:hover { transform: none; }
}
