/* ==================================================================
   Oeffentliche Infoseiten zu den Apps
   (/sicherheitsdatenblaetter/, /reinigungsplan-generator/)

   Diese Seiten duerfen in Suchmaschinen erscheinen und sind ohne
   Anmeldung lesbar. Die Apps selbst bleiben hinter der Anmeldung.

   Ergaenzt portal.css - dort stehen Farben, Schrift und die
   Grundaufteilung (Buehne links, Arbeitsflaeche rechts).
   ================================================================== */

/* portal.css gestaltet .knopf fuer Schaltflaechen. Hier ist es ein Link. */
a.knopf { text-decoration: none; }

.startknoepfe {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.startknoepfe .knopf { margin-top: 0; }

.startknoepfe__nebenlink {
  font-size: 15px;
  font-weight: 600;
  color: var(--grau);
  text-decoration: none;
}

.startknoepfe__nebenlink:hover { color: var(--marke); text-decoration: underline; text-underline-offset: 3px; }

/* ---------------- Fliesstext ---------------- */

.text { max-width: 62ch; }

.text h2 {
  margin: 48px 0 12px;
  font-family: var(--anzeige);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 27px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.text h3 {
  margin: 28px 0 6px;
  font-size: 17px;
  font-weight: 600;
}

.text p { margin: 0 0 14px; color: var(--grau); }

.text p strong { color: var(--tinte); }

.text ul {
  margin: 0 0 14px;
  padding-left: 0;
  list-style: none;
}

.text ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 26px;
  color: var(--grau);
}

.text ul li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--marke);
  opacity: 0.45;
}

.text a { text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 560px) {
  .text h2 { margin-top: 36px; }
  .startknoepfe .knopf { width: 100%; }
}
