.page-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-1, 4px);
  margin-bottom: var(--space-6, 32px);
}

/* Row 1: title group + CTA */
.page-header-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.page-header .title-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-3, 12px);
}

.page-header .title-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 2px;
  border-radius: var(--radius-xs, 4px);
  background-color: var(--c-mauve-1-creme, #E5CBFD);
  overflow: hidden;
  flex: 0 0 auto;
}

.page-header .title-icon img {
  width: 16px;
  height: 16px;
}

.page-header .page-title {
  margin: 0;
  font-family: var(--font-head, "Bricolage Grotesque"), sans-serif;
  font-size: var(--fs-h3, 20px);
  font-weight: var(--fw-h3, 700);
  color: var(--c-text, #1A1F16);
  line-height: 1.2;
  white-space: nowrap;
}

/* CTA button (lime) — e.g. "Résumer / Summarize" */
.btn-summarize {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--space-2, 8px);
  flex: 0 0 auto;
  height: 33px;
  padding: var(--space-2, 8px) var(--space-3, 12px);
  border: none;
  border-radius: var(--radius-xs, 4px);
  background-color: var(--c-accent-lime, #CBFF8C);
  color: var(--c-mauve-1, #3C096C);
  font-family: var(--font-head, "Bricolage Grotesque"), sans-serif;
  font-size: var(--fs-body, 14px);
  font-weight: var(--fw-bold, 700);
  text-align: center;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.btn-summarize:hover {
  background-color: var(--c-accent-lime-hover, #BCF577);
}

.btn-summarize .summarize-icon {
  flex: 0 0 auto;
  width: 12px;
  height: 16px;
}

/* Row 2: description */
.page-description {
  margin: 0;
  width: 100%;
  font-family: var(--font-body, "Manrope"), sans-serif;
  font-size: var(--fs-body, 14px);
  font-weight: var(--fw-regular, 400);
  color: var(--c-text, #1A1F16);
  line-height: normal;
}
