/* ── ratgeber.css ── Hub-Seite Local SEO Ratgeber ── */

/* Hero Trust Chips: jetzt globale .hero-chips in styles.min.css */

/* ─────────────────────────────────────────────────────────
   Featured Karte (Tools-Hub-Empfehlung)
   ───────────────────────────────────────────────────────── */
.ratgeber-featured {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
  padding: clamp(1.75rem, 4vw, 3rem);
  border-radius: 24px;
  border: 1px solid var(--card-border);
  background:
    radial-gradient(circle at 0% 0%, rgba(var(--primary-color-rgb, 59, 130, 246), 0.18), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(139, 92, 246, 0.16), transparent 55%),
    rgba(var(--card-bg-rgb), 0.45);
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}
@media (max-width: 860px) {
  .ratgeber-featured {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.ratgeber-featured-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-color);
  background: rgba(var(--primary-color-rgb, 59, 130, 246), 0.12);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.ratgeber-featured-content h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}
.ratgeber-featured-content > p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 1.25rem;
  max-width: 56ch;
}

.ratgeber-featured-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.25rem;
}
@media (max-width: 600px) {
  .ratgeber-featured-list { grid-template-columns: 1fr; }
}
.ratgeber-featured-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.ratgeber-featured-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: 800;
}

.ratgeber-featured-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.ratgeber-featured-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Visual rechts: 4-Icon-Stack */
.ratgeber-featured-visual {
  position: relative;
  padding: 1.5rem;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--card-border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.ratgeber-featured-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.ratgeber-featured-tile svg {
  color: var(--primary-color);
}
.ratgeber-featured-tile-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--heading-color, #fff);
}
.ratgeber-featured-tile-meta {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────
   Long-Form Intro
   ───────────────────────────────────────────────────────── */
.ratgeber-intro {
  max-width: 760px;
  margin: 0 auto;
}
.ratgeber-intro h2 {
  margin: 2rem 0 0.75rem;
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
}
.ratgeber-intro h2:first-child { margin-top: 0; }
.ratgeber-intro p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-color);
  margin: 0 0 1rem;
}
.ratgeber-intro a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}
.ratgeber-intro a:hover { text-decoration: underline; }

/* ─────────────────────────────────────────────────────────
   Themen-Grid (Tile-Karten)
   ───────────────────────────────────────────────────────── */
.ratgeber-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 720px) {
  .ratgeber-grid { grid-template-columns: 1fr; }
}

.ratgeber-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem;
  background: rgba(var(--card-bg-rgb), 0.35);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.ratgeber-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--primary-color-rgb, 59, 130, 246), 0.45);
  box-shadow: 0 15px 40px -25px rgba(0, 0, 0, 0.5);
}

.ratgeber-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(var(--primary-color-rgb, 59, 130, 246), 0.12);
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.ratgeber-card-meta {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.ratgeber-card-meta span {
  position: relative;
  padding-right: 0.65rem;
}
.ratgeber-card-meta span:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: 0;
  color: var(--text-muted);
}

.ratgeber-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--heading-color);
}
.ratgeber-card-lead {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 1.1rem;
  line-height: 1.55;
}

.ratgeber-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}
.ratgeber-card-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.85rem;
  line-height: 1.5;
}
.ratgeber-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary-color);
}

.ratgeber-card .btn-secondary {
  align-self: stretch;
  text-align: center;
}

/* ─────────────────────────────────────────────────────────
   Finale CTA
   ───────────────────────────────────────────────────────── */
.ratgeber-final-cta {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(var(--primary-color-rgb, 59, 130, 246), 0.18), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.14), transparent 55%),
    rgba(var(--card-bg-rgb), 0.45);
  border: 1px solid var(--card-border);
  overflow: hidden;
}
.ratgeber-final-cta-content {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.ratgeber-final-cta-content h2 { margin: 0.75rem 0 1rem; }
.ratgeber-final-cta-content p {
  font-size: 1.02rem;
  color: var(--text-muted);
  margin: 0 auto 1.75rem;
  max-width: 560px;
}
.ratgeber-final-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}
.ratgeber-final-cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.75rem;
}
