/* Oytel component: global header */

.oytel-header {
  min-height: 72px;
  padding-inline: clamp(16px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--oytel-surface);
  border-bottom: 1px solid var(--oytel-border);
}

.oytel-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--oytel-text);
  font-weight: 800;
  text-decoration: none;
}

.oytel-brand__mark {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 2px solid var(--oytel-primary);
  border-radius: 50%;
  color: var(--oytel-primary);
  line-height: 1;
}

.oytel-menu-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--oytel-border);
  border-radius: 50%;
  background: var(--oytel-surface);
  cursor: pointer;
  color: var(--oytel-text);
}
