/*
 * Gemeinsame Seitenschale für Kurssuche und Anbieterbereich.
 * Zielgruppenspezifische Komponenten bleiben in den jeweiligen Stylesheets.
 */

:root {
  --container: 1312px;
}

.container {
  width: min(calc(100% - 128px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 80;
  border: 0;
  background: var(--cream);
  backdrop-filter: none;
}

.header-inner {
  min-height: 78px;
  gap: 34px;
}

.brand {
  gap: 11px;
  color: var(--petrol);
  font-size: 18px;
  font-weight: 600;
}

.brand img {
  border-radius: 11px;
}

.brand > span {
  color: var(--petrol);
  font-size: 18px;
  font-weight: 600;
}

.launch-notice,
.dashboard-preview-note {
  background: #e7f1ef;
  color: #164c52;
  font-size: 13px;
  line-height: 1.55;
}

.launch-notice {
  padding: 10px 0;
}

.launch-notice strong,
.dashboard-preview-note strong {
  font-weight: 600;
}

.dashboard-preview-note {
  padding: 9px 24px;
  text-align: center;
}

@media (max-width: 1180px) {
  .container {
    width: min(calc(100% - 64px), var(--container));
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    min-height: 72px;
    gap: 16px;
  }

  .brand,
  .brand > span {
    font-size: 16px;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }
}
