/* ===== Scale rebrand: Entfernungen (rein CSS, kein JS) =====
   display:none bzw. :has() statt DOM-Manipulation -> bricht NICHT die
   React-Hydration und damit auch nicht die Interaktivitaet (Dropdowns,
   Tabs, Karten-Slider, Zaehler-Animationen). */

/* Hero-Bild + Video-Overlay (Bild liegt im Button) und YouTube "Video abspielen" */
[aria-label^="Video ansehen"],
[aria-label^="Video abspielen"] { display: none !important; }

/* platzreservierende Aspect-Ratio-Video-Boxen komplett kollabieren */
[style*="aspect-ratio"]:has([aria-label^="Video ansehen"]),
[style*="aspect-ratio"]:has([aria-label^="Video abspielen"]),
[style*="aspect-ratio"]:has(img[src*="youtube"]) { display: none !important; }

/* Pill-CTA "Video ansehen" (Button mit Play-Icon) */
button:has(> svg.lucide-play) { display: none !important; }

/* TÜV-Zertifizierungs-Badge (Header + Footer) */
img[src*="tuev-zertifiziert"] { display: none !important; }

/* YouTube-Vorschaubilder ausblenden (der "YouTube-Videos"-Tab wird per
   custom.js entfernt und auf "Neueste Artikel" umgeschaltet) */
img[src*="youtube"],
img[srcset*="youtube"] { display: none !important; }

/* "Kostenlos auf YouTube" / "Jede Woche neue KI-Praxis" Sektion (/ueber-uns) */
#youtube { display: none !important; }

/* ===== Footer: nur LinkedIn behalten, restliche Social-Links entfernen ===== */
footer a[href*="youtube.com"],
footer a[href*="instagram.com"],
footer a[href*="//x.com"],
footer a[href*="substack.com"],
footer a[href*="spotify"] { display: none !important; }

/* ===== Realitätscheck: kompakte Problem-Übersicht (per custom.js eingefügt) ===== */
.scale-rc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (max-width: 900px) { .scale-rc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .scale-rc-grid { grid-template-columns: 1fr; } }
.scale-rc-card {
  background: var(--card, #fff);
  border: 1px solid var(--border, rgba(0,0,0,0.08));
  border-radius: 1rem;
  padding: 1.05rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.scale-rc-card p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.4;
  font-weight: 500;
  color: var(--foreground, #18181b);
}
.scale-rc-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  background: color-mix(in oklab, var(--primary) 12%, transparent);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}
.scale-rc-tag::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: currentColor;
}

/* ===== Logo: "scale" + gruener Punkt =====
   Die ".ai"-Endung wird als drei Dots (".", "a", "i") gerendert -> "a" und "i"
   ausblenden, sodass nur "scale" + gruener Punkt ("scale.") bleibt. */
.logo-dot-2, .logo-dot-3 { display: none !important; }

/* Logo etwas groesser */
a[aria-label$="Startseite"] { font-size: 1.7rem !important; }
/* grue-ner Punkt als deutlich groesserer Kreis (statt kleinem ".") */
a[aria-label$="Startseite"] .logo-dot-1 {
  display: inline-block !important;
  width: 0.5rem !important;
  height: 0.5rem !important;
  margin-left: 0.08em !important;
  border-radius: 50% !important;
  background: currentColor !important;
  color: var(--primary) !important;
  font-size: 0 !important;
  line-height: 0 !important;
  vertical-align: baseline !important;
  /* Punkt minimal nach rechts und nach oben */
  transform: translate(0.05rem, -0.3rem) !important;
}
