/* Original statement scans: prompt preview and accessible document viewer. */
.notice-prompt[data-v-c9233031] {
  width: min(30rem, calc(100vw - 2rem));
}

.notice-prompt__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 6.75rem;
  align-items: center;
  gap: 1.15rem;
  margin-top: 1rem;
}

.notice-prompt__body .notice-prompt__title[data-v-c9233031] {
  max-width: none;
  margin-top: 0;
  text-wrap: balance;
}

.notice-originals-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .35rem;
  align-items: start;
}

.notice-originals-preview > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 900 / 1280;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: .2rem;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
  transition: transform .2s ease, box-shadow .2s ease;
}

.notice-originals-preview__label {
  grid-column: 1 / -1;
  color: #b9c5d6;
  font-size: .625rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .06em;
  text-align: center;
}

.notice-prompt__main:hover .notice-originals-preview > img {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .3);
}

.statement-dialog__header[data-v-c9233031] {
  min-height: 0;
  padding: 1.3rem 4.5rem 1.2rem;
}

.statement-dialog__heading[data-v-c9233031] {
  padding-inline: 0;
}

.statement-dialog__title[data-v-c9233031] {
  margin-top: .65rem;
  font-size: clamp(1.15rem, 2.3vw, 1.65rem);
  line-height: 1.45;
  letter-spacing: -.025em;
}

.statement-dialog__publisher[data-v-c9233031] {
  margin-top: .45rem;
}

.statement-dialog__close[data-v-c9233031] {
  top: 1rem;
  right: 1rem;
}

.statement-originals {
  padding: 1.1rem clamp(.75rem, 3vw, 2rem) 1.75rem;
  color: #334155;
  background: linear-gradient(180deg, #edf1f5, #f5f7fa);
}

.statement-originals__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .7rem 1rem;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.statement-originals__toolbar > p {
  flex: 1 1 12rem;
  margin: 0;
  color: #64748b;
  font-size: .8125rem;
  line-height: 1.65;
}

.statement-originals__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
}

.statement-originals__controls button {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: .6rem .8rem;
  border: 1px solid #ced7e2;
  border-radius: .55rem;
  color: #334155;
  background: #fff;
  font: inherit;
  font-size: .8125rem;
  font-weight: 600;
  line-height: 1.35;
  cursor: pointer;
  transition: color .15s ease, background .15s ease, border-color .15s ease;
}

.statement-originals__controls button:hover {
  border-color: #fb923c;
  color: #9a3412;
  background: #fff7ed;
}

.statement-originals__controls button[aria-pressed="true"] {
  border-color: #f97316;
  color: #9a3412;
  background: #ffedd5;
}

.statement-originals__controls button:focus-visible,
.statement-originals__image-button:focus-visible {
  outline: 3px solid #f97316;
  outline-offset: 3px;
}

.statement-originals__pages {
  max-width: 100%;
  padding: .25rem .3rem 1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-color: #94a3b8 #e2e8f0;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.statement-originals__page {
  width: min(100%, 800px);
  margin: 0 auto 1.25rem;
  overflow: visible;
  border: 1px solid #dbe2e9;
  border-radius: .5rem;
  background: #fff;
  box-shadow: 0 5px 16px rgba(30, 41, 59, .08);
  scroll-margin-top: 11rem;
}

.statement-originals__page:last-child {
  margin-bottom: 0;
}

.statement-originals__page > figcaption {
  padding: .6rem .85rem;
  border-bottom: 1px solid #e2e8f0;
  border-radius: .5rem .5rem 0 0;
  color: #64748b;
  background: #f8fafc;
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.5;
}

.statement-originals__image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0 0 .5rem .5rem;
  background: #fff;
  cursor: zoom-in;
}

.statement-originals__image-button > img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  border-radius: inherit;
  object-fit: contain;
}

.statement-originals__pages.is-zoomed .statement-originals__page {
  width: max(100%, 908px);
  max-width: none;
}

.statement-originals__pages.is-zoomed .statement-originals__image-button {
  cursor: zoom-out;
}

@media (max-width: 639px) {
  .notice-prompt[data-v-c9233031] {
    width: auto;
  }

  .notice-prompt__body {
    grid-template-columns: minmax(0, 1fr) 5.15rem;
    gap: .75rem;
    margin-top: .8rem;
  }

  .notice-originals-preview {
    gap: .25rem;
  }

  .statement-dialog__header[data-v-c9233031] {
    min-height: 0;
    padding: calc(.95rem + env(safe-area-inset-top)) 3.55rem .9rem 1rem;
  }

  .statement-dialog__title[data-v-c9233031] {
    margin-top: .5rem;
    font-size: 1.05rem;
    line-height: 1.45;
  }

  .statement-dialog__close[data-v-c9233031] {
    top: calc(.7rem + env(safe-area-inset-top));
    right: .6rem;
  }

  .statement-originals {
    padding: .85rem .6rem calc(1rem + env(safe-area-inset-bottom));
  }

  .statement-originals__toolbar {
    gap: .6rem;
    margin-bottom: .75rem;
  }

  .statement-originals__toolbar > p {
    flex-basis: 100%;
    font-size: .75rem;
  }

  .statement-originals__controls {
    width: 100%;
  }

  .statement-originals__controls button {
    flex: 1 1 auto;
    padding-inline: .6rem;
  }

  .statement-originals__page {
    margin-bottom: 1rem;
    scroll-margin-top: calc(10rem + env(safe-area-inset-top));
  }
}

@media (max-width: 359px) {
  .notice-prompt__body {
    grid-template-columns: minmax(0, 1fr) 4.65rem;
    gap: .6rem;
  }

  .notice-originals-preview__label {
    font-size: .5625rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .notice-originals-preview > img,
  .statement-originals__controls button {
    transition: none;
  }
}
