/* ==========================================================================
   LD2 Intern — Design System (Entwurf v2)
   29.07.2026 · Aisha
   Ein Stylesheet für alle Seiten. Menü einheitlich, ohne Mail/Drive.
   ========================================================================== */

/* --- 1. Design Tokens ------------------------------------------------- */
:root {
  --ld2-navy:        #0c1535;
  --ld2-navy-600:    #16224a;
  --ld2-navy-500:    #1e2c5c;
  --ld2-orange:      #ff7a00;
  --ld2-orange-dark: #e56d00;
  --ld2-orange-lite: #ffa14d;

  --grey-50:  #f7f8fa;
  --grey-100: #eef0f4;
  --grey-200: #e2e5eb;
  --grey-300: #cbd0da;
  --grey-500: #7b8394;
  --grey-600: #5b6373;
  --grey-800: #2b3141;

  --ok-bg:   #e8f3ec;  --ok-fg:   #1f6b3f;
  --warn-bg: #fdf2e3;  --warn-fg: #8a5a10;
  --idle-bg: #eef0f4;  --idle-fg: #5b6373;
  --crit-bg: #fbeaea;  --crit-fg: #96262a;

  --font: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;

  --r-sm: 4px;  --r-md: 6px;  --r-lg: 10px;  --r-pill: 999px;
  --shadow:    0 1px 2px rgba(12,21,53,.05), 0 1px 3px rgba(12,21,53,.04);
  --shadow-md: 0 4px 14px rgba(12,21,53,.08), 0 1px 3px rgba(12,21,53,.05);

  --sidebar-w: 232px;

  /* Bewegung — kurz, ruhig, konsistent */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --t-fast: .14s;
  --t-mid:  .28s;
  --t-slow: .9s;
}

/* --- 2. Reset ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
  color: var(--grey-800);
  background: var(--grey-50);
  -webkit-font-smoothing: antialiased;
}

/* Wer keine Animation will, kriegt keine */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* --- 3. Keyframes ------------------------------------------------------ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes growW {
  from { width: 0 !important; }
}
@keyframes growH {
  from { height: 0 !important; }
}
@keyframes shimmer {
  0%   { background-position: -420px 0; }
  100% { background-position: 420px 0; }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .45; transform: scale(.82); }
}
@keyframes ringGrow {
  from { stroke-dasharray: 0 999; }
}

/* Staffelung: Elemente kommen nacheinander rein */
.stagger > * { animation: fadeUp .5s var(--ease-out) both; }
.stagger > *:nth-child(1) { animation-delay: .04s; }
.stagger > *:nth-child(2) { animation-delay: .10s; }
.stagger > *:nth-child(3) { animation-delay: .16s; }
.stagger > *:nth-child(4) { animation-delay: .22s; }
.stagger > *:nth-child(5) { animation-delay: .28s; }
.stagger > *:nth-child(6) { animation-delay: .34s; }

/* --- 4. App-Shell ------------------------------------------------------ */
.app { display: flex; min-height: 100vh; }

/* --- 5. Sidebar (einheitlich — Mail & Drive entfernt) ----------------- */
.sidebar {
  width: var(--sidebar-w);
  flex: 0 0 var(--sidebar-w);
  background: var(--ld2-navy);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
}

.sidebar__brand {
  height: 60px;
  display: flex; align-items: center; gap: 10px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.sidebar__logo {
  font-size: 19px; font-weight: 700;
  letter-spacing: -.02em; color: #fff;
}
.sidebar__logo span { color: var(--ld2-orange); }

/* Marken-Block ist ein Link auf cloud.ld2.at (siehe ld2-menu.js).
   Das Wolken-Icon ist der sichtbare Hinweis, der Tooltip die Erklärung —
   ohne beides klickt niemand auf ein Logo. */
a.sidebar__brand { position: relative; text-decoration: none; }
a.sidebar__brand:hover { background: rgba(255,255,255,.05); }

.sidebar__cloud {
  margin-left: auto;          /* schiebt Wolke + "Intern" nach rechts */
  display: flex; align-items: center;
  color: rgba(255,255,255,.45);
  transition: color var(--t-fast) var(--ease);
}
.sidebar__cloud svg { width: 15px; height: 15px; }
a.sidebar__brand:hover .sidebar__cloud { color: var(--ld2-orange); }

/* Eigener Tooltip rechts neben der Sidebar. Geht nur, weil .sidebar kein
   overflow:hidden hat — käme das dazu, wäre der Tooltip abgeschnitten. */
a.sidebar__brand::after {
  content: attr(data-tip);
  position: absolute; left: calc(100% + 9px); top: 50%;
  transform: translateY(-50%) translateX(-3px);
  white-space: nowrap;
  background: var(--ld2-navy-600); color: #fff;
  font-size: 11.5px; font-weight: 500;
  padding: 6px 10px; border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none; z-index: 60;
  transition: opacity var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
}
a.sidebar__brand:hover::after,
a.sidebar__brand:focus-visible::after {
  opacity: 1; transform: translateY(-50%) translateX(0);
}
.sidebar__env {
  margin-left: auto;
  font-size: 9px; text-transform: uppercase; letter-spacing: .08em;
  color: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 3px; padding: 2px 5px;
}

.nav { padding: 14px 0; flex: 1; overflow-y: auto; }
.nav__group {
  font-size: 10px; text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.32);
  padding: 14px 20px 6px;
}
.nav__item {
  position: relative;
  display: flex; align-items: center; gap: 11px;
  padding: 9px 20px;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: 13.5px; font-weight: 500;
  border-left: 3px solid transparent;
  transition: background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              padding-left var(--t-fast) var(--ease);
}
.nav__item:hover {
  background: rgba(255,255,255,.05);
  color: #fff;
  padding-left: 24px;
}
.nav__item svg {
  width: 17px; height: 17px; flex: 0 0 17px; stroke-width: 1.6;
  transition: color var(--t-fast) var(--ease);
}
.nav__item:hover svg { color: var(--ld2-orange-lite); }

.nav__item--active {
  background: var(--ld2-navy-500);
  color: #fff;
  border-left-color: var(--ld2-orange);
}
.nav__item--active svg { color: var(--ld2-orange); }
.nav__item--active::after {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--ld2-orange);
  animation: growH .34s var(--ease-out) both;
}

.nav__badge {
  margin-left: auto;
  background: var(--ld2-orange);
  color: #fff;
  font-size: 10.5px; font-weight: 600;
  border-radius: var(--r-pill);
  padding: 1px 6px;
}

.sidebar__user {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 12px 20px;
  display: flex; align-items: center; gap: 10px;
}
.avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--ld2-navy-500); color: #fff;
  display: grid; place-items: center;
  font-size: 11.5px; font-weight: 600; flex: 0 0 30px;
}
.sidebar__user-name { color: #fff; font-size: 12.5px; font-weight: 500; }
.sidebar__user-role { color: rgba(255,255,255,.42); font-size: 11px; }

/* --- 6. Hauptbereich --------------------------------------------------- */
.main { flex: 1; min-width: 0; display: flex; flex-direction: column; }

.topbar {
  height: 60px;
  background: #fff;
  border-bottom: 1px solid var(--grey-200);
  display: flex; align-items: center; gap: 16px;
  padding: 0 28px;
  position: sticky; top: 0; z-index: 10;
}
.crumb { font-size: 12.5px; color: var(--grey-500); }
.crumb b { color: var(--grey-800); font-weight: 600; }
.topbar__spacer { flex: 1; }

.content { padding: 26px 28px 40px; animation: fadeIn .3s var(--ease) both; }

.page-head {
  display: flex; align-items: flex-end; gap: 16px;
  margin-bottom: 22px; flex-wrap: wrap;
  animation: fadeUp .45s var(--ease-out) both;
}
.page-title {
  font-size: 25px; font-weight: 650;
  letter-spacing: -.02em; color: var(--ld2-navy);
  margin: 0 0 2px;
}
.page-sub { font-size: 13px; color: var(--grey-500); margin: 0; }
.page-head__actions { margin-left: auto; display: flex; gap: 9px; }

/* --- 7. Buttons ------------------------------------------------------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 7px;
  height: 36px; padding: 0 15px;
  border: 1px solid transparent; border-radius: var(--r-md);
  font: inherit; font-size: 13.5px; font-weight: 550;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: background var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
}
.btn svg { width: 15px; height: 15px; stroke-width: 1.8; }
.btn--primary { background: var(--ld2-orange); color: #fff; }
.btn--primary:hover {
  background: var(--ld2-orange-dark);
  box-shadow: 0 2px 10px rgba(255,122,0,.32);
}
.btn--primary:active { transform: translateY(1px); }
.btn--ghost { background: #fff; color: var(--grey-600); border-color: var(--grey-300); }
.btn--ghost:hover { background: var(--grey-50); border-color: var(--grey-500); }
.btn--icon { width: 36px; padding: 0; justify-content: center; }

/* Ripple beim Klick */
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,.5) 10%, transparent 11%);
  background-position: 50%; background-repeat: no-repeat;
  transform: scale(10); opacity: 0;
  transition: transform .4s var(--ease), opacity .6s var(--ease);
}
.btn:active::after { transform: scale(0); opacity: .3; transition: 0s; }

/* --- 8. Suchfeld ------------------------------------------------------- */
.search { position: relative; flex: 0 1 300px; }
.search input {
  width: 100%; height: 36px;
  padding: 0 12px 0 34px;
  border: 1px solid var(--grey-300); border-radius: var(--r-md);
  font: inherit; font-size: 13.5px;
  background: #fff; color: var(--grey-800);
  transition: border-color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
}
.search input::placeholder { color: var(--grey-500); }
.search input:focus {
  outline: none; border-color: var(--ld2-orange);
  box-shadow: 0 0 0 3px rgba(255,122,0,.13);
}
.search svg {
  position: absolute; left: 11px; top: 50%; transform: translateY(-50%);
  width: 15px; height: 15px; color: var(--grey-500); stroke-width: 1.8;
  transition: color var(--t-fast) var(--ease);
}
.search input:focus + svg, .search:focus-within svg { color: var(--ld2-orange); }

/* --- 9. KPI-Karten ---------------------------------------------------- */
.kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(184px, 1fr));
  gap: 14px; margin-bottom: 22px;
}
.kpi {
  position: relative; overflow: hidden;
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: 16px 18px;
  transition: transform var(--t-mid) var(--ease-out),
              box-shadow var(--t-mid) var(--ease-out);
}
.kpi:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
/* Orange Kante fährt beim Hover ein */
.kpi::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--ld2-orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-mid) var(--ease-out);
}
.kpi:hover::before { transform: scaleX(1); }

.kpi__label {
  font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em;
  color: var(--grey-500); font-weight: 600; margin-bottom: 7px;
}
.kpi__value {
  font-size: 27px; font-weight: 650; letter-spacing: -.025em;
  color: var(--ld2-navy); line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.kpi__meta { font-size: 12px; color: var(--grey-500); margin-top: 5px; }
.trend { font-weight: 600; }
.trend--up { color: var(--ok-fg); }
.trend--down { color: var(--crit-fg); }

/* --- 10. PROGRESSBARS (orange) --------------------------------------- */
.progress {
  height: 8px;
  background: var(--grey-100);
  border-radius: var(--r-pill);
  overflow: hidden;
  position: relative;
}
.progress--slim { height: 5px; }
.progress--fat  { height: 12px; }

.progress__bar {
  height: 100%;
  background: var(--ld2-orange);
  border-radius: var(--r-pill);
  position: relative;
  /* Breite kommt per style="--val:xx%" oder inline width */
  width: var(--val, 0%);
  animation: growW 1.1s var(--ease-out) both;
  transition: width var(--t-slow) var(--ease-out);
}
/* Verlauf-Variante */
.progress__bar--grad {
  background: linear-gradient(90deg, var(--ld2-orange) 0%, var(--ld2-orange-lite) 100%);
}
/* Laufender Glanz für "in Arbeit" */
.progress__bar--live::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    transparent 0%, rgba(255,255,255,.55) 50%, transparent 100%);
  background-size: 420px 100%;
  animation: shimmer 1.6s linear infinite;
}
/* Gestreift */
.progress__bar--striped {
  background-image: linear-gradient(45deg,
    rgba(255,255,255,.22) 25%, transparent 25%, transparent 50%,
    rgba(255,255,255,.22) 50%, rgba(255,255,255,.22) 75%, transparent 75%);
  background-size: 14px 14px;
  animation: growW 1.1s var(--ease-out) both, shimmer 0s;
}
.progress__bar--navy { background: var(--ld2-navy); }

.progress-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 18px;
}
.progress-row__label {
  font-size: 13px; width: 118px; flex: 0 0 118px;
  color: var(--grey-600); font-weight: 500;
}
.progress-row__track { flex: 1; }
.progress-row__val {
  font-size: 12.5px; font-variant-numeric: tabular-nums;
  color: var(--ld2-navy); font-weight: 600;
  width: 78px; text-align: right;
}

/* Ring / Donut-Fortschritt */
.ring { display: inline-grid; place-items: center; position: relative; }
.ring svg { transform: rotate(-90deg); }
.ring__track { stroke: var(--grey-100); }
.ring__bar {
  stroke: var(--ld2-orange);
  stroke-linecap: round;
  animation: ringGrow 1.2s var(--ease-out) both;
  transition: stroke-dasharray var(--t-slow) var(--ease-out);
}
.ring__label {
  position: absolute;
  font-size: 15px; font-weight: 650; color: var(--ld2-navy);
  font-variant-numeric: tabular-nums;
}

/* Spinner */
.spinner {
  width: 16px; height: 16px;
  border: 2px solid var(--grey-200);
  border-top-color: var(--ld2-orange);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

/* Live-Punkt */
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ld2-orange);
  animation: pulseDot 1.5s var(--ease) infinite;
}

/* --- 11. Karte / Tabelle --------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: fadeUp .5s var(--ease-out) both;
}
.card__head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--grey-200);
  flex-wrap: wrap;
}
.card__title { font-size: 14.5px; font-weight: 600; color: var(--ld2-navy); margin: 0; }
.card__spacer { flex: 1; }

.filters { display: flex; gap: 7px; flex-wrap: wrap; }
.chip {
  height: 29px; padding: 0 12px;
  display: inline-flex; align-items: center;
  border: 1px solid var(--grey-300);
  background: #fff; border-radius: var(--r-pill);
  font-size: 12.5px; font-weight: 500; color: var(--grey-600);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.chip:hover { border-color: var(--ld2-orange); color: var(--ld2-orange); }
.chip--active {
  background: var(--ld2-navy); border-color: var(--ld2-navy); color: #fff;
}
.chip--active:hover { background: var(--ld2-navy-500); color: #fff; }

.table-wrap { overflow-x: auto; }
table.data { width: 100%; border-collapse: collapse; }
table.data th {
  text-align: left;
  font-size: 10.5px; text-transform: uppercase; letter-spacing: .07em;
  color: var(--grey-500); font-weight: 600;
  padding: 11px 18px;
  background: var(--grey-50);
  border-bottom: 1px solid var(--grey-200);
  white-space: nowrap;
}
table.data td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--grey-100);
  vertical-align: middle;
}
table.data tbody tr {
  animation: fadeUp .4s var(--ease-out) both;
  transition: background var(--t-fast) var(--ease);
}
table.data tbody tr:nth-child(1) { animation-delay: .02s; }
table.data tbody tr:nth-child(2) { animation-delay: .05s; }
table.data tbody tr:nth-child(3) { animation-delay: .08s; }
table.data tbody tr:nth-child(4) { animation-delay: .11s; }
table.data tbody tr:nth-child(5) { animation-delay: .14s; }
table.data tbody tr:nth-child(6) { animation-delay: .17s; }
table.data tbody tr:nth-child(7) { animation-delay: .20s; }
table.data tbody tr:nth-child(8) { animation-delay: .23s; }
table.data tbody tr:nth-child(9) { animation-delay: .26s; }
table.data tbody tr:nth-child(10){ animation-delay: .29s; }
table.data tbody tr:last-child td { border-bottom: none; }
table.data tbody tr:hover { background: var(--grey-50); }

.cell-main { font-weight: 550; color: var(--ld2-navy); }
.cell-sub { font-size: 12px; color: var(--grey-500); margin-top: 1px; }
.num { text-align: right; font-variant-numeric: tabular-nums; }
.kid { font-variant-numeric: tabular-nums; color: var(--grey-500); font-size: 12.5px; }

.pill {
  display: inline-flex; align-items: center;
  height: 21px; padding: 0 9px;
  border-radius: var(--r-pill);
  font-size: 11.5px; font-weight: 600; letter-spacing: .01em;
}
.pill--ok   { background: var(--ok-bg);   color: var(--ok-fg); }
.pill--warn { background: var(--warn-bg); color: var(--warn-fg); }
.pill--idle { background: var(--idle-bg); color: var(--idle-fg); }
.pill--crit { background: var(--crit-bg); color: var(--crit-fg); }

.row-actions { display: flex; gap: 3px; justify-content: flex-end; }
.icon-btn {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border: none; background: transparent;
  border-radius: var(--r-sm);
  color: var(--grey-500); cursor: pointer;
  transition: background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease);
}
.icon-btn:hover { background: rgba(255,122,0,.1); color: var(--ld2-orange); }
.icon-btn svg { width: 15px; height: 15px; stroke-width: 1.7; }

.card__foot {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  border-top: 1px solid var(--grey-200);
  font-size: 12.5px; color: var(--grey-500);
  flex-wrap: wrap;
}
.pager { margin-left: auto; display: flex; gap: 5px; }
.pager button {
  min-width: 30px; height: 30px;
  border: 1px solid var(--grey-300);
  background: #fff; border-radius: var(--r-sm);
  font: inherit; font-size: 12.5px; color: var(--grey-600);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.pager button:hover { background: var(--grey-50); border-color: var(--ld2-orange); color: var(--ld2-orange); }
.pager button[aria-current="page"] {
  background: var(--ld2-navy); border-color: var(--ld2-navy);
  color: #fff; font-weight: 600;
}

/* --- 12. Balkendiagramm ---------------------------------------------- */
.chart { display: flex; align-items: flex-end; gap: 14px; height: 190px; padding: 18px; }
.bar-col {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 8px; height: 100%; justify-content: flex-end;
}
.bar {
  width: 100%; max-width: 42px;
  background: var(--ld2-navy);
  border-radius: 3px 3px 0 0;
  animation: growH .9s var(--ease-out) both;
  transition: background var(--t-fast) var(--ease), filter var(--t-fast) var(--ease);
  cursor: pointer;
}
.bar:hover { filter: brightness(1.25); }
.bar--accent { background: var(--ld2-orange); }
.bar-col:nth-child(1) .bar { animation-delay: .05s; }
.bar-col:nth-child(2) .bar { animation-delay: .11s; }
.bar-col:nth-child(3) .bar { animation-delay: .17s; }
.bar-col:nth-child(4) .bar { animation-delay: .23s; }
.bar-col:nth-child(5) .bar { animation-delay: .29s; }
.bar-col:nth-child(6) .bar { animation-delay: .35s; }
.bar-col:nth-child(7) .bar { animation-delay: .41s; }
.bar-label { font-size: 11.5px; color: var(--grey-500); font-weight: 500; }

/* --- 13. Listen ------------------------------------------------------- */
.list { padding: 4px 0; }
.list__row {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 18px;
  border-bottom: 1px solid var(--grey-100);
  transition: background var(--t-fast) var(--ease);
}
.list__row:hover { background: var(--grey-50); }
.list__row:last-child { border-bottom: none; }
.list__dot { width: 7px; height: 7px; border-radius: 50%; flex: 0 0 7px; }
.list__body { min-width: 0; flex: 1; }
.list__title { font-size: 13.5px; font-weight: 550; color: var(--ld2-navy); }
.list__meta { font-size: 12px; color: var(--grey-500); margin-top: 1px; }
.list__time {
  font-size: 11.5px; color: var(--grey-500);
  white-space: nowrap; font-variant-numeric: tabular-nums;
}

/* --- 14. Grid-Helfer -------------------------------------------------- */
.grid-2 { display: grid; grid-template-columns: 1.6fr 1fr; gap: 16px; align-items: start; }
.grid-2--even { grid-template-columns: 1fr 1fr; }
@media (max-width: 1000px) { .grid-2, .grid-2--even { grid-template-columns: 1fr; } }

/* --- 15. Responsive --------------------------------------------------- */
.burger { display: none; }
@media (max-width: 900px) {
  .sidebar {
    position: fixed; left: -100%; z-index: 50;
    transition: left var(--t-mid) var(--ease);
    box-shadow: var(--shadow-md);
  }
  .sidebar--open { left: 0; }
  .content, .topbar { padding-left: 16px; padding-right: 16px; }
  .page-head__actions { margin-left: 0; width: 100%; }
  .burger { display: inline-flex; }
}
