/*
 * 
 *  PHP Version 8
 * 
 *  Author:               Michael Hamann [KaMi] (info@michaelhamann.org)
 *  ------
 *  Created Date:         Friday January 9th 2026
 *  Last Modified:        Friday January 9th 2026 06:54:58
 *  ------
 *  Copyright:            2024 - 2026
 *  -----------------
 * 
 */

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 16, 28, 0.65);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color__border);
}

.header__inner {
  max-width: var(--layout__max);
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.header__brand {
  display: grid;
  gap: 2px;
  min-width: 220px;
}

.header__brand__title {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.header__brand__sub {
  font-size: 12px;
  color: var(--color__muted);
}

.header__tools {
  display: flex;
  gap: 12px;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}

.header__search {
  flex: 1;
  max-width: 520px;
}

.header__actions {
  display: flex;
  gap: 10px;
}
