.report-container {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.report-header {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 30px 0 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.report-title {
  display: grid;
  justify-items: center;
  gap: 6px;
  margin: 0 0 12px;
  color: var(--ink);
}

.title-location {
  display: block;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.title-product {
  display: block;
  color: var(--accent-fg);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
}

.header-times {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.header-times span {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
}

.header-times span + span::before {
  margin: 0 8px;
  color: var(--line);
  content: "\2022";
}

@media screen {
  .report-title {
    justify-items: start;
  }

  .title-product {
    text-transform: none;
  }

  .header-times {
    justify-content: flex-start;
  }

  .aphr-report .no-content {
    padding: 10px 12px;
    background: var(--canvas-subtle);
    border-left: 3px solid var(--border-default);
  }
}

.aphr-report {
  margin-top: 0;
  font-family: inherit;
  color: var(--ink);
}

.aphr-report > section {
  margin: 0;
  padding: 36px 0 0;
  background: transparent;
  border: 0;
}

.aphr-report > section:first-child {
  padding-top: 28px;
}

.aphr-report h2 {
  margin: 0 0 18px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--border-default);
  color: var(--ink);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.aphr-report h3 {
  margin: 26px 0 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.aphr-report p {
  margin: 0 0 12px;
  max-width: 74ch;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  text-align: left;
}

.aphr-report .section-content {
  color: var(--ink);
  text-indent: 0;
  white-space: pre-line;
}

.aphr-report .no-content {
  color: var(--muted);
  font-style: italic;
}

.aphr-report .citation {
  color: var(--accent-fg);
  cursor: pointer;
  font-size: 0.78em;
  font-weight: 600;
  text-decoration: none;
}

.aphr-report a {
  color: var(--accent-fg);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.aphr-report a:hover,
.aphr-report .citation:hover {
  text-decoration: underline;
}

.aphr-report a:focus-visible,
.aphr-report .citation:focus-visible,
.drawer-trigger:focus-visible,
.drawer-close:focus-visible {
  outline: 2px solid var(--accent-border-emphasis);
  outline-offset: 2px;
}

.aphr-report .intensity-map {
  margin: 22px 0 16px;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.aphr-report .intensity-map img {
  display: block;
  width: 100%;
  max-height: 520px;
  margin: 0 auto;
  object-fit: contain;
}

.aphr-report figcaption,
.aphr-report .image-caption {
  margin-top: 8px;
  color: var(--muted);
  font-family: inherit;
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
  text-align: center;
}

.aphr-report .pager-estimates {
  margin: 22px 0;
  padding: 14px 16px;
  background: var(--attention-bg-subtle);
  border: 1px solid var(--attention-border-muted);
  border-left: 4px solid var(--attention-fg);
  border-radius: 0 6px 6px 0;
  color: var(--ink);
}

.aphr-report .pager-estimates h3 {
  margin-top: 0;
  font-size: 16px;
}

.aphr-report .pager-estimates p:last-child {
  margin-bottom: 0;
}

.aphr-report .pager-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 16px 0;
}

.aphr-report .pager-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  background: transparent;
  border: 1px solid var(--border-default);
  border-radius: 6px;
}

.aphr-report .reference-list {
  margin: 0;
  padding-left: 0;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}

.aphr-report .reference-list li {
  margin: 0;
  padding: 10px 0;
  overflow-wrap: anywhere;
  background: transparent;
  border-bottom: 1px solid var(--border-muted);
  color: var(--ink);
  line-height: 1.5;
  transition: background-color 120ms ease;
}

.aphr-report .reference-list li:hover,
.aphr-report .reference-list li:focus-within {
  background: var(--canvas-subtle);
}

.aphr-report .reference-list li:first-child {
  padding-top: 0;
}

.aphr-report .reference-list li:last-child {
  border-bottom: 0;
}

.aphr-report .ref-num {
  color: var(--accent-fg);
  font-weight: 600;
}

.aphr-report .ref-domain {
  font-weight: 600;
}

.aphr-report .ref-link {
  color: var(--accent-fg);
}

.aphr-reference-highlight {
  animation: aphrefade 2.2s ease-out;
}

.aphr-temporal-recon h4 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.aphr-temporal-recon .narrative-stack {
  display: grid;
  gap: 0;
}

.aphr-temporal-recon .narrative-block + .narrative-block {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.aphr-temporal-recon .region-info-body h3 {
  margin: 6px 0 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
}

.aphr-temporal-recon .region-info-body h4 {
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.aphr-temporal-recon .overview-figures,
.aphr-temporal-recon .pager-figures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 20px 0 6px;
}

.aphr-temporal-recon .introduction .overview-figures {
  grid-template-columns: minmax(0, 1fr);
  margin: 18px 0 14px;
}

.aphr-temporal-recon figure {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.aphr-temporal-recon .introduction figure {
  padding: 0;
}

.aphr-temporal-recon img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
}

.aphr-temporal-recon .introduction img {
  max-height: 520px;
}

.aphr-temporal-recon .official-event-link {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.aphr-temporal-recon .pager-context {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.aphr-temporal-recon .pager-summary,
.aphr-temporal-recon .metric-summary {
  max-width: none;
  padding: 14px 16px;
  border-radius: 0 6px 6px 0;
  color: var(--ink);
}

.aphr-temporal-recon .pager-summary {
  background: var(--attention-bg-subtle);
  border: 1px solid var(--attention-border-muted);
  border-left: 4px solid var(--attention-fg);
}

.aphr-temporal-recon .metric-summary {
  background: var(--canvas-subtle);
  border: 1px solid var(--border-default);
  border-radius: 6px;
}

.aphr-temporal-recon .detail-stack {
  display: grid;
  gap: 28px;
  margin-top: 28px;
}

.aphr-temporal-recon .detail-group {
  margin: 0;
  padding: 24px 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
}

.aphr-temporal-recon .detail-group h3 {
  margin-top: 0;
}

.aphr-temporal-recon .card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--border-muted);
  border: 1px solid var(--border-default);
  border-radius: 6px;
}

.aphr-temporal-recon .card-grid > :last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.aphr-temporal-recon .info-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  background: var(--canvas-default);
  border: 0;
}

.aphr-temporal-recon .metric-card {
  background: var(--canvas-default);
}

.aphr-temporal-recon .references-card {
  background: var(--canvas-subtle);
}

.aphr-temporal-recon .info-card h4 {
  margin: 0 0 6px;
  overflow-wrap: anywhere;
}

.aphr-temporal-recon .card-meta {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.aphr-temporal-recon .card-summary {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 14px;
}

.aphr-temporal-recon .drawer-trigger {
  appearance: none;
  margin-top: auto;
  padding: 6px 10px;
  background: var(--canvas-default);
  border: 1px solid var(--border-default);
  border-radius: 6px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
}

.aphr-temporal-recon .drawer-trigger:hover {
  background: var(--canvas-inset);
  border-color: var(--border-strong);
  color: var(--accent-fg);
}

.aphr-temporal-recon .references > .info-card {
  border: 1px solid var(--border-default);
  border-radius: 6px;
}

.aphr-temporal-recon .timeline {
  margin: 0;
  padding: 4px 0 4px 5px;
  list-style: none;
}

.aphr-temporal-recon .timeline li {
  position: relative;
  padding: 0 0 20px 20px;
  border-left: 1px solid var(--border-muted);
}

.aphr-temporal-recon .timeline li:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.aphr-temporal-recon .timeline li::before {
  position: absolute;
  top: 4px;
  left: -5px;
  width: 9px;
  height: 9px;
  background: var(--canvas-default);
  border: 2px solid var(--accent-border-muted);
  border-radius: 50%;
  content: "";
}

.aphr-temporal-recon .timeline li:last-child::before {
  background: var(--accent-fg);
  border-color: var(--accent-fg);
  box-shadow: 0 0 0 3px var(--canvas-default);
}

.aphr-temporal-recon time {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.aphr-temporal-recon .relation {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 6px;
  background: transparent;
  border: 1px solid var(--border-default);
  border-radius: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.aphr-temporal-recon .caveat {
  display: inline-block;
  padding: 3px 7px;
  background: var(--attention-bg-subtle);
  border: 1px solid var(--attention-border-muted);
  border-radius: 4px;
  color: var(--attention-fg);
  font-size: 12px;
  font-weight: 500;
}

.aphr-temporal-recon table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--border-default);
  border-collapse: separate;
  border-radius: 6px;
  border-spacing: 0;
  background: var(--canvas-default);
  font-size: 13px;
  -webkit-overflow-scrolling: touch;
}

.aphr-temporal-recon th,
.aphr-temporal-recon td {
  min-width: 120px;
  padding: 9px 10px;
  border: 0;
  border-right: 1px solid var(--border-muted);
  border-bottom: 1px solid var(--border-muted);
  text-align: left;
  transition: background-color 120ms ease;
  vertical-align: top;
}

.aphr-temporal-recon th {
  background: var(--canvas-inset);
  font-weight: 600;
}

@media screen {
  .aphr-temporal-recon tbody tr:nth-child(even) td {
    background: var(--canvas-subtle);
  }

  .aphr-temporal-recon tbody tr:hover td {
    background: var(--canvas-inset);
  }
}

.aphr-temporal-recon tr > :last-child {
  border-right: 0;
}

.aphr-temporal-recon tbody tr:last-child td {
  border-bottom: 0;
}

.aphr-temporal-recon .drawer-note {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.aphr-temporal-recon .scope-notes {
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.aphr-temporal-recon .scope-notes li + li {
  margin-top: 8px;
}

.drawer-shell {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
}

.drawer-shell.is-open {
  pointer-events: auto;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--ink) 32%, transparent);
  opacity: 0;
  transition: opacity 140ms ease;
}

.drawer-shell.is-open .drawer-backdrop {
  opacity: 1;
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(560px, 100vw);
  height: 100dvh;
  flex-direction: column;
  background: var(--canvas-default);
  border-left: 1px solid var(--border-default);
  transform: translateX(calc(100% + 48px));
  transition: transform 160ms ease;
}

.drawer-shell.is-open .drawer-panel {
  box-shadow: var(--shadow);
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: var(--canvas-subtle);
  border-bottom: 1px solid var(--border-default);
}

.drawer-header h2 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
}

.drawer-close {
  appearance: none;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  background: var(--canvas-default);
  border: 1px solid var(--border-default);
  border-radius: 6px;
  color: var(--ink);
  cursor: pointer;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.drawer-close:hover {
  background: var(--canvas-inset);
}

.drawer-body {
  overflow-y: auto;
  padding: 20px 20px 28px;
}

.drawer-summary {
  max-width: none;
  margin: 0 0 20px;
  padding: 12px 14px;
  background: var(--canvas-subtle);
  border: 1px solid var(--border-default);
  border-radius: 6px;
  color: var(--ink);
}

@keyframes aphrefade {
  0% {
    background: var(--accent-bg-subtle);
  }
  100% {
    background: transparent;
  }
}

@page {
  size: Letter portrait;
  margin: 0.58in 0.62in 0.64in;
}

@media print {
  :root {
    --print-ink: #1f2629;
    --print-muted: #5f696f;
    --print-line: #cfd8d3;
    --print-soft: #f7f9f7;
    --print-teal: #1f5e61;
    --print-amber: #9a681f;
  }

  *,
  *::before,
  *::after {
    box-shadow: none !important;
    text-shadow: none !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  html,
  body {
    width: auto;
    min-width: 0;
    background: #ffffff !important;
    color: var(--print-ink);
  }

  body {
    margin: 0;
    font-size: 10.2pt;
    line-height: 1.42;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  .global-topbar,
  .site-nav-shell,
  .skip-link,
  .drawer-shell,
  .site-footer,
  .drawer-trigger,
  .site-header {
    display: none !important;
  }

  .site-shell,
  .site-main,
  .report-container {
    width: 100%;
    max-width: none;
    min-height: 0;
    margin: 0;
    padding: 0;
  }

  .brand-strip {
    gap: 0.24in;
    justify-content: center;
    margin: 0 0 0.18in;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .brand-logo {
    min-height: 0;
  }

  .brand-logo img {
    max-width: 1.85in;
    max-height: 0.46in;
  }

  .brand-logo-peer img {
    width: 0.45in;
    height: 0.45in;
    max-width: 0.45in;
    max-height: 0.45in;
  }

  .report-header {
    margin: 0 0 0.22in;
    padding: 0 0 0.16in;
    text-align: center;
    border: 0;
    break-after: avoid;
    page-break-after: avoid;
  }

  .report-title {
    gap: 0.04in;
    margin: 0 auto 0.08in;
  }

  .title-location {
    color: var(--print-ink);
    font-size: 22pt;
    font-weight: 850;
    line-height: 1.08;
  }

  .title-product {
    color: var(--print-teal);
    font-size: 10.5pt;
    font-weight: 850;
    letter-spacing: 0.02em;
    line-height: 1.2;
  }

  .header-times {
    gap: 0.06in;
    margin-top: 0.08in;
    color: var(--print-muted);
    font-size: 8.3pt;
    line-height: 1.2;
  }

  .header-times span {
    padding: 0.035in 0.07in;
    background: #eef1eb;
    border: 0.75pt solid var(--print-line);
  }

  .aphr-report {
    margin-top: 0;
    color: var(--print-ink);
    font-family: inherit;
  }

  .aphr-report > section {
    margin: 0 0 0.22in;
    padding: 0.18in 0 0;
    background: transparent;
    border: 0;
    border-top: 0.75pt solid var(--print-line);
    break-inside: auto;
    page-break-inside: auto;
  }

  .aphr-report > section:last-child {
    margin-bottom: 0;
  }

  .aphr-report h2 {
    margin: 0 0 0.1in;
    color: var(--print-teal);
    font-size: 16.5pt;
    font-weight: 820;
    line-height: 1.16;
    break-after: avoid;
    page-break-after: avoid;
  }

  .aphr-report h3,
  .aphr-temporal-recon .region-info-body h3 {
    margin: 0.14in 0 0.06in;
    color: var(--print-teal);
    font-size: 10.8pt;
    font-weight: 780;
    line-height: 1.25;
    break-after: avoid;
    page-break-after: avoid;
  }

  .aphr-report h4,
  .aphr-temporal-recon .region-info-body h4 {
    margin: 0.12in 0 0.05in;
    color: var(--print-ink);
    font-size: 9.6pt;
    font-weight: 760;
    line-height: 1.25;
    break-after: avoid;
    page-break-after: avoid;
  }

  .aphr-report p {
    margin: 0 0 0.09in;
    color: #30383b;
    font-size: 9.8pt;
    line-height: 1.46;
    orphans: 3;
    widows: 3;
  }

  .aphr-report p:last-child {
    margin-bottom: 0;
  }

  .aphr-report .section-content {
    color: #30383b;
    white-space: pre-line;
  }

  .aphr-report .citation {
    color: var(--print-teal);
    font-size: 0.72em;
    font-weight: 780;
  }

  .aphr-report figure,
  .aphr-report .intensity-map,
  .aphr-report .overview-figures figure,
  .aphr-report .pager-figures figure {
    margin: 0.14in 0 0.08in;
    padding: 0.08in;
    background: #fbfcfb;
    border: 0.75pt solid var(--print-line);
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .aphr-report .intensity-map {
    display: block;
    max-width: 5.85in;
    margin-right: auto;
    margin-left: auto;
    break-before: page;
    page-break-before: always;
  }

  .aphr-report img {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .aphr-report .intensity-map img,
  .aphr-temporal-recon .introduction img {
    width: 100%;
    max-height: 4.65in;
    object-fit: contain;
  }

  .aphr-report figcaption,
  .aphr-report .image-caption {
    margin: 0.055in 0 0;
    color: var(--print-muted);
    font-size: 8.4pt;
    line-height: 1.25;
    break-before: avoid;
    page-break-before: avoid;
  }

  .aphr-report .pager-estimates,
  .aphr-temporal-recon .pager-summary,
  .aphr-temporal-recon .metric-summary,
  .drawer-summary {
    margin: 0.12in 0;
    padding: 0.08in 0.1in;
    border: 0;
    color: #30383b;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .aphr-report .pager-estimates,
  .aphr-temporal-recon .pager-summary {
    background: #f7f5ee;
    border-left: 3pt solid var(--print-amber);
  }

  .aphr-temporal-recon .metric-summary,
  .drawer-summary {
    background: var(--print-soft);
    border: 0.75pt solid var(--print-line);
  }

  .aphr-report .pager-images,
  .aphr-temporal-recon .overview-figures,
  .aphr-temporal-recon .pager-figures {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.1in;
    margin: 0.12in 0 0.02in;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .aphr-report .pager-img,
  .aphr-temporal-recon .pager-figures img,
  .aphr-temporal-recon .overview-figures img {
    width: 100%;
    max-height: 2.55in;
    background: #fbfcfb;
    border: 0.75pt solid var(--print-line);
    object-fit: contain;
  }

  .aphr-temporal-recon .introduction .overview-figures {
    display: block;
    break-before: page;
    page-break-before: always;
  }

  .aphr-temporal-recon .info-card,
  .aphr-temporal-recon .detail-group,
  .aphr-temporal-recon table,
  .aphr-temporal-recon .timeline li {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .aphr-temporal-recon .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.08in;
  }

  .aphr-temporal-recon .info-card {
    padding: 0.1in;
    background: #fbfcfb;
    border: 0.75pt solid var(--print-line);
  }

  .aphr-temporal-recon .card-meta,
  .aphr-temporal-recon time,
  .aphr-temporal-recon .drawer-note {
    color: var(--print-muted);
    font-size: 8.3pt;
  }

  .aphr-temporal-recon .card-summary {
    color: #30383b;
    font-size: 9pt;
  }

  .aphr-temporal-recon table {
    font-size: 8.5pt;
  }

  .aphr-temporal-recon th,
  .aphr-temporal-recon td {
    padding: 0.045in 0.055in;
    border: 0.75pt solid var(--print-line);
  }

  .aphr-temporal-recon th {
    background: #eef1eb;
  }

  .aphr-report .references {
    margin-top: 0;
    break-before: page;
    page-break-before: always;
  }

  .aphr-report .reference-list {
    color: #30383b;
    font-size: 8.4pt;
    line-height: 1.32;
  }

  .aphr-report .reference-list li {
    margin-bottom: 0.055in;
    line-height: 1.32;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .aphr-report .ref-link {
    color: #246ea6;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 768px) {
  .report-header {
    padding: 24px 0 18px;
  }

  .title-location {
    font-size: 28px;
    line-height: 1.2;
  }

  .title-product {
    font-size: 14px;
  }

  .header-times {
    margin-top: 8px;
  }

  .aphr-report > section,
  .aphr-report > section:first-child {
    padding-top: 26px;
  }

  .aphr-report h2 {
    margin-bottom: 16px;
    font-size: 21px;
  }

  .aphr-report p {
    font-size: 15px;
    text-align: left;
  }

  .aphr-report .section-content {
    text-indent: 0;
  }

  .aphr-report .pager-images,
  .aphr-temporal-recon .overview-figures,
  .aphr-temporal-recon .pager-figures,
  .aphr-temporal-recon .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .aphr-report .pager-estimates,
  .aphr-temporal-recon .pager-summary,
  .aphr-temporal-recon .metric-summary {
    padding: 12px;
  }

  .aphr-temporal-recon .detail-stack {
    gap: 24px;
    margin-top: 24px;
  }

  .aphr-temporal-recon .detail-group {
    padding-top: 20px;
  }

  .aphr-temporal-recon table {
    width: 100%;
  }

  .drawer-panel {
    width: 100vw;
  }

  .drawer-header {
    padding: 14px 16px;
  }

  .drawer-body {
    padding: 18px 16px 24px;
  }
}
