* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #0f0f0f;
  background: #f6f6f4;
  min-height: 100vh;
}

.page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.top-nav {
  background: #052238;
  color: #fff;
}

.top-nav__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0.5rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.top-nav__inner--centered {
  display: flex;
  justify-content: center;
}

.top-nav__left {
  justify-self: start;
}

.top-nav__right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.top-nav__brand {
  display: flex;
  align-items: center;
  justify-self: center;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.top-nav__logo {
  display: block;
  height: 50px;
  width: auto;
  object-fit: contain;
}

.top-nav__user {
  font-family: Oswald, Inter, system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.top-nav .auth-actions {
  margin: 0;
}

.header h1 {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.content-type-unavailable {
  max-width: 40rem;
  margin: 0 0 1.25rem;
  color: #5c5c56;
  font-size: 0.95rem;
}

.lede {
  max-width: 40rem;
  margin: 0 0 1.25rem;
  color: #3d3d3a;
  font-size: 0.95rem;
}

.hint {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: #6b6b63;
  max-width: 28rem;
}

.hint--err {
  color: #8b2c2c;
}

code {
  font-size: 0.9em;
  background: #eaeae6;
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

.actions {
  margin-bottom: 0.75rem;
}

.field {
  margin-bottom: 0.9rem;
  max-width: 28rem;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #3d3d3a;
  margin-bottom: 0.4rem;
}

.field--inline {
  margin-bottom: 0.65rem;
}

.reel-timeline-field {
  max-width: 28rem;
}

.reel-timeline-heading {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #3d3d3a;
  margin-bottom: 0.4rem;
}

.reel-timeline {
  display: flex;
  width: 100%;
  min-height: 2.5rem;
  border: 1px solid #e4e4df;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.reel-timeline__segment {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #2a2a26;
  border-right: 1px solid rgba(26, 26, 24, 0.12);
}

.reel-timeline__segment:last-child {
  border-right: none;
}

.reel-timeline__segment--a {
  background: #ecece8;
}

.reel-timeline__segment--b {
  background: #f8f8f5;
}

.reel-timeline-axis {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  color: #6a6a64;
}

.reel-timeline-hint {
  margin-top: 0.4rem;
  max-width: none;
}

.field--inline label {
  margin-bottom: 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: #3d3d3a;
  cursor: pointer;
  max-width: 28rem;
}

.checkbox-label input {
  width: 1rem;
  height: 1rem;
  accent-color: #1a1a18;
}

.story-image-source {
  border: 1px solid #d8d8d2;
  border-radius: 6px;
  padding: 0.65rem 0.85rem 0.75rem;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.story-image-source legend {
  font-size: 0.85rem;
  font-weight: 500;
  color: #3d3d3a;
  padding: 0 0.25rem;
}

.select {
  font-family: inherit;
  font-size: 0.9rem;
  width: 100%;
  min-height: 2.6rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid #b8b8b0;
  border-radius: 8px;
  background: #fff;
  color: #1a1a18;
  cursor: pointer;
  appearance: auto;
}

.select:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.select:focus {
  outline: 2px solid #1a1a18;
  outline-offset: 1px;
}

.input {
  font-family: inherit;
  font-size: 0.9rem;
  width: 100%;
  min-height: 2.6rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid #b8b8b0;
  border-radius: 8px;
  background: #fff;
  color: #1a1a18;
}

.input:focus {
  outline: 2px solid #1a1a18;
  outline-offset: 1px;
}

.input--textarea {
  min-height: 6rem;
  resize: vertical;
  line-height: 1.45;
}

.opacity-control {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.opacity-slider {
  flex: 1 1 auto;
  min-width: 0;
  height: 0.35rem;
  margin: 0;
  accent-color: #1a1a18;
  cursor: pointer;
}

.opacity-slider:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.opacity-input {
  flex: 0 0 5.5rem;
  width: 5.5rem;
  min-height: 2.35rem;
  text-align: center;
}

.input--number {
  -moz-appearance: textfield;
  appearance: textfield;
}

.input--number::-webkit-outer-spin-button,
.input--number::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.schedule-confirmation {
  color: #2d5a3d;
  font-weight: 500;
}

.schedule-modal {
  border: none;
  border-radius: 12px;
  padding: 0;
  max-width: 28rem;
  width: calc(100% - 2rem);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.schedule-modal::backdrop {
  background: rgba(15, 15, 15, 0.45);
}

.schedule-modal__form {
  padding: 1.25rem 1.35rem 1.35rem;
}

.schedule-modal__title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.schedule-modal__hint {
  margin-bottom: 1rem;
}

.schedule-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.meta .btn + .btn {
  margin-left: 0.5rem;
}

.app-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.5rem;
}

.app-nav__btn {
  font-family: Oswald, Inter, system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.15rem;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.app-nav__btn:hover {
  color: rgba(255, 255, 255, 0.85);
}

.app-nav__btn.is-active {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.35rem;
  text-decoration-thickness: 2px;
  border-bottom-color: transparent;
}

.calendar-view {
  margin-bottom: 2rem;
}

.calendar-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.calendar-heading {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.calendar-month-label {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: #3d3d3a;
  flex: 1 1 auto;
}

.calendar-toolbar__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.calendar-grid-wrap {
  max-width: 64rem;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 1px;
}

.calendar-weekdays__cell {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b6b63;
  padding: 0.35rem 0.4rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  background: #e4e4df;
  border: 1px solid #e4e4df;
  border-radius: 8px;
  overflow: hidden;
}

.calendar-cell {
  background: #fff;
  min-height: 7.5rem;
  padding: 0.35rem 0.4rem 0.5rem;
  vertical-align: top;
}

.calendar-cell--outside {
  background: #f6f6f4;
}

.calendar-cell__day {
  font-size: 0.8rem;
  font-weight: 600;
  color: #3d3d3a;
  margin-bottom: 0.35rem;
}

.calendar-cell__day--today {
  color: #1a1a18;
  background: #eaeae6;
  border-radius: 4px;
  padding: 0.1rem 0.35rem;
  display: inline-block;
}

.calendar-cell__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.calendar-item {
  display: block;
  width: 100%;
  text-align: left;
  font-family: inherit;
  font-size: 0.68rem;
  line-height: 1.35;
  padding: 0.2rem 0.25rem;
  margin-bottom: 0.15rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.content-chip {
  border: none;
}

.calendar-item:hover {
  filter: brightness(0.94);
}

.record-view {
  margin-top: 0.25rem;
}

.record-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.record-toolbar__actions {
  display: flex;
  gap: 0.5rem;
}

.record-loading {
  color: #5c5c58;
  font-size: 0.9rem;
}

.record-title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 500;
}

.record-fields {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.record-field {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 0.5rem 1rem;
  align-items: baseline;
}

.record-field--caption {
  grid-template-columns: 1fr;
}

.record-field__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #5c5c58;
}

.record-field__value {
  font-size: 0.95rem;
}

.record-field__caption {
  margin: 0;
  font-family: inherit;
  font-size: 0.9rem;
  line-height: 1.5;
  white-space: pre-wrap;
  background: #f6f6f4;
  border: 1px solid #e4e4df;
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
}

.record-edit-form {
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: #f6f6f4;
  border: 1px solid #e4e4df;
  border-radius: 8px;
}

.record-edit-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.record-files__title {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.record-files__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.record-files__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid #e4e4df;
}

.record-files__item:last-child {
  border-bottom: none;
}

.record-files__name {
  font-size: 0.88rem;
  line-height: 1.4;
}

.record-files__actions {
  display: flex;
  gap: 0.35rem;
  flex-shrink: 0;
}

.file-preview-modal {
  border: none;
  border-radius: 12px;
  padding: 0;
  max-width: min(90vw, 56rem);
  width: calc(100% - 2rem);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.file-preview-modal::backdrop {
  background: rgba(15, 15, 15, 0.45);
}

.file-preview-modal__inner {
  padding: 1rem 1.15rem 1.15rem;
}

.file-preview-modal__content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 12rem;
  max-height: 75vh;
}

.file-preview-modal__image {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
}

.file-preview-modal__video {
  max-width: 100%;
  max-height: 75vh;
}

.file-preview-modal__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.75rem;
}

.generate-view {
  margin-top: 0.25rem;
}

.generate-split {
  display: grid;
  grid-template-columns: minmax(0, 22rem) minmax(0, 1fr);
  gap: 2rem 2.5rem;
  align-items: start;
  margin-top: 1.25rem;
}

.generate-split__controls {
  min-width: 0;
}

.generate-split__output {
  min-width: 0;
}

.generate-output__preview-area {
  margin-bottom: 1rem;
}

.generate-output__actions {
  margin-bottom: 0.75rem;
}

.generate-output__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
}

.generate-output__toolbar .btn + .btn {
  margin-left: 0;
}

.generate-output__placeholder {
  margin: 0;
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: #6b6b63;
  font-size: 0.95rem;
  background: #eeeee8;
  border: 1px dashed #c8c8c0;
  border-radius: 12px;
}

.generate-output__caption {
  max-width: none;
  margin-bottom: 1rem;
}

.generate-output__preview {
  margin-top: 0;
}

.generate-panel .lede {
  max-width: none;
}

.generate-panel .field {
  max-width: none;
}

@media (max-width: 900px) {
  .generate-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 720px) {
  .calendar-cell {
    min-height: 5.5rem;
  }

  .calendar-item {
    font-size: 0.62rem;
  }
}

.login-form {
  max-width: 22rem;
}

body.login-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.login-page .page {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: none;
  width: 100%;
  padding: 2rem 1.25rem;
}

body.login-page .header,
body.login-page .login-form {
  width: 100%;
  max-width: 22rem;
  text-align: center;
}

body.login-page .header h1 {
  margin-bottom: 0.5rem;
}

body.login-page .lede {
  margin-bottom: 1.25rem;
}

body.login-page .login-form .field {
  text-align: left;
}

body.login-page .login-form .actions {
  display: flex;
  justify-content: center;
}

.auth-actions {
  margin: 0 0 1rem;
}

.btn {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.55rem 1rem;
  border: 1px solid #b8b8b0;
  border-radius: 8px;
  background: #fff;
  color: #1a1a18;
  cursor: pointer;
}

.btn:hover {
  background: #fafaf8;
  border-color: #9a9a92;
}

.btn.primary {
  background: #1a1a18;
  color: #fafaf6;
  border-color: #1a1a18;
}

.btn.primary:hover {
  background: #33332e;
  border-color: #33332e;
}

.btn.btn--logout {
  font-family: Oswald, Inter, system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  background: #ab7e5e;
  color: #fff;
  padding: 0.45rem 0.85rem;
  border-radius: 4px;
}

.btn.btn--logout:hover {
  background: #9a704f;
  border-color: transparent;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.err {
  color: #a30;
  font-size: 0.9rem;
  margin: 0.5rem 0 0;
  max-width: 36rem;
}

.meta {
  font-size: 0.9rem;
  color: #5c5c56;
  margin: 0.5rem 0 0;
}

#meta-reel-sources {
  max-width: 36rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

#dl-wrap {
  margin-top: 0.5rem;
}

.reel-preview {
  margin-top: 0;
  max-width: min(22rem, 100%);
  margin-left: auto;
  margin-right: auto;
}

.reel-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: #0f0f0f;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.story-preview {
  margin-top: 0;
  width: 100%;
  max-width: min(22rem, 100%);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.story-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1080 / 1920;
  object-fit: contain;
  background: #0f0f0f;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.previews {
  margin-top: 0;
}

.generate-output .previews {
  margin-top: 0;
}

.preview-carousel {
  max-width: min(28rem, 100%);
  margin: 0 auto;
}

.preview-carousel__stage {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.35rem;
}

.preview-carousel__viewport {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  outline: none;
}

.preview-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.preview-carousel__viewport:focus-visible {
  outline: 2px solid #1a1a18;
  outline-offset: 2px;
}

.preview-carousel__slide {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.preview-carousel__edge {
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid #c8c8c0;
  border-radius: 999px;
  background: #fff;
  color: #1a1a18;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-carousel__edge:hover:not(:disabled) {
  background: #f3f3f0;
  border-color: #9a9a92;
}

.preview-carousel__edge:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.preview-carousel__status {
  text-align: center;
  font-size: 0.9rem;
  color: #5c5c56;
  margin: 0.85rem 0 0;
}

.preview-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin: 0.75rem 0 0;
}

.preview-carousel__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #c4c4bc;
  cursor: pointer;
}

.preview-carousel__dot.is-active,
.preview-carousel__dot[aria-selected="true"] {
  background: #1a1a18;
  transform: scale(1.2);
}

.slide {
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  border: none;
  margin: 0;
}

.slide figcaption {
  font-size: 0.85rem;
  color: #6a6a64;
  padding: 0.6rem 0.75rem 0.75rem;
}

.slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1080 / 1350;
  object-fit: cover;
  background: #ddd;
}

/* Description (below carousel preview) */
.description-panel {
  max-width: none;
  margin: 0 0 1rem;
  padding: 0 0.25rem;
}

.description-panel__title {
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
  color: #1a1a18;
  letter-spacing: -0.02em;
}

.description-panel__hint {
  font-size: 0.8rem;
  color: #6a6a64;
  margin: 0 0 0.6rem;
}

.description-panel__pre {
  font-family: inherit;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #2a2a26;
  background: #fff;
  border: 1px solid #e4e4df;
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  margin: 0 0 0.75rem;
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 18rem;
  overflow: auto;
}

.description-panel__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.description-panel__done {
  font-size: 0.8rem;
  color: #2d6a3e;
  font-weight: 500;
}

.table-view {
  margin-bottom: 2rem;
}

.table-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1rem;
}

.table-heading {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.table-toolbar__filter {
  margin: 0;
  min-width: 12rem;
}

.table-wrap {
  overflow-x: auto;
}

.content-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  background: #fff;
  border: 1px solid #e4e4df;
  border-radius: 10px;
}

.content-table th,
.content-table td {
  padding: 0.5rem 0.7rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #eeeee8;
}

.content-table th {
  font-weight: 500;
  color: #3d3d3a;
  background: #f6f6f4;
}

.content-table tbody tr:last-child td {
  border-bottom: none;
}

.content-table__name-link {
  font: inherit;
  color: #052238;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.content-table__name-link:hover {
  color: #0a3d5c;
}

.content-table__type-chip {
  display: inline-block;
  font-size: 0.78rem;
  line-height: 1.35;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

.content-table__status-chip {
  display: inline-block;
  font-size: 0.78rem;
  line-height: 1.35;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

.content-table__caption {
  max-width: 22rem;
  color: #5c5c56;
  word-break: break-word;
}

.content-table__actions {
  white-space: nowrap;
}

.content-table__delete-btn {
  font-size: 0.78rem;
  padding: 0.25rem 0.55rem;
}

.content-table__empty {
  text-align: center;
  color: #6b6b63;
  padding: 2rem 1rem;
}

.table-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
}

.table-pagination__summary {
  margin: 0;
}

.table-pagination__nav {
  display: flex;
  gap: 0.5rem;
}

.upload-view {
  margin-bottom: 2rem;
  max-width: 36rem;
}

.upload-heading {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.upload-lede {
  margin: 0 0 1.25rem;
}

.upload-form .field {
  max-width: none;
}

.upload-results {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid #e4e4df;
  border-radius: 10px;
}

.upload-results__title {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.upload-results__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.upload-results__item {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.85rem;
  padding: 0.25rem 0;
  color: #2a2a26;
}
