/* ED page components */
.ed-dashboard {
  position: relative;
  border-radius: 22px;
  padding: clamp(8px, 1vw, 12px);
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 20px);
  overflow: hidden;
  isolation: isolate;
  min-height: 320px;
}
.ed-dashboard__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 20px);
  margin-bottom: 0;
}
.ed-dashboard__header-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.ed-dashboard__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.ed-dashboard__title-logo {
  display: block;
  flex: 0 0 auto;
  width: clamp(32px, 3vw, 40px);
  height: clamp(32px, 3vw, 40px);
  object-fit: contain;
}
.ed-dashboard__title {
  margin: 0;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-weight: 700;
  color: var(--color-text);
}
.ed-dashboard__title-mobile {
  display: none;
}
.ed-dashboard__status {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  background: transparent;
  color: var(--color-text-muted);
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 0.82rem;
  line-height: 1.3;
  border: 0;
  transition: color 0.2s ease;
  flex-shrink: 0;
  white-space: nowrap;
}
.ed-dashboard__status:empty {
  display: none;
}
.ed-dashboard__status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: none;
  flex: 0 0 auto;
}
.ed-dashboard__status[data-tone="success"] {
  color: var(--color-text-muted);
}
.ed-dashboard__status[data-tone="warning"] {
  color: var(--color-warning);
}
.ed-dashboard__status[data-tone="error"] {
  color: var(--color-danger);
}
.ed-dashboard__header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ed-panel-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-surface-alt);
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.92rem;
  font-family: inherit;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.ed-panel-action-btn svg {
  width: 1.1em;
  height: 1.1em;
}
.ed-panel-action-btn:hover,
.ed-panel-action-btn:focus-visible,
.ed-panel-fullscreen-btn[aria-pressed="true"] {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  box-shadow: var(--shadow-popover-soft);
  outline: none;
}
.ed-panel-action-btn:focus-visible {
  box-shadow: var(--filter-focus-ring), var(--shadow-popover-soft);
}
.ed-panel-fullscreen-btn__icon--exit {
  display: none;
}
.ed-panel-fullscreen-btn[aria-pressed="true"] .ed-panel-fullscreen-btn__icon--enter {
  display: none;
}
.ed-panel-fullscreen-btn[aria-pressed="true"] .ed-panel-fullscreen-btn__icon--exit {
  display: block;
}
.ed-dashboard__cards {
  display: grid;
  gap: clamp(18px, 2vw, 24px);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-content: start;
  align-items: start;
}
.ed-dashboard__section {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.8vw, 18px);
  min-height: 0;
}
.ed-dashboard__section-header {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 18px);
}
.ed-dashboard__section-header-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ed-dashboard__section-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(52px, 6vw, 64px);
  height: clamp(52px, 6vw, 64px);
  border-radius: 18px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  box-shadow: var(--state-accent-inset-20);
}
.ed-dashboard__section-icon svg {
  width: 70%;
  height: 70%;
}
.ed-dashboard__section-title {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-text);
  text-shadow: none;
}
.ed-dashboard__section-description {
  margin: 4px 0 0;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--color-text);
  opacity: 0.8;
  max-width: 70ch;
}
.ed-dashboard__section-grid {
  display: grid;
  gap: clamp(14px, 2vw, 20px);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: stretch;
}
.ed-dashboard__section[data-section-key="staffing"] .ed-dashboard__section-grid {
  grid-template-columns: 1fr;
}
.ed-dashboard__section[data-section-key="efficiency"] .ed-dashboard__section-grid {
  gap: clamp(12px, 1.6vw, 16px);
  grid-template-columns: minmax(0, 1fr);
}
.ed-dashboard__section[data-section-key="efficiency"] .ed-dashboard__card {
  justify-content: center;
  min-height: clamp(152px, 15vw, 176px);
}
.ed-dashboard__card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  container-type: inline-size;
  border-radius: 20px;
  padding: clamp(18px, 2vw, 26px);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-elevated);
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.6vw, 16px);
  min-height: 256px;
}
.ed-dashboard__card--donut {
  align-items: center;
  text-align: center;
  min-height: 256px;
}
.ed-dashboard__card--disposition-bars {
  min-height: 256px;
}
.ed-dashboard__card--donut .ed-dashboard__card-title,
.ed-dashboard__card--disposition-bars .ed-dashboard__card-title {
  text-align: center;
  width: 100%;
}
.ed-dashboard__donut-chart {
  position: relative;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.ed-dashboard__donut-chart canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.ed-dashboard__disposition-bars-chart {
  width: 100%;
}
.ed-dashboard__disposition-bars {
  display: grid;
  gap: 12px;
  width: 100%;
}
.ed-dashboard__disposition-bar {
  display: grid;
  gap: 6px;
}
.ed-dashboard__disposition-bar-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 10px;
}
.ed-dashboard__disposition-bar-label,
.ed-dashboard__disposition-bar-meta {
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  line-height: 1.25;
}
.ed-dashboard__disposition-bar-label {
  color: var(--color-text);
  font-weight: 700;
  overflow-wrap: anywhere;
}
.ed-dashboard__disposition-bar-meta {
  color: var(--color-text-muted);
  font-weight: 700;
  white-space: nowrap;
}
.ed-dashboard__disposition-bar-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-text-muted) 16%, transparent);
}
.ed-dashboard__disposition-bar-fill {
  width: var(--bar-width, 0%);
  min-width: 4px;
  height: 100%;
  border-radius: inherit;
  background: var(--bar-color, #94a3b8);
}
.ed-dashboard__card-title {
  margin: 0;
  min-width: 0;
  max-width: 100%;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-text);
  overflow-wrap: anywhere;
}
.ed-dashboard__card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-width: 0;
}
.ed-dashboard__card-header .ed-dashboard__card-title {
  min-width: 0;
}
.ed-dashboard__card-value {
  margin: 0;
  min-width: 0;
  max-width: 100%;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1.1;
  font-weight: 800;
  color: var(--color-text);
  overflow-wrap: anywhere;
}
.ed-dashboard__card-value-percentage {
  display: inline-block;
  font-size: 0.58em;
  font-weight: 400;
  letter-spacing: 0.01em;
  vertical-align: 0.12em;
  white-space: nowrap;
}
.ed-dashboard__card-value--empty {
  font-size: clamp(0.95rem, 0.82rem + 0.4vw, 1.15rem);
  line-height: 1.15;
  white-space: normal;
  overflow-wrap: anywhere;
  text-wrap: balance;
}
@container (max-width: 260px) {
  .ed-dashboard__card-title {
    font-size: 1rem;
    line-height: 1.2;
  }
}
.ed-dashboard__data-skeleton {
  display: block;
  max-width: 100%;
}
.ed-dashboard__data-skeleton--value {
  width: min(180px, 62%);
  min-height: clamp(2rem, 3.6vw, 2.8rem);
  border-radius: 12px;
}
.ed-dashboard__data-skeleton--meta {
  width: min(260px, 72%);
  min-height: 1.25em;
}
.ed-dashboard__data-skeleton--bar-meta {
  width: 68px;
  height: 1.1em;
  border-radius: 999px;
}
.ed-dashboard__data-skeleton--feedback-value {
  width: 64px;
  min-height: clamp(1.8rem, 3.2vw, 2.5rem);
  border-radius: 10px;
}
.ed-dashboard__data-skeleton--feedback-meta {
  width: 48px;
  height: 0.9em;
}
.ed-dashboard__data-skeleton--comment-line {
  width: 100%;
  height: 1.1em;
}
.ed-dashboard__data-skeleton--comment-line-short {
  width: 72%;
}
.ed-dashboard__data-skeleton--comment-meta {
  width: 38%;
  height: 1em;
  margin-top: 8px;
}
.ed-dashboard__data-skeleton-fill {
  display: block;
  opacity: 0.8;
}
.ed-dashboard__card-meta {
  margin: 0;
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  color: var(--color-text);
  opacity: 0.85;
  line-height: 1.4;
}
.ed-dashboard__card-meta:empty {
  display: none;
}
.ed-dashboard__card--comments {
  gap: 12px;
  min-height: 256px;
  max-height: 420px;
  overflow: hidden;
  background-clip: padding-box;
}
.ed-dashboard__card--feedback-rotating {
  gap: clamp(8px, 1.2vw, 12px);
  min-height: 256px;
}
.ed-dashboard__card--feedback-rotating .ed-dashboard__card-title {
  min-height: 1.3em;
}
.ed-dashboard__card--feedback-rotating .ed-dashboard__card-value {
  min-height: 1.25em;
}
.ed-dashboard__card--feedback-rotating .ed-dashboard__card-meta {
  min-height: 1.6em;
}
.ed-dashboard__feedback-location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
  margin-top: 2px;
}
.ed-dashboard__feedback-location-metric {
  border: 1px solid color-mix(in srgb, var(--color-text) 14%, transparent);
  border-radius: 12px;
  padding: 8px 10px;
  background: var(--color-surface-alt);
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 2px;
}
.ed-dashboard__feedback-location-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.ed-dashboard__feedback-location-value {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.05;
  font-weight: 800;
  color: var(--color-text);
}
.ed-dashboard__feedback-location-value--empty {
  font-size: clamp(0.9rem, 0.78rem + 0.36vw, 1.08rem);
  line-height: 1.15;
  white-space: normal;
  overflow-wrap: anywhere;
  text-wrap: balance;
}
.ed-dashboard__feedback-location-meta {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
}
.ed-dashboard__feedback-location-metric .ed-dashboard__card-delta {
  margin-top: 2px;
  font-size: 0.75rem;
}
.ed-dashboard__feedback-indicators {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  margin-top: 4px;
}
.ed-dashboard__feedback-indicator {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-text) 28%, transparent);
  opacity: 0.65;
  transition:
    width 200ms ease,
    opacity 160ms ease,
    background-color 160ms ease;
}
.ed-dashboard__feedback-indicator.is-active {
  width: 16px;
  background: var(--color-accent);
  opacity: 1;
}
.ed-dashboard__comment-wrapper {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  width: 100%;
  overflow: hidden;
  min-height: 0;
  scrollbar-width: thin;
}
.ed-dashboard__comment-scroller {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  transform: translateY(0);
  will-change: transform;
}
.ed-dashboard__comment-wrapper.is-scrollable .ed-dashboard__comment-scroller {
  animation: ed-comment-scroll var(--scroll-duration, 12000ms) linear infinite;
}
@keyframes ed-comment-scroll {
  0%,
  10% {
    transform: translateY(0);
  }
  90%,
  100% {
    transform: translateY(calc(-1 * var(--scroll-distance, 0px)));
  }
}
.ed-dashboard__comment {
  margin: 0;
  font-size: clamp(1.1rem, 1.7vw, 1.25rem);
  line-height: 1.6;
  font-weight: 600;
  color: var(--color-text);
}
.ed-dashboard__comment-meta {
  margin: 0;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: var(--color-text);
  opacity: 0.82;
}
.ed-dashboard__comment-rotation {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-top: 5px;
}
.ed-dashboard__comment-rotation-dots {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 6px;
}
.ed-dashboard__comment-rotation-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-text) 20%, transparent);
  opacity: 0.8;
  transition:
    width 200ms ease,
    opacity 160ms ease,
    background-color 160ms ease;
}
.ed-dashboard__comment-rotation-dot.is-active {
  width: 14px;
  background: var(--color-accent);
  opacity: 1;
}
.ed-dashboard__card-progress {
  position: relative;
  width: 100%;
  height: 8px;
  background: var(--color-accent-soft);
  border-radius: 999px;
  overflow: hidden;
}
.ed-dashboard__card-progress-fill {
  position: absolute;
  inset: 0;
  width: var(--progress-width, 0%);
  background: var(--color-accent);
  border-radius: inherit;
  transition: width 0.4s ease;
}
.ed-dashboard__card-progress-fill[data-occupancy-level="normal"] {
  background: var(--color-success);
}
.ed-dashboard__card-progress-fill[data-occupancy-level="elevated"] {
  background: var(--color-warning);
}
.ed-dashboard__card-progress-fill[data-occupancy-level="critical"] {
  background: var(--color-danger);
}
.ed-dashboard__card-progress-marker {
  position: absolute;
  top: 50%;
  width: 2px;
  height: 14px;
  background: var(--color-text);
  opacity: 0.7;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  pointer-events: none;
}
.ed-dashboard__card-delta {
  margin: 4px 0 0;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-muted);
}
.ed-dashboard__card-delta[data-trend="up"] {
  color: var(--color-success);
}
.ed-dashboard__card-delta[data-trend="down"] {
  color: var(--color-danger);
}
.ed-dashboard__card-delta-arrow {
  font-size: 1rem;
  line-height: 1;
}
.ed-dashboard__card-delta-text {
  font-weight: 600;
}
.ed-dashboard__card-delta-reference {
  font-weight: 500;
  color: var(--color-text-muted);
}
.ed-dashboard__chart-message {
  margin-top: 8px;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: var(--color-text-muted);
  text-align: center;
  font-weight: 600;
}
@media (max-width: 768px) {
  .ed-dashboard {
    padding: 10px;
    border-radius: 20px;
  }
  .ed-dashboard__status {
    font-size: 0.75rem;
    padding: 0;
  }
}
@media (max-width: 640px) {
  .ed-dashboard {
    padding: 8px;
    border-radius: 20px;
  }
  .ed-dashboard__header {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .ed-dashboard__title-row {
    align-items: flex-start;
  }
  .ed-dashboard__header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
  }
  .ed-dashboard__header-actions > * {
    flex: 1 1 auto;
    justify-content: center;
  }
  .ed-dashboard__status {
    white-space: normal;
    font-size: 0.82rem;
    padding: 0;
  }
  .ed-dashboard__cards,
  .ed-dashboard__section-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
  .ed-dashboard__section {
    gap: 12px;
  }
  .ed-dashboard__section-header {
    gap: 10px;
  }
  .ed-dashboard__section-title {
    font-size: 1.08rem;
    letter-spacing: 0.02em;
  }
  .ed-dashboard__section-description {
    font-size: 0.92rem;
  }
}
@media (max-width: 520px) {
  .ed-dashboard {
    border-radius: 12px;
    padding: 0;
    gap: 10px;
    min-height: 0;
    background: transparent;
    box-shadow: none;
  }
  .ed-dashboard__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 8px;
  }
  .ed-dashboard__title-row {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    align-items: center;
    gap: 6px 8px;
  }
  .ed-dashboard__title-logo {
    height: 30px;
    width: 30px;
  }
  .ed-dashboard__title {
    font-size: 1.08rem;
    line-height: 1.15;
  }
  .ed-dashboard__title-full {
    display: none;
  }
  .ed-dashboard__title-mobile {
    display: inline;
  }
  .ed-dashboard__status {
    grid-column: 1 / -1;
    gap: 7px;
    width: fit-content;
    padding: 0;
    font-size: 0.68rem;
    letter-spacing: 0.025em;
    line-height: 1.2;
    white-space: normal;
    text-shadow: none;
  }
  .ed-dashboard__status::before {
    width: 6px;
    height: 6px;
    box-shadow: none;
  }
  .ed-dashboard__header-actions {
    justify-self: end;
    width: auto;
  }
  .ed-dashboard__header-actions > * {
    flex: 0 0 auto;
  }
  .ed-panel-action-btn {
    min-width: 44px;
    min-height: 44px;
    padding: 8px 10px;
    gap: 5px;
    font-size: 0.78rem;
    justify-content: center;
  }
  .ed-panel-fullscreen-btn [data-fullscreen-label] {
    display: none;
  }
  .ed-dashboard__cards {
    gap: 9px;
  }
  .ed-dashboard__section {
    gap: 8px;
  }
  .ed-dashboard__section-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .ed-dashboard__section-header-text {
    gap: 2px;
    min-width: 0;
  }
  .ed-dashboard__section-title {
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-shadow: none;
  }
  .ed-dashboard__section-description {
    font-size: 0.76rem;
    line-height: 1.3;
    margin-top: 0;
  }
  .ed-dashboard__section-grid {
    gap: 8px;
    grid-template-columns: minmax(0, 1fr);
  }
  .ed-dashboard__card {
    border-radius: 10px;
    padding: 10px 11px;
    gap: 6px;
    min-height: 0;
    box-shadow: var(--shadow-soft-panel);
  }
  .ed-dashboard__section[data-section-key="efficiency"] .ed-dashboard__card {
    min-height: 0;
  }
  .ed-dashboard__card-title {
    font-size: 0.76rem;
    letter-spacing: 0.015em;
    line-height: 1.25;
    overflow-wrap: anywhere;
    text-shadow: none;
  }
  .ed-dashboard__card-value {
    font-size: 1.5rem;
    line-height: 1;
    overflow-wrap: anywhere;
    text-shadow: none;
  }
  .ed-dashboard__card-value--empty {
    font-size: 0.82rem;
    line-height: 1.2;
  }
  .ed-dashboard__card-meta {
    font-size: 0.76rem;
    overflow-wrap: anywhere;
    line-height: 1.28;
  }
  .ed-dashboard__card-progress {
    height: 7px;
  }
  .ed-dashboard__card-delta {
    gap: 4px;
    font-size: 0.72rem;
    flex-wrap: wrap;
    line-height: 1.25;
    margin-top: 1px;
  }
  .ed-dashboard__card--donut,
  .ed-dashboard__card--disposition-bars,
  .ed-dashboard__card--feedback-rotating,
  .ed-dashboard__card--comments {
    min-height: 0;
  }
  .ed-dashboard__donut-chart {
    max-width: 180px;
  }
  .ed-dashboard__disposition-bars {
    gap: 8px;
  }
  .ed-dashboard__disposition-bar {
    gap: 5px;
  }
  .ed-dashboard__disposition-bar-header {
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
  }
  .ed-dashboard__disposition-bar-label,
  .ed-dashboard__disposition-bar-meta {
    font-size: 0.74rem;
  }
  .ed-dashboard__disposition-bar-meta {
    white-space: normal;
  }
  .ed-dashboard__disposition-bar-track {
    height: 8px;
  }
  .ed-dashboard__chart-message {
    margin-top: 2px;
    font-size: 0.74rem;
  }
  .ed-dashboard__card--comments {
    max-height: 260px;
  }
  .ed-dashboard__card--feedback-rotating .ed-dashboard__card-title,
  .ed-dashboard__card--feedback-rotating .ed-dashboard__card-value,
  .ed-dashboard__card--feedback-rotating .ed-dashboard__card-meta {
    min-height: 0;
  }
  .ed-dashboard__feedback-location-grid {
    gap: 7px;
  }
  .ed-dashboard__feedback-location-metric {
    border-radius: 9px;
    padding: 7px;
    min-height: 82px;
  }
  .ed-dashboard__feedback-location-label {
    font-size: 0.66rem;
    line-height: 1.2;
  }
  .ed-dashboard__feedback-location-value {
    font-size: 1.35rem;
  }
  .ed-dashboard__feedback-location-value--empty {
    font-size: 0.76rem;
  }
  .ed-dashboard__feedback-location-meta,
  .ed-dashboard__feedback-location-metric .ed-dashboard__card-delta {
    font-size: 0.68rem;
  }
  .ed-dashboard__feedback-indicators {
    margin-top: 2px;
    gap: 5px;
  }
  .ed-dashboard__comment-wrapper {
    max-height: 150px;
  }
  .ed-dashboard__comment {
    font-size: 0.86rem;
    line-height: 1.45;
  }
  .ed-dashboard__comment-meta {
    font-size: 0.74rem;
    line-height: 1.3;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ed-dashboard__comment-wrapper {
    overflow: auto;
    overscroll-behavior: contain;
  }
  .ed-dashboard__comment-wrapper.is-scrollable .ed-dashboard__comment-scroller {
    animation: none;
    transform: translateY(0);
  }
  .ed-dashboard__feedback-indicator,
  .ed-dashboard__comment-rotation-dot,
  .ed-dashboard__card-progress-fill {
    transition: none;
  }
}
body[data-page="ed"] .section-band--ed {
  margin-bottom: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
body[data-page="ed"] main.container {
  padding: clamp(12px, 1.5vw, 20px) clamp(14px, 1.5vw, 24px) 24px;
}
body[data-page="ed"] .section-band--ed .section,
body[data-page="ed"] #edStandardSection {
  margin-bottom: 0;
}
