@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:ital,wght@0,600;1,500&display=swap");

/* Identité visuelle canonique : mêmes proportions que dans l'éditeur. */
.cvats-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  padding: 4px 6px;
  margin-left: -6px;
  border-radius: 6px;
  color: #12172b;
  text-decoration: none;
  line-height: 1;
}

a.cvats-brand {
  transition: background-color .15s ease;
}

a.cvats-brand:hover {
  color: #12172b;
  background: var(--bg-input, rgba(18, 23, 43, .045));
}

.cvats-brand-mark {
  position: relative;
  width: 22px;
  height: 24px;
  flex: 0 0 22px;
  border: 2px solid #12172b;
  border-radius: 5px;
  background:
    linear-gradient(#8b90a8, #8b90a8) 4px 5px / 7px 2px no-repeat,
    linear-gradient(#8b90a8, #8b90a8) 4px 10px / 10px 2px no-repeat,
    linear-gradient(#8b90a8, #8b90a8) 4px 15px / 5px 2px no-repeat;
}

.cvats-brand-mark::after {
  content: "✓";
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #2b3a8f;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  line-height: 12px;
  text-align: center;
}

.cvats-brand-text {
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .01em;
  white-space: nowrap;
}

.cvats-brand .cvats-brand-text {
  color: #12172b;
}

.cvats-brand-text em {
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
  color: #2b3a8f;
  font-style: italic;
  font-weight: 500;
}

/* L'éditeur conserve uniquement le pictogramme sur les très petits écrans
   afin de laisser de la place au nom du CV et aux actions. Même règle partout. */
@media (max-width: 480px) {
  .app-topbar .cvats-brand-text {
    display: none;
  }
}
