.pg-report-body {
  position: relative;
  isolation: isolate;
  overflow: clip;
  --pg-tri-color: var(--pg-surface);
}

.pg-report-body__layout {
  position: relative;
}

.pg-report-body__prose {
  line-height: 1.3;
}

.pg-report-body__prose.pg-prose > * + * {
  margin-top: clamp(2.5rem, 5vw, 3.75rem);
}

.pg-report-body__prose.pg-prose > :first-child {
  margin-top: 0;
}

.pg-report-body__prose.pg-prose > h2 + * {
  margin-top: var(--pg-gap-4);
}

.pg-report-body__prose.pg-prose > h3 + * {
  margin-top: var(--pg-gap-2);
}

.pg-report-body__prose > :is(p, ul, ol, h2, h3, h4, blockquote, figure) {
  max-width: var(--pg-prose-max-width);
}

@media (min-width: 75.0625rem) {
  .pg-report-body__layout:has(.pg-report-body__keydata) .pg-report-body__prose > :is(p, ul, ol, h2, h3, h4, blockquote, figure) {
    max-width: min(var(--pg-prose-max-width), calc(100% - 28rem));
  }
}

.pg-report-body__prose p {
  color: var(--pg-gabetti-gray);
  font-size: var(--pg-fs-body-lg);
  font-weight: 500;
  line-height: 1.3;
}

.pg-report-body__prose h2 {
  color: var(--pg-gabetti-gray);
  font-size: var(--pg-fs-block-title);
  font-weight: 700;
  line-height: 1.2;
}

.pg-report-body__prose h3 {
  color: var(--pg-black);
  font-size: var(--pg-fs-block-body);
  font-weight: 700;
  line-height: 1.214;
}

.pg-report-body__prose blockquote {
  margin-block: clamp(2rem, 4vw, 3.75rem);
  padding: clamp(2rem, 4vw, 3.75rem) clamp(1.5rem, 4vw, 4rem);
  border: 0;
  background: var(--pg-primary);
  color: var(--pg-white);
  font-style: normal;
  font-size: var(--pg-fs-block-body);
  font-weight: 500;
  line-height: 1.214;
}

.pg-report-body__prose blockquote p {
  margin: 0;
  max-width: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.pg-report-body__prose > figure {
  margin-inline: 0;
  margin-bottom: 0;
}

.pg-report-body__prose > figure img {
  display: block;
  width: 100%;
  aspect-ratio: 864 / 486;
  object-fit: cover;
  border-radius: var(--pg-radius-sm);
  box-shadow: var(--pg-shadow-block);
}

.pg-report-mediaquote {
  display: grid;
  grid-template-columns: minmax(0, 2.08fr) minmax(0, 1fr);
  gap: var(--pg-gap-8);
  align-items: start;
  max-width: none;
}

.pg-report-mediaquote__media {
  margin: 0;
}

.pg-report-mediaquote__media img {
  display: block;
  width: 100%;
  aspect-ratio: 865 / 455;
  object-fit: cover;
}

.pg-report-body__prose .pg-report-mediaquote__quote {
  margin: 0;
  max-width: none;
  color: var(--pg-primary);
  font-size: var(--pg-fs-block-body);
  font-weight: 500;
  line-height: 1.214;
}

.pg-report-body__keydata {
  position: absolute;
  top: var(--pg-report-keydata-top, 51.5rem);
  right: 0;
  width: 26rem;
  padding: clamp(1.75rem, 2.5vw, 2.5rem) var(--pg-gap-8);
  background: var(--pg-primary);
  color: var(--pg-white);
}

.pg-report-body__keydata-list {
  margin: 0;
  padding-left: var(--pg-gap-8);
  display: flex;
  flex-direction: column;
  gap: var(--pg-gap-8);
  list-style: disc;
  color: var(--pg-white);
  font-size: var(--pg-fs-block-body);
  font-weight: 500;
  line-height: 1.214;
}

.pg-report-body__keydata-list li::marker {
  color: var(--pg-white);
}

.pg-report-body__actions {
  margin-top: clamp(2.5rem, 5vw, 3.75rem);
}

@media (max-width: 75rem) {
  .pg-report-body__keydata {
    position: static;
    top: auto;
    width: 100%;
    max-width: var(--pg-prose-max-width);
    margin-bottom: var(--pg-gap-8);
  }
}

@media (max-width: 60rem) {
  .pg-report-mediaquote {
    grid-template-columns: 1fr;
    row-gap: var(--pg-gap-6);
  }
}
