@media (min-width: 1280px) {
  .cms-editor-page .cms-editor-panel-column {
    position: sticky;
    top: 1rem;
    align-self: start;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    padding-right: 0.35rem;
    scrollbar-width: thin;
  }
}

.cms-editor-page .rich-editor {
  min-height: 13rem !important;
  max-height: 24rem !important;
}

.cms-editor-page .cms-collapsible-section {
  position: relative;
}

.cms-editor-page .cms-section-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  border-bottom: 1px solid var(--color-outline-variant);
  background: transparent;
  padding: 0 0 0.7rem;
  color: var(--color-on-surface);
  font-size: 0.95rem;
  font-weight: 800;
  text-align: left;
}

.cms-editor-page .cms-section-toggle:hover {
  color: var(--color-primary);
}

.cms-editor-page .cms-section-toggle-indicator {
  display: grid;
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--color-outline-variant);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 1rem;
  line-height: 1;
}

.cms-editor-page .cms-collapsible-section.cms-section-collapsed > :not(.cms-section-toggle) {
  display: none;
}

.cms-editor-page .cms-collapsible-section.cms-section-collapsed .cms-section-toggle {
  border-bottom: 0;
  padding-bottom: 0;
}
