.example-page {
  --uif-color-primary: #0b72bd;
  --uif-color-success: #00a88f;
  --uif-color-warning: #d99a00;
  --uif-color-danger: #df3158;
  --uif-color-info: #2f80c4;
  --uif-chart-1: #0b72bd;
  --uif-chart-2: #00a88f;
  --uif-chart-3: #e4a700;
  --uif-chart-4: #df3158;
  --uif-chart-5: #7c3aed;
  --uif-chart-6: #0f766e;
  --uif-chart-7: #475467;
  --uif-chart-8: #d9468f;
  --uif-chart-grid: #e7eaee;
  --uif-chart-axis: #667085;
  --uif-chart-label: #667085;
  margin: 0;
  background: #f4f5f7;
  color: #1f2933;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

.example-page *,
.example-page *::before,
.example-page *::after {
  box-sizing: border-box;
}

.example-shell {
  min-height: 100dvh;
  padding: 1.25rem;
  background:
    linear-gradient(180deg, rgba(11, 114, 189, 0.08), transparent 18rem),
    #f4f5f7;
}

.example-frame {
  width: min(100%, 86rem);
  margin-inline: auto;
}

.example-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.75rem;
  margin-bottom: 1rem;
}

.example-brand,
.example-actions,
.example-tabs,
.example-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.example-brand {
  color: inherit;
  text-decoration: none;
}

.example-brand strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.15;
}

.example-brand span {
  display: block;
  color: #6b7280;
  font-size: 0.78rem;
}

.example-mark,
.example-brand-mark {
  width: 2rem;
  height: 2rem;
}

.example-mark {
  display: grid;
  place-items: center;
  border-radius: 0.6rem;
  background: #0b72bd;
  color: #fff;
  font-weight: 800;
}

.example-brand-mark {
  display: inline-grid;
  place-items: center;
  color: #00b696;
}

.example-brand-mark .uif-icon {
  width: 100%;
  height: 100%;
}

.example-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
  padding: 1.25rem 0 1rem;
}

.example-eyebrow {
  margin-bottom: 0.45rem;
  color: #6b7280;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.example-hero h1 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.example-hero p {
  max-width: 47rem;
  margin: 0.55rem 0 0;
  color: #667085;
  font-size: 1rem;
  line-height: 1.55;
}

.example-meta {
  justify-content: flex-end;
}

.example-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  min-height: 2rem;
  padding: 0.25rem 0.7rem;
  border: 1px solid #dfe3e8;
  border-radius: 999px;
  background: #fff;
  color: #4b5563;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.example-pill.is-primary {
  border-color: #0b72bd;
  background: #0b72bd;
  color: #fff;
}

.example-tabs {
  position: sticky;
  top: 0;
  z-index: 5;
  margin: 0 0 1rem;
  padding: 0.5rem;
  border: 1px solid #dfe3e8;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.06);
  backdrop-filter: blur(12px);
}

.example-tabs a {
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 0.5rem;
  color: #4b5563;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.example-tabs a[aria-current="page"],
.example-tabs a:hover {
  background: #e7f1fb;
  color: #0b72bd;
}

.chart-workbench {
  margin: 0 0 1rem;
  border: 1px solid #dfe3e8;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  overflow: hidden;
}

.chart-workbench-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid #eef1f4;
}

.chart-workbench-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.chart-workbench-head h2,
.chart-workbench-head p {
  margin: 0;
}

.chart-workbench-head h2 {
  color: #20252d;
  font-size: 1.2rem;
  line-height: 1.2;
}

.chart-workbench-head p {
  max-width: 44rem;
  margin-top: 0.35rem;
  color: #667085;
  font-size: 0.92rem;
  line-height: 1.45;
}

.chart-workbench-grid {
  display: grid;
  grid-template-columns: minmax(14rem, 0.75fr) minmax(0, 1.15fr) minmax(18rem, 1fr);
  gap: 1rem;
  padding: 1rem;
}

.chart-options {
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

.chart-options label {
  display: grid;
  gap: 0.35rem;
  color: #344054;
  font-size: 0.82rem;
  font-weight: 750;
}

.chart-options select {
  min-height: 2.35rem;
  padding: 0.35rem 0.55rem;
  border: 1px solid #dfe3e8;
  border-radius: 0.55rem;
  background: #fff;
  color: #20252d;
  font: inherit;
}

.chart-option-checks {
  display: grid;
  gap: 0.45rem;
  padding-top: 0.25rem;
}

.chart-option-checks label {
  grid-template-columns: auto 1fr;
  align-items: center;
  font-weight: 650;
}

.chart-preview-panel {
  display: grid;
  align-items: center;
  gap: 0.75rem;
  min-height: 16rem;
  padding: 0.75rem;
  border: 1px solid #e7eaee;
  border-radius: 0.65rem;
  background: #f8fbfe;
}

.chart-drilldown-panel {
  display: grid;
  gap: 0.2rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid #d8e9f7;
  border-radius: 0.55rem;
  background: #fff;
  color: #667085;
  font-size: 0.8rem;
}

.chart-drilldown-panel strong {
  color: #20252d;
  font-size: 0.86rem;
}

.chart-preview-panel [data-uif="chart"] {
  min-width: 0;
}

.chart-code-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 16rem;
  border: 1px solid #e7eaee;
  border-radius: 0.65rem;
  overflow: hidden;
}

.chart-code-head,
.chart-card-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chart-code-head {
  justify-content: space-between;
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid #e7eaee;
  background: #f8fafc;
}

.chart-code-panel textarea {
  width: 100%;
  min-height: 12rem;
  padding: 0.75rem;
  border: 0;
  resize: vertical;
  background: #0f172a;
  color: #dbeafe;
  font: 0.78rem/1.5 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.chart-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2rem;
  padding: 0.35rem 0.58rem;
  border: 1px solid #dfe3e8;
  border-radius: 0.5rem;
  background: #fff;
  color: #4b5563;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 750;
  white-space: nowrap;
  cursor: pointer;
}

.chart-copy:hover,
.chart-copy:focus {
  border-color: #0b72bd;
  color: #0b72bd;
}

.chart-copy.is-primary {
  border-color: #0b72bd;
  background: #0b72bd;
  color: #fff;
}

.chart-copy.is-copied {
  border-color: #bfeee5;
  background: #e7faf6;
  color: #087e6d;
}

.chart-copy .uif-icon {
  width: 1rem;
  height: 1rem;
}

.example-grid,
.example-chart-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.example-card,
.example-chart-card {
  min-width: 0;
  border: 1px solid #dfe3e8;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.example-chart-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 17.5rem;
  padding: 0;
  overflow: hidden;
}

.example-chart-card h2 {
  margin: 0;
  padding: 1rem 1rem 0.25rem;
  color: #20252d;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 750;
}

.example-chart-card [data-uif="chart"],
.example-chart-card .uif-stat {
  align-self: stretch;
  padding: 0.75rem 1rem 1rem;
}

.example-chart-card .uif-chart-svg {
  width: 100%;
  min-height: 11.5rem;
}

.example-chart-card .uif-chart-axis-label,
.example-chart-card .uif-chart-svg text {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.example-chart-card .uif-chart-legend {
  padding-inline: 1rem;
  padding-bottom: 0.85rem;
}

.chart-card-actions {
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  border-top: 1px solid #eef1f4;
  background: #fbfcfd;
}

.example-chart-card.is-compact {
  --uif-chart-1: #00a88f;
  min-height: 12.5rem;
}

.example-chart-card.is-categorical {
  --uif-chart-1: #0b72bd;
  --uif-chart-2: #00a88f;
  --uif-chart-3: #e4a700;
  --uif-chart-4: #df3158;
  --uif-chart-5: #7c3aed;
}

.example-chart-card.is-wide {
  grid-column: span 2;
}

.example-chart-card.is-operational {
  --uif-chart-1: #00a88f;
  --uif-chart-2: #0b72bd;
  --uif-chart-3: #e4a700;
  --uif-chart-4: #df3158;
}

.example-chart-card.is-statistical {
  --uif-chart-1: #2f80c4;
  --uif-chart-2: #00a88f;
  --uif-chart-3: #e4a700;
  --uif-color-danger: #c43d50;
  border-color: #d8e9f7;
  background: linear-gradient(180deg, #fff, #f8fbfe);
}

.example-chart-card.is-statistical .uif-chart-regression,
.example-chart-card.is-statistical .uif-chart-reference,
.example-chart-card.is-statistical .uif-chart-target {
  stroke: #c43d50;
}

.example-chart-card.is-statistical .uif-chart-mean {
  stroke: #667085;
}

.component-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.component-card {
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.component-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid #eef1f4;
}

.component-card-head h2,
.component-card-head p {
  margin: 0;
}

.component-card-head h2 {
  color: #20252d;
  font-size: 1.05rem;
  font-weight: 760;
}

.component-card-head p {
  max-width: 30rem;
  margin-top: 0.28rem;
  color: #667085;
  font-size: 0.88rem;
  line-height: 1.45;
}

.component-demo {
  min-height: 11rem;
  padding: 1rem;
  background: #fbfcfd;
}

.component-card pre {
  margin: 0;
  padding: 1rem;
  border-top: 1px solid #eef1f4;
  overflow: auto;
  background: #101828;
  color: #d1fadf;
  font-size: 0.78rem;
  line-height: 1.55;
}

.component-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.25rem 0.7rem;
  border: 1px solid #dfe3e8;
  border-radius: 0.5rem;
  background: #fff;
  color: #344054;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
}

.component-dialog,
.component-drawer-inner,
.component-menu-panel,
.component-tabs,
.component-accordion,
.component-combobox,
.component-stack {
  display: grid;
  gap: 0.75rem;
}

.component-dialog {
  width: min(28rem, calc(100vw - 2rem));
  margin: 10dvh auto 0;
  padding: 1rem;
  border: 1px solid #dfe3e8;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.18);
}

.component-dialog h3,
.component-dialog p,
.component-drawer-inner h3 {
  margin: 0;
}

.component-dialog p {
  color: #667085;
  line-height: 1.5;
}

.component-drawer-inner {
  padding: 1rem;
}

.component-menu {
  position: relative;
  display: inline-block;
}

.component-menu-panel {
  position: absolute;
  z-index: 20;
  min-width: 12rem;
  margin-top: 0.4rem;
  padding: 0.4rem;
  border: 1px solid #dfe3e8;
  border-radius: 0.65rem;
  background: #fff;
  box-shadow: 0 14px 35px rgba(16, 24, 40, 0.12);
}

.component-menu-panel button,
.component-option-list button {
  width: 100%;
  padding: 0.5rem 0.6rem;
  border: 0;
  border-radius: 0.45rem;
  background: transparent;
  color: #344054;
  text-align: left;
  cursor: pointer;
}

.component-menu-panel button:hover,
.component-option-list button:hover {
  background: #eef6fd;
  color: #0b72bd;
}

.component-tabs [data-uif-role="tab"] {
  min-height: 2rem;
  margin-right: 0.35rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid #dfe3e8;
  border-radius: 999px;
  background: #fff;
  color: #4b5563;
  font-weight: 750;
  cursor: pointer;
}

.component-tabs [data-uif-role="tab"][aria-selected="true"] {
  border-color: #0b72bd;
  background: #e7f1fb;
  color: #0b72bd;
}

.component-tabs [data-uif-role="tabpanel"] {
  padding: 0.75rem;
  border: 1px solid #dfe3e8;
  border-radius: 0.65rem;
  background: #fff;
}

.component-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.component-accordion {
  border: 1px solid #dfe3e8;
  border-radius: 0.65rem;
  background: #fff;
}

.component-accordion [data-uif-role="trigger"] {
  width: 100%;
  padding: 0.75rem;
  border: 0;
  background: transparent;
  color: #20252d;
  font-weight: 760;
  text-align: left;
}

.component-accordion [data-uif-role="panel"] {
  padding: 0 0.75rem 0.75rem;
  color: #667085;
}

.component-progress {
  height: 0.75rem;
  overflow: hidden;
  border-radius: 999px;
  background: #e7eaee;
}

.component-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #00a88f;
}

.component-option-list {
  margin-top: 0.45rem;
  padding: 0.35rem;
  border: 1px solid #dfe3e8;
  border-radius: 0.65rem;
  background: #fff;
}

.component-upload {
  min-height: 9rem;
  display: grid;
  place-items: center;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px dashed #b9c8d8;
  border-radius: 0.75rem;
  background: #fff;
  color: #667085;
  text-align: center;
  cursor: pointer;
}

.component-upload .uif-icon {
  font-size: 1.75rem;
  color: #0b72bd;
}

.component-upload strong {
  color: #20252d;
}

.component-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.component-gallery-page {
  background:
    radial-gradient(circle at 12% -8%, rgba(0, 168, 143, 0.13), transparent 23rem),
    linear-gradient(180deg, #f8fafc 0%, #f3f5f8 100%);
}

.component-gallery-page .example-shell {
  background: transparent;
}

.component-gallery-page .example-frame {
  width: min(100%, 94rem);
}

.component-gallery-page .example-topbar {
  position: sticky;
  top: 1rem;
  z-index: 20;
  min-height: 4.25rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid #d8e0ea;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 12px 34px rgba(16, 24, 40, 0.08);
  backdrop-filter: blur(14px);
}

.component-gallery-page .example-brand {
  gap: 0.75rem;
}

.component-gallery-page .example-brand strong {
  color: #111827;
  font-size: 1rem;
  font-weight: 820;
}

.component-gallery-page .example-brand span span {
  color: #7a8492;
}

.component-gallery-page .example-brand-mark,
.component-gallery-page .example-brand-mark .uif-icon,
.component-gallery-page .example-brand-mark svg {
  color: #00b696;
}

.component-gallery-page .example-pill {
  min-height: 2.25rem;
  border-radius: 0.5rem;
  font-size: 0.84rem;
}

.component-gallery-page .example-pill .uif-icon {
  width: 1rem;
  height: 1rem;
}

.component-hero {
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.38fr);
  align-items: stretch;
  margin: 1rem 0;
  padding: 1.35rem;
  border: 1px solid #d2dce8;
  border-radius: 0.5rem;
  background:
    linear-gradient(135deg, rgba(11, 114, 189, 0.09), transparent 44%),
    #fff;
  box-shadow: 0 18px 45px rgba(16, 24, 40, 0.08);
}

.component-hero-copy {
  display: grid;
  align-content: center;
  min-height: 12rem;
}

.component-gallery-page .example-hero h1 {
  max-width: 52rem;
  color: #111827;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  font-weight: 820;
}

.component-gallery-page .example-hero p {
  max-width: 54rem;
  color: #5d6675;
  font-size: 1.05rem;
}

.component-hero-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.component-hero-panel div {
  display: grid;
  align-content: center;
  min-height: 5rem;
  padding: 0.9rem 1rem;
  border: 1px solid #dce5ef;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
}

.component-hero-panel strong {
  color: #111827;
  font-size: 1.45rem;
  font-weight: 850;
  line-height: 1;
}

.component-hero-panel span {
  margin-top: 0.25rem;
  color: #667085;
  font-size: 0.83rem;
  font-weight: 700;
}

.component-catalog-shell {
  display: grid;
  grid-template-columns: 17.5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.component-sidebar {
  position: sticky;
  top: 6.25rem;
}

.component-sidebar-card {
  padding: 1rem;
  border: 1px solid #dde4ec;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.06);
}

.component-sidebar-card h2,
.component-main-head h2 {
  margin: 0;
  color: #111827;
  font-size: 1rem;
  font-weight: 820;
}

.component-sidebar-card p,
.component-main-head p {
  margin: 0.35rem 0 0;
  color: #667085;
  font-size: 0.88rem;
  line-height: 1.45;
}

.component-category-nav {
  position: static;
  display: grid;
  gap: 0.25rem;
  margin: 1rem 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.component-category-nav a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.35rem;
  padding: 0.4rem 0.55rem;
  border-radius: 0.45rem;
}

.component-category-nav .uif-icon {
  width: 1rem;
  height: 1rem;
  color: #748093;
}

.component-category-nav a:hover .uif-icon,
.component-category-nav a[aria-current="page"] .uif-icon {
  color: #0b72bd;
}

.component-main {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.component-main-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #dde4ec;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.component-main-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.component-gallery-page .component-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 28rem), 1fr));
  gap: 1rem;
}

.component-gallery-page .component-card {
  scroll-margin-top: 6rem;
  border: 1px solid #dde4ec;
  border-radius: 0.5rem;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.055);
}

.component-gallery-page .component-card:hover {
  border-color: #c8d5e3;
  box-shadow: 0 16px 38px rgba(16, 24, 40, 0.085);
}

.component-gallery-page .component-card-head {
  min-height: 6.7rem;
  padding: 1rem 1.05rem;
  background: linear-gradient(180deg, #fff, #fbfcfd);
}

.component-gallery-page .component-card-head h2 {
  color: #111827;
  font-size: 1.08rem;
  font-weight: 820;
}

.component-gallery-page .component-card-head p {
  color: #657083;
  font-size: 0.87rem;
}

.component-gallery-page .component-demo {
  min-height: 12rem;
  padding: 1.05rem;
  border-bottom: 1px solid #eef1f4;
  background:
    linear-gradient(90deg, rgba(231, 241, 251, 0.58) 1px, transparent 1px),
    linear-gradient(180deg, rgba(231, 241, 251, 0.58) 1px, transparent 1px),
    #fbfcfe;
  background-size: 24px 24px;
}

.component-gallery-page .component-card pre {
  max-height: 14rem;
  padding: 0.9rem 1rem;
  border-top: 0;
  background: #0f172a;
  color: #d7fbe8;
  font-size: 0.76rem;
}

.component-gallery-page .component-copy {
  flex: 0 0 auto;
  border-radius: 0.45rem;
  color: #0b72bd;
}

.component-gallery-page .component-copy:hover {
  border-color: #b9d7ef;
  background: #eef6fd;
}

.component-gallery-page .uif-btn {
  gap: 0.45rem;
}

.component-gallery-page .uif-btn .uif-icon {
  flex: 0 0 auto;
}

@media (max-width: 72rem) {
  .example-grid,
  .example-chart-grid,
  .component-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .component-catalog-shell,
  .component-hero {
    grid-template-columns: 1fr;
  }

  .component-hero-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .component-sidebar {
    position: static;
  }

  .component-category-nav {
    display: flex;
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }

  .component-category-nav a {
    flex: 0 0 auto;
  }
}

@media (max-width: 48rem) {
  .example-shell {
    padding: 0.875rem;
  }

  .example-topbar,
  .example-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .example-topbar,
  .example-hero,
  .chart-workbench-head,
  .example-meta {
    justify-content: flex-start;
  }

  .chart-workbench-grid {
    grid-template-columns: 1fr;
  }

  .example-grid,
  .example-chart-grid,
  .component-grid,
  .example-chart-card.is-wide {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .component-gallery-page .example-topbar {
    position: static;
  }

  .component-hero,
  .component-main-head {
    padding: 1rem;
  }

  .component-hero-panel {
    grid-template-columns: 1fr;
  }

  .component-hero-copy {
    min-height: auto;
  }

  .component-main-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .component-main-actions {
    justify-content: flex-start;
  }
}
