@charset "UTF-8";
/* grossmann · _breakpoints.scss — Partial (wird NICHT eigenständig kompiliert).
 * Verbindliches Breakpoint-System (Tobi 2026-06-13), an Elementor ausgerichtet:
 *   mobile      ≤ 767px
 *   tablet      768 – 1024px
 *   desktop     1025 – 1219px
 *   desktop-xl  ≥ 1220px
 * IMMER diese Mixins benutzen — keine ad-hoc px-Breakpoints mehr.
 * Nutzung:  .x { @include mobile { … } }  bzw.  @include tablet-down { … } */
/* „down" = max-width (desktop-first Overrides) · „up" = min-width · sonst = Bereich */
/* ≤ 767 */
/* 768–1024 */
/* ≤ 1024 (Tablet + Mobile) */
/* ≥ 768 */
/* 1025–1219 */
/* ≥ 1025 */
/* ≥ 1220 */
/* grossmann · blog.scss → blog.css. Blog-Übersicht + Archive („Aus der Praxis.").
 * Lädt auf is_home()/is_archive()/is_search() (inc/enqueue.php). Tokens aus tokens.css.
 * „Mehr laden" → assets/js/blog.js. (Kategorie-Filter seit FR5-D entfernt.)
 * Hinweis: Titel sind bewusst Eltern-gescoped (& &__title) → höhere Spezifität,
 * schlägt Elementor-Kit `.elementor-kit-N h1..h6{color:#fff}`. */
/* Bereich (Creme) */
.blog-main {
  background: var(--cream);
  padding: clamp(48px, 7vw, 90px) 0 clamp(64px, 9vw, 120px);
}
.blog-main__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}
.blog-main {
  /* Pagination (Archive, server-seitig) */
}
.blog-main .pagination {
  margin-top: clamp(40px, 5vw, 64px);
}
.blog-main .pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.blog-main .pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  text-decoration: none;
  font: 700 0.9rem/1 var(--f-display);
  transition: border-color 0.18s ease, color 0.18s ease;
}
.blog-main .pagination .page-numbers:hover {
  border-color: var(--pink);
  color: var(--pink);
}
.blog-main .pagination .page-numbers.current {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.blog-main .pagination .page-numbers.dots {
  border: none;
  background: none;
}

/* Section-Head */
.blog-head {
  text-align: center;
  margin-bottom: clamp(26px, 3.2vw, 40px);
}
.blog-head__eyebrow {
  margin: 0 0 8px;
  color: var(--pink-deep);
  font: 700 0.76rem/1 var(--f-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.blog-head .blog-head__title {
  margin: 0;
  color: var(--text);
  font-family: var(--f-display);
  font-weight: 800;
  line-height: 1.1;
  font-size: clamp(1.8rem, 1.3rem + 1.8vw, 2.8rem);
}
.blog-head { /* gescoped (s.o.) */ }
.blog-head__script {
  margin: 4px 0 0;
  color: var(--pink);
  font-family: var(--f-script);
  font-size: 1.5rem;
  transform: rotate(-2deg);
}

/* Karten */
.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.blog-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 54px rgba(20, 16, 28, 0.16);
}
.blog-card:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
}
.blog-card[hidden] {
  display: none !important;
}
.blog-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: var(--pink-soft);
}
.blog-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card__media img {
  transform: scale(1.06);
}
.blog-card__cat {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 7px 13px;
  border-radius: var(--r-pill);
  background: var(--pink);
  color: #fff;
  font: 700 0.66rem/1 var(--f-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.blog-card__body {
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
  padding: 24px clamp(20px, 2vw, 28px) 26px;
}
.blog-card__meta {
  color: var(--muted);
  font: 700 0.74rem/1 var(--f-body);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.blog-card__meta .entry-sep {
  opacity: 0.55;
}
.blog-card .blog-card__t {
  margin: 0;
  color: var(--text);
  font-family: var(--f-display);
  font-weight: 800;
  line-height: 1.18;
  font-size: clamp(1.2rem, 1rem + 0.8vw, 1.6rem);
  transition: color 0.2s ease;
}
.blog-card { /* gescoped (s.o.) */ }
.blog-card:hover .blog-card__t {
  color: var(--pink);
}
.blog-card__ex {
  color: var(--muted);
  font: 400 1rem/1.65 var(--f-body);
}
.blog-card__more {
  margin-top: auto;
  padding-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink);
  font: 700 0.76rem/1 var(--f-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.blog-card__more i {
  font-style: normal;
  transition: transform 0.25s ease;
}
.blog-card:hover .blog-card__more i {
  transform: translateX(7px);
}
.blog-card {
  /* Lead-Card (Featured) — Bild links, Excerpt rechts */
}
.blog-card--lead {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.blog-card--lead[hidden] {
  display: none !important;
}
.blog-card--lead .blog-card__media {
  aspect-ratio: auto;
  height: 100%;
  min-height: clamp(240px, 26vw, 360px);
}
.blog-card--lead .blog-card__body {
  justify-content: center;
  gap: 14px;
  padding: clamp(28px, 4vw, 56px);
}
.blog-card--lead .blog-card__t {
  font-size: clamp(1.6rem, 1.2rem + 2vw, 2.8rem);
}

/* Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(22px, 2.4vw, 40px);
}

/* „Mehr laden" */
.blog-more-wrap {
  text-align: center;
  margin-top: clamp(36px, 4.5vw, 60px);
}

.blog-more {
  cursor: pointer;
  padding: 14px 32px;
  border-radius: var(--r-pill);
  border: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  font: 700 0.9rem/1 var(--f-display);
  letter-spacing: 0.04em;
  transition: background 0.18s ease, color 0.18s ease;
}
.blog-more:hover {
  background: var(--ink);
  color: #fff;
}
.blog-more[hidden] {
  display: none;
}

.blog-empty {
  text-align: center;
  color: var(--muted);
  font-size: 1.1rem;
  padding: clamp(20px, 4vw, 48px) 0;
}

/* Responsive: Lead-Card stapelt auf Mobile */
@media (max-width: 767px) {
  .blog-card--lead {
    grid-template-columns: 1fr;
  }
  .blog-card--lead .blog-card__media {
    aspect-ratio: 16/11;
    min-height: 0;
  }
}
