/* ================================================
   KRAFTORTANALYSE — analog zu firmenanalyse.css
   Identische Struktur wie Einzelanalyse, erbt CSS aus einzelanalyse.css
   Nur Kraftortanalyse-spezifische Overrides hier.
   ================================================ */

/* Info box replacing hand uploads (shared class with Firmenanalyse) */
.astro-firma-notice {
  margin-top: 14px;
  padding: 14px;
  border-radius: 10px;
  background: var(--astro-subtle-bg);
  border: 1px solid rgba(232,201,106,0.12);
  font-size: 13px;
  color: var(--astro-text-mid);
  line-height: 1.6;
}

body.astro-light-theme .astro-firma-notice {
  border-color: rgba(201,168,76,0.1);
}

.astro-firma-notice-highlight {
  color: var(--astro-gold-star);
  font-weight: 700;
}

body.astro-light-theme .astro-firma-notice-highlight {
  color: var(--astro-accent-dark);
}

/* 6 Feature-Cards: 3x2 Grid statt 2x2 */
.astro-product-features-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
}

/* Animation delays for cards 5 and 6 */
.astro-product-feature-card:nth-child(5) { animation-delay: 0.72s; }
.astro-product-feature-card:nth-child(6) { animation-delay: 0.80s; }

/* Mobile: einspaltig */
@media (max-width: 768px) {
  .astro-product-features-grid {
    grid-template-columns: 1fr;
  }
}

/* Tablet: 2-spaltig */
@media (min-width: 769px) and (max-width: 1024px) {
  .astro-product-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
