/*
    Design "2a — Werkstatt (hell)".
    Heller Header, Farbkante als Leitsystem, kein dunkler Bereich.

    Aufbau:
      1. Tokens (:root)          — Farben, Schrift, Linien
      2. Global                  — Grundfläche, Header, Footer: gilt portalweit
      3. Startseite (.ee-home)   — nur die Landingpage

    Wird nach style.css geladen, überschreibt also gezielt einzelne Regeln.
    Compile with:  npx -p less@4 lessc theme.less theme.css
*/
:root {
  /* Schrift — Systemstack, damit keine externen Webfonts geladen werden
     (DSGVO / keine Google-Fonts-Requests). Sollen die Originalschriften
     (Plus Jakarta Sans / Instrument Serif / JetBrains Mono) verwendet
     werden, genügt es, sie selbst zu hosten und hier zu ergänzen. */
  --ee-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ee-serif: Georgia, "Times New Roman", serif;
  --ee-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Courier New", monospace;
  /* Flächen */
  --ee-bg: #fffdf9;
  --ee-surface: #f4efe6;
  --ee-band: #fae9ca;
  --ee-band: oklch(0.94 0.045 84);
  /* Text */
  --ee-ink: #1d1a16;
  --ee-muted: #5c554b;
  --ee-faint: #8a8175;
  /* Linien */
  --ee-line-soft: #ece5d9;
  --ee-line: #e7e0d4;
  --ee-line-strong: #ddd4c4;
  /* Leitfarben (Farbkante, Schrittnummern, Kategorien) */
  --ee-c1: #e24947;
  --ee-c1: oklch(0.62 0.19 25);
  --ee-c2: #f5ba26;
  --ee-c2: oklch(0.82 0.16 84);
  --ee-c3: #269e5f;
  --ee-c3: oklch(0.62 0.14 155);
  --ee-c4: #1570d1;
  --ee-c4: oklch(0.55 0.17 255);
}
/* ======================================================== 2. GLOBAL ===== */
/*  Gilt auf jeder Seite des Portals.                                       */
/*  Bootstrap wird über seine eigenen Variablen umgefärbt statt über
    Einzelselektoren — so ziehen Karten, Dropdowns, Tabellen usw. mit. */
:root {
  --bs-body-font-family: var(--ee-sans);
  --bs-body-color: #1d1a16;
  --bs-body-color-rgb: 29, 26, 22;
  --bs-body-bg: #fffdf9;
  --bs-body-bg-rgb: 255, 253, 249;
  --bs-emphasis-color: #1d1a16;
  --bs-emphasis-color-rgb: 29, 26, 22;
  --bs-secondary-bg: #f4efe6;
  --bs-tertiary-bg: #faf6ef;
  --bs-border-color: #e7e0d4;
  --bs-heading-color: #1d1a16;
}
/* Grundfläche: warmes Weiß statt reinem Weiß — sonst steht der Header als
   weißer Block auf der getönten Seite. */
body {
  background-color: var(--ee-bg);
  color: var(--ee-ink);
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
}
header {
  background-color: var(--ee-bg);
  border-bottom: 1.5px solid var(--ee-line-soft);
}
/* --- Links: das Blau der Farbkante statt Bootstrap-Blau ----------------- */
:root {
  --bs-link-color: #1570d1;
  --bs-link-color-rgb: 21, 112, 209;
  --bs-link-hover-color: #10589f;
  --bs-link-hover-color-rgb: 16, 88, 159;
}
/* --- Buttons ------------------------------------------------------------ */
.btn {
  --bs-btn-border-radius: 9px;
  --bs-btn-font-weight: 700;
  --bs-btn-border-width: 1.5px;
  --bs-btn-focus-shadow-rgb: 29, 26, 22;
}
.btn-sm {
  --bs-btn-border-radius: 7px;
}
.btn-lg {
  --bs-btn-border-radius: 11px;
}
/* Primäraktion = Tinte, wie im Entwurf */
.btn-primary,
.btn-dark {
  --bs-btn-bg: #1d1a16;
  --bs-btn-border-color: #1d1a16;
  --bs-btn-color: #fffdf9;
  --bs-btn-hover-bg: #322c24;
  --bs-btn-hover-border-color: #322c24;
  --bs-btn-hover-color: #fffdf9;
  --bs-btn-active-bg: #453d32;
  --bs-btn-active-border-color: #453d32;
  --bs-btn-active-color: #fffdf9;
  --bs-btn-disabled-bg: #a8a196;
  --bs-btn-disabled-border-color: #a8a196;
  --bs-btn-disabled-color: #fffdf9;
}
.btn-outline-primary {
  --bs-btn-color: #1d1a16;
  --bs-btn-border-color: #1d1a16;
  --bs-btn-hover-bg: #1d1a16;
  --bs-btn-hover-border-color: #1d1a16;
  --bs-btn-hover-color: #fffdf9;
  --bs-btn-active-bg: #1d1a16;
  --bs-btn-active-border-color: #1d1a16;
  --bs-btn-active-color: #fffdf9;
  --bs-btn-disabled-color: #a8a196;
  --bs-btn-disabled-border-color: #ddd4c4;
}
/* Zurückhaltende Aktionen (in Listen und Tabellen der häufigste Fall) */
.btn-secondary,
.btn-light,
.btn-outline-secondary {
  --bs-btn-bg: transparent;
  --bs-btn-border-color: #ddd4c4;
  --bs-btn-color: #1d1a16;
  --bs-btn-hover-bg: #f4efe6;
  --bs-btn-hover-border-color: #ddd4c4;
  --bs-btn-hover-color: #1d1a16;
  --bs-btn-active-bg: #ece3d5;
  --bs-btn-active-border-color: #ddd4c4;
  --bs-btn-active-color: #1d1a16;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ece5d9;
  --bs-btn-disabled-color: #a8a196;
}
/* Semantische Aktionen auf die Leitfarben ziehen */
.btn-success {
  --bs-btn-bg: #269e5f;
  --bs-btn-border-color: #269e5f;
  --bs-btn-hover-bg: #1f8450;
  --bs-btn-hover-border-color: #1f8450;
  --bs-btn-active-bg: #1f8450;
  --bs-btn-active-border-color: #1f8450;
}
.btn-danger,
.btn-outline-danger {
  --bs-btn-hover-bg: #c93a38;
  --bs-btn-hover-border-color: #c93a38;
  --bs-btn-active-bg: #c93a38;
  --bs-btn-active-border-color: #c93a38;
}
.btn-danger {
  --bs-btn-bg: #e24947;
  --bs-btn-border-color: #e24947;
}
.btn-outline-danger {
  --bs-btn-color: #c93a38;
  --bs-btn-border-color: #e24947;
}
.btn-warning {
  --bs-btn-bg: #f5ba26;
  --bs-btn-border-color: #f5ba26;
  --bs-btn-color: #1d1a16;
  --bs-btn-hover-bg: #e0a716;
  --bs-btn-hover-border-color: #e0a716;
  --bs-btn-hover-color: #1d1a16;
  --bs-btn-active-bg: #e0a716;
  --bs-btn-active-border-color: #e0a716;
  --bs-btn-active-color: #1d1a16;
}
/* --- Formularfelder ----------------------------------------------------- */
.form-control,
.form-select {
  border: 1.5px solid var(--ee-line-strong);
  border-radius: 9px;
  background-color: var(--ee-bg);
  color: var(--ee-ink);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--ee-ink);
  box-shadow: 0 0 0 3px rgba(29, 26, 22, 0.09);
  background-color: var(--ee-bg);
  color: var(--ee-ink);
}
.form-control::placeholder,
.form-select::placeholder {
  color: var(--ee-faint);
}
.form-control:disabled,
.form-select:disabled {
  background-color: var(--ee-surface);
  color: var(--ee-muted);
}
.form-control-sm,
.form-select-sm {
  border-radius: 7px;
}
.form-label {
  font-weight: 600;
  color: var(--ee-muted);
}
.form-check-input {
  border: 1.5px solid var(--ee-line-strong);
}
.form-check-input:checked {
  background-color: var(--ee-ink);
  border-color: var(--ee-ink);
}
.form-check-input:focus {
  border-color: var(--ee-ink);
  box-shadow: 0 0 0 3px rgba(29, 26, 22, 0.09);
}
.input-group-text {
  background-color: var(--ee-surface);
  border: 1.5px solid var(--ee-line-strong);
  color: var(--ee-muted);
}
/* --- Navigation --------------------------------------------------------- */
header nav .nav-link {
  font-weight: 600;
  color: var(--ee-muted);
}
header nav .nav-link:hover,
header nav .nav-link:focus {
  color: var(--ee-ink);
}
.navbar-toggler {
  border: 1.5px solid var(--ee-line-strong);
  border-radius: 9px;
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(29, 26, 22, 0.09);
}
.dropdown-menu {
  --bs-dropdown-border-color: var(--ee-line);
  --bs-dropdown-border-width: 1.5px;
  --bs-dropdown-border-radius: 12px;
  --bs-dropdown-bg: var(--ee-bg);
  --bs-dropdown-link-color: var(--ee-ink);
  --bs-dropdown-link-hover-bg: var(--ee-surface);
  --bs-dropdown-link-hover-color: var(--ee-ink);
  box-shadow: 0 12px 28px rgba(30, 28, 24, 0.1);
}
.breadcrumb {
  --bs-breadcrumb-divider-color: var(--ee-faint);
  --bs-breadcrumb-item-active-color: var(--ee-muted);
  font-size: 14px;
  padding-top: 14px;
}
/* --- Seitentitel -------------------------------------------------------- */
.page-title {
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.6em;
}
/* --- Karten ------------------------------------------------------------- */
.card {
  --bs-card-border-color: var(--ee-line);
  --bs-card-border-radius: 16px;
  --bs-card-inner-border-radius: 15px;
  --bs-card-bg: var(--ee-bg);
  border-width: 1.5px;
}
.card-header,
.card-footer {
  background-color: var(--ee-surface);
  border-color: var(--ee-line);
}
/* --- Hinweise ----------------------------------------------------------- */
.alert {
  --bs-alert-border-radius: 12px;
  border-width: 1.5px;
}
.alert-warning {
  --bs-alert-bg: #fdf3dd;
  --bs-alert-border-color: #f2dfae;
  --bs-alert-color: #6b4f0d;
}
.alert-info {
  --bs-alert-bg: #e7f0fb;
  --bs-alert-border-color: #c3d9f4;
  --bs-alert-color: #124e8f;
}
.alert-success {
  --bs-alert-bg: #e4f4ea;
  --bs-alert-border-color: #b9e2c9;
  --bs-alert-color: #14663b;
}
.alert-danger {
  --bs-alert-bg: #fbe9e8;
  --bs-alert-border-color: #f3c5c4;
  --bs-alert-color: #8f2b2a;
}
.alert-light {
  --bs-alert-bg: var(--ee-surface);
  --bs-alert-border-color: var(--ee-line);
  --bs-alert-color: var(--ee-ink);
}
/* --- Tabellen ----------------------------------------------------------- */
.table {
  --bs-table-bg: transparent;
  --bs-table-border-color: var(--ee-line);
  --bs-table-striped-bg: #faf6ef;
  --bs-table-hover-bg: var(--ee-surface);
  --bs-table-color: var(--ee-ink);
}
.table > thead th {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ee-faint);
  border-bottom-width: 1.5px;
}
/* --- Abzeichen ---------------------------------------------------------- */
.badge {
  border-radius: 5px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
/* --- Footer ------------------------------------------------------------- */
footer.row {
  border-top: 1.5px solid var(--ee-line) !important;
}
footer.row .nav-link {
  font-weight: 500;
}
/* Farbkante über der Navigation — Leitsystem der Seite. */
.ee-colorbar {
  display: flex;
  height: 5px;
  margin: 0 calc(var(--bs-gutter-x, 1.5rem) * -0.5);
}
.ee-colorbar span {
  flex: 1;
}
.ee-colorbar span:nth-child(1) {
  background: var(--ee-c1);
}
.ee-colorbar span:nth-child(2) {
  background: var(--ee-c2);
}
.ee-colorbar span:nth-child(3) {
  background: var(--ee-c3);
}
.ee-colorbar span:nth-child(4) {
  background: var(--ee-c4);
}
/* --- Teilnahme-Status (beantragt / bestätigt / abgelehnt) --------------- */
/*  Einheitliche Statusfarben auf den Leitfarben — statt Bootstrap-Blau/-Grün. */
:root {
  --ee-status-applied: var(--ee-c4);
  --ee-status-confirmed: var(--ee-c3);
  --ee-status-rejected: var(--ee-c1);
}
.btn-status-applied {
  --bs-btn-bg: #1570d1;
  --bs-btn-border-color: #1570d1;
  --bs-btn-color: #fffdf9;
  --bs-btn-hover-bg: #10589f;
  --bs-btn-hover-border-color: #10589f;
  --bs-btn-hover-color: #fffdf9;
  --bs-btn-active-bg: #10589f;
  --bs-btn-active-border-color: #10589f;
  --bs-btn-active-color: #fffdf9;
}
.bg-status-applied {
  background-color: var(--ee-status-applied);
}
.bg-status-confirmed {
  background-color: var(--ee-status-confirmed);
}
.bg-status-rejected {
  background-color: var(--ee-status-rejected);
}
.fragment_color-legend .color-rect {
  border-radius: 4px;
}
/* --- DataTables --------------------------------------------------------- */
/*  Suchfeld, Zeilenanzahl, Pagination und SearchBuilder in der Formsprache
    der übrigen Bedienelemente.                                             */
div.dt-container .dt-search input,
div.dt-container .dt-length select,
div.dt-container .dt-input {
  border: 1.5px solid var(--ee-line-strong);
  border-radius: 8px;
  background-color: var(--ee-bg);
  color: var(--ee-ink);
  padding: 5px 10px;
}
div.dt-container .dt-search input:focus,
div.dt-container .dt-length select:focus,
div.dt-container .dt-input:focus {
  outline: none;
  border-color: var(--ee-ink);
  box-shadow: 0 0 0 3px rgba(29, 26, 22, 0.09);
}
div.dt-container .dt-search label,
div.dt-container .dt-length label,
div.dt-container .dt-info {
  color: var(--ee-muted);
}
div.dt-container .dt-paging .dt-paging-button {
  border-radius: 8px;
  color: var(--ee-muted);
  /* DataTables setzt color:inherit !important — daher hier ebenso. */
}
div.dt-container .dt-paging .dt-paging-button:hover:not(.disabled):not(.current) {
  background: var(--ee-surface);
  border-color: var(--ee-line-strong);
  color: var(--ee-ink);
}
div.dt-container .dt-paging .dt-paging-button.current {
  background: var(--ee-ink);
  border-color: var(--ee-ink);
  color: var(--ee-bg) !important;
}
div.dt-container .dt-paging .dt-paging-button.current:hover {
  background: var(--ee-ink);
  border-color: var(--ee-ink);
  color: var(--ee-bg) !important;
}
.dtsb-searchBuilder .dtsb-add,
.dtsb-searchBuilder .dtsb-clearAll,
.dtsb-searchBuilder .dtsb-delete,
.dtsb-searchBuilder .dtsb-left,
.dtsb-searchBuilder .dtsb-right,
.dtsb-searchBuilder .dtsb-logic {
  border: 1.5px solid var(--ee-line-strong) !important;
  border-radius: 8px !important;
  background: transparent !important;
  color: var(--ee-ink) !important;
}
.dtsb-searchBuilder .dtsb-add:hover,
.dtsb-searchBuilder .dtsb-clearAll:hover,
.dtsb-searchBuilder .dtsb-delete:hover,
.dtsb-searchBuilder .dtsb-left:hover,
.dtsb-searchBuilder .dtsb-right:hover,
.dtsb-searchBuilder .dtsb-logic:hover {
  background: var(--ee-surface) !important;
}
.dtsb-searchBuilder .dtsb-title {
  color: var(--ee-muted);
}
/* --- Admin-Übersicht (Kachelraster) ------------------------------------- */
.ee-admin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}
@media (max-width: 991.98px) {
  .ee-admin-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .ee-admin-grid {
    grid-template-columns: 1fr;
  }
}
a.ee-admin-tile {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--ee-surface);
  border-radius: 14px;
  padding: 18px 20px;
  text-decoration: none;
  color: var(--ee-ink);
  transition: transform 120ms ease, background-color 120ms ease;
}
a.ee-admin-tile:hover,
a.ee-admin-tile:focus {
  color: var(--ee-ink);
  background: #efe8db;
  transform: translateY(-2px);
}
a.ee-admin-tile .bi {
  font-size: 22px;
  line-height: 1;
  margin-top: 2px;
  color: var(--ee-muted);
}
.ee-admin-tile__title {
  font-weight: 700;
  letter-spacing: -0.01em;
}
.ee-admin-tile__text {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ee-muted);
}
/* Jede vierte Kachel bekommt eine Leitfarbe fürs Icon — ruhiger Rhythmus. */
.ee-admin-grid li:nth-child(4n+1) .ee-admin-tile .bi {
  color: var(--ee-c1);
}
.ee-admin-grid li:nth-child(4n+2) .ee-admin-tile .bi {
  color: var(--ee-c4);
}
.ee-admin-grid li:nth-child(4n+3) .ee-admin-tile .bi {
  color: var(--ee-c3);
}
.ee-admin-grid li:nth-child(4n+4) .ee-admin-tile .bi {
  color: #c78f13;
}
/* --- Filterleiste (Listen-Seiten) --------------------------------------- */
.ee-filterbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: flex-end;
  margin-bottom: 16px;
}
.ee-filterbar .ee-filterbar__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 200px;
  flex: 1 1 200px;
  max-width: 340px;
}
.ee-filterbar label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ee-faint);
  margin: 0;
}
@media (max-width: 575.98px) {
  .ee-filterbar .ee-filterbar__field {
    max-width: none;
    flex-basis: 100%;
  }
}
/* --- Profil-Hero -------------------------------------------------------- */
/*  Warme Fläche statt kühlem bg-light.                                     */
.ee-hero-panel {
  background-color: var(--ee-surface) !important;
  border-radius: 14px;
}
/* --- Werkzeugleisten über Listen ---------------------------------------- */
.options-highlight-box {
  border: 1.5px solid var(--ee-line);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}
/* --- Abmelden / kleine Bestätigungsseiten ------------------------------- */
.ee-confirm-card {
  max-width: 460px;
  border: 1.5px solid var(--ee-line);
  border-radius: 16px;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ee-confirm-card p {
  margin: 0;
  color: var(--ee-muted);
}
/* --- Formulare: Lesebreite begrenzen ------------------------------------ */
/*  Für reine Formularseiten; Tabellenseiten bleiben volle Breite.          */
.ee-form-narrow {
  max-width: 680px;
}
/* ==================================================== 3. STARTSEITE ===== */
.ee-home {
  color: var(--ee-ink);
}
.ee-home .ee-mono {
  font-family: var(--ee-mono);
}
.ee-home .ee-accent {
  font-family: var(--ee-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.ee-home p {
  margin: 0;
}
/* Inhaltsbreite: 1280px Entwurfsbreite + 52px Innenabstand. */
.ee-shell {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 52px);
  padding-right: clamp(20px, 4vw, 52px);
}
.ee-eyebrow {
  font-family: var(--ee-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ee-faint);
}
.ee-welcome {
  padding-top: 22px;
  font-size: 15px;
  color: var(--ee-muted);
}
.ee-welcome a {
  color: var(--ee-ink);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1.5px solid var(--ee-line-strong);
}
/* --------------------------------------------------------------- buttons */
.ee-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  padding: 16px 26px;
  border-radius: 9px;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}
.ee-btn--ink {
  background: var(--ee-ink);
  color: var(--ee-bg);
}
.ee-btn--ink:hover,
.ee-btn--ink:focus {
  background: #322c24;
  color: var(--ee-bg);
}
.ee-btn--ghost {
  color: var(--ee-ink);
  border-color: var(--ee-line-strong);
}
.ee-btn--ghost:hover,
.ee-btn--ghost:focus {
  color: var(--ee-ink);
  background: var(--ee-surface);
}
.ee-link-arrow {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ee-ink);
  text-decoration: none;
  border-bottom: 2px solid var(--ee-ink);
  padding-bottom: 2px;
}
.ee-link-arrow:hover,
.ee-link-arrow:focus {
  color: var(--ee-muted);
  border-bottom-color: var(--ee-muted);
}
/* ------------------------------------------------------------------ hero */
.ee-hero {
  padding-top: 72px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.ee-hero__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ee-display {
  font-size: clamp(44px, 5.4vw, 70px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-wrap: balance;
  margin: 0;
}
.ee-lead {
  font-size: 20px;
  line-height: 1.55;
  color: var(--ee-muted);
  max-width: 500px;
  text-wrap: pretty;
}
.ee-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}
.ee-hero__media {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.ee-photo {
  grid-column: span 2;
  position: relative;
  aspect-ratio: 16 / 8;
  border-radius: 14px;
  overflow: hidden;
  background: var(--ee-surface);
}
.ee-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ee-photo__cap {
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-family: var(--ee-mono);
  font-size: 12px;
  color: #7d746a;
  background: var(--ee-bg);
  padding: 6px 10px;
  border-radius: 5px;
}
.ee-tile {
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}
.ee-tile--amber {
  background: var(--ee-c2);
}
.ee-tile--surface {
  background: var(--ee-surface);
}
a.ee-tile:hover,
a.ee-tile:focus {
  color: inherit;
  filter: brightness(0.97);
}
.ee-tile__num {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.ee-tile__label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(29, 26, 22, 0.67);
}
.ee-tile__title {
  font-size: 16px;
  font-weight: 700;
}
.ee-tile__text {
  font-size: 13px;
  line-height: 1.5;
  color: #7d746a;
}
/* ----------------------------------------------------------------- steps */
.ee-steps {
  padding-bottom: 68px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ee-step {
  background: var(--ee-surface);
  border-radius: 16px;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ee-step__num {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
}
.ee-step:nth-child(1) .ee-step__num {
  background: var(--ee-c1);
}
.ee-step:nth-child(2) .ee-step__num {
  background: var(--ee-c4);
}
.ee-step:nth-child(3) .ee-step__num {
  background: var(--ee-c3);
}
.ee-step__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0;
}
.ee-step__text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ee-muted);
  text-wrap: pretty;
}
/* ------------------------------------------------------------ beispiele */
.ee-band {
  background: var(--ee-band);
  padding-top: 68px;
  padding-bottom: 68px;
}
.ee-band__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.ee-band__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}
.ee-section-title {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
}
.ee-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ee-card {
  background: var(--ee-bg);
  border-radius: 16px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 150ms ease;
}
.ee-card:hover,
.ee-card:focus {
  color: inherit;
  transform: translateY(-2px);
}
.ee-card img {
  width: 100%;
  height: 146px;
  object-fit: cover;
  display: block;
}
.ee-card__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ee-card__meta {
  display: flex;
  gap: 8px;
  align-items: center;
}
.ee-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 5px;
  color: var(--ee-bg);
}
.ee-tag--c1 {
  background: var(--ee-c1);
}
.ee-tag--c3 {
  background: var(--ee-c3);
}
.ee-tag--c4 {
  background: var(--ee-c4);
}
.ee-card__title {
  font-size: 19px;
  font-weight: 700;
  margin: 0;
}
.ee-card__text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ee-muted);
}
/* ---------------------------------------------------------------- panels */
.ee-note {
  padding-top: 48px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ee-muted);
  max-width: 820px;
  text-wrap: pretty;
}
.ee-note a {
  color: var(--ee-ink);
}
.ee-split {
  padding-top: 28px;
  padding-bottom: 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ee-panel {
  border: 1.5px solid var(--ee-line);
  border-radius: 16px;
  padding: 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ee-panel__title {
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}
.ee-panel__text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ee-muted);
  text-wrap: pretty;
}
.ee-panel__list {
  margin: 0;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ee-muted);
}
.ee-panel__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 4px;
}
/* ------------------------------------------------------------ responsive */
@media (max-width: 991.98px) {
  .ee-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 40px;
    padding-bottom: 36px;
  }
  .ee-steps,
  .ee-cards,
  .ee-split {
    grid-template-columns: 1fr;
  }
  .ee-steps {
    padding-bottom: 40px;
  }
  .ee-band {
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .ee-split {
    padding-bottom: 40px;
  }
  .ee-lead {
    font-size: 17px;
  }
  .ee-panel {
    padding: 26px 24px;
  }
}
@media (max-width: 575.98px) {
  .ee-actions .ee-btn {
    flex: 1 1 100%;
    text-align: center;
  }
  .ee-hero__media {
    gap: 12px;
  }
  .ee-tile {
    padding: 18px;
  }
  .ee-tile__num {
    font-size: 32px;
  }
}
