/* =============================================================================
   KREABOARD — DASHBOARD CRÉATEUR
   Hero + Accès rapide + Priority Actions
   ============================================================================= */

.kb-creatorDashboardRoot {
  width: 100%;
}

.kb-creatorDashboardRoot,
.kb-creatorDashboardRoot * {
  box-sizing: border-box;
}

.kb-creatorDashboard {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 30px 46px;
}

.kb-creatorDashboardHero {
  margin-bottom: 34px;
}

.kb-creatorDashboardEyebrow {
  margin: 0 0 8px;
  color: #3157ff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kb-creatorDashboardHero h1 {
  margin: 0;
  color: #0b1744;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.kb-creatorDashboardIntro {
  max-width: 720px;
  margin: 10px 0 0;
  color: #5d6b86;
  font-size: 15px;
  line-height: 1.55;
}

.kb-creatorDashboardGrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.kb-creatorDashboardSection {
  min-width: 0;
}

.kb-creatorDashboardSectionHead {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  margin-bottom: 16px;
}

.kb-creatorDashboardSectionHead h2 {
  margin: 0;

  color: #0b1744;

  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.kb-creatorDashboardShortcuts {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 10px;
}

.kb-creatorDashboardShortcut {
  position: relative;

  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto;

  gap: 5px 14px;
  align-items: center;

  width: 100%;
  padding: 15px 48px 15px 16px;
  box-sizing: border-box;

  border:
    1px solid
    rgba(49, 87, 255, 0.12);

  border-radius: 15px;

  background: #ffffff;
  color: inherit;

  font: inherit;
  text-align: left;

  cursor: pointer;

  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.kb-creatorDashboardShortcut:hover {
  border-color:
    rgba(49, 87, 255, 0.28);

  background:
    rgba(49, 87, 255, 0.045);

  transform:
    translateY(-1px);

  box-shadow:
    0 8px 20px
    rgba(49, 87, 255, 0.07);
}

.kb-creatorDashboardShortcut:focus-visible {
  outline:
    3px solid
    rgba(49, 87, 255, 0.18);

  outline-offset: 2px;
}

.kb-creatorDashboardShortcutTitle {
  grid-column: 1;

  color: #0b1744;

  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.kb-creatorDashboardShortcutDescription {
  grid-column: 1;

  color: #65728c;

  font-size: 12px;
  line-height: 1.45;
}

.kb-creatorDashboardShortcutArrow {
  position: absolute;

  top: 50%;
  right: 17px;

  color: #3157ff;

  font-size: 18px;
  font-weight: 800;

  transform:
    translateY(-50%);
}

.kb-creatorDashboardPriority {
  min-width: 0;
  width: 100%;
}

.kb-creatorDashboardPriority .kb-priorityActions {
  width: 100%;
}
