/* =========================================================================
   UZH Strategie-Haus – Basis-Stylesheet
   Ersetzt die ursprünglichen Webflow-Dateien (webflow.css + uzh-*.webflow.css).
   Enthält nur noch, was die App tatsächlich nutzt:
   Reset, Schriften, Basis-Typografie und die wenigen genutzten Komponenten-
   Klassen. Das eigentliche Layout liegt im <style>-Block von index.html.
   ========================================================================= */

/* --- Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  /* Brand-Blau als Fallback, damit beim Laden nichts Fremdes aufblitzt */
  background-color: #0028a5;
  color: #333;
  font-family: Sourcesanspro, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

/* --- Schriften --- */
@font-face {
  font-family: Sourcesanspro;
  src: url('../fonts/SourceSansPro-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Sourcesanspro;
  src: url('../fonts/SourceSansPro-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* --- Basis-Typografie --- */
h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Sourcesanspro, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}

p {
  margin-bottom: 10px;
}

a {
  text-decoration: none;
}

strong {
  font-weight: bold;
}

/* --- Strukturelle Wrapper (Hintergründe neutral halten) --- */
.section {
  background-color: transparent;
}

/* --- Genutzte Komponenten-Klassen (Texte im blauen Panel = weiß) --- */
.heading,
.heading-2,
.rich-text-block,
.list-item {
  color: #fff;
}

.heading-2.home {
  padding-left: 0;
}

/* Seiten-Icon (oben auf Detailseiten) */
.image-6 {
  width: 80px;
}

/* Navigations-Zeile (Zurück / Home / Weiter) */
.div-block-6 {
  display: flex;
  justify-content: center;
  align-items: center;
}
