:root {
  color-scheme: light;
  --page: #fbfbf8;
  --ink: #171719;
  --muted: #63636d;
  --line: #deded7;
  --accent: #b22d35;
  --accent-dark: #7b1f28;
  --blue: #154f8e;
  --figure-red: #ff1f1f;
  --figure-blue: #0070c0;
  --surface: #ffffff;
  --max-width: 1500px;
  --font-main: "Abadi", "Abadi MT", "Abadi MT Condensed Light", "Aptos", "Segoe UI", sans-serif;
  --type-section-title: clamp(1.45rem, 2.1vw, 2rem);
  --type-column-label: 1.34rem;
  --type-concept-label: 1.18rem;
  --type-resource-label: 1rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

button,
input,
select,
textarea {
  font: inherit;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(178, 45, 53, 0.08), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, var(--page) 46rem);
  color: var(--ink);
  font-family: var(--font-main);
  line-height: 1.65;
}

main,
footer {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.hero {
  padding: 76px 0 38px;
  text-align: center;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: min(1500px, calc(100vw - 24px));
  margin: 0 auto;
  font-family: var(--font-main);
  font-size: clamp(2rem, 3.7vw, 3.05rem);
  line-height: 1.1;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

h2 {
  margin: 0 0 18px;
  font-family: var(--font-main);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.authors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  max-width: 1500px;
  margin: 32px auto 0;
  color: #222229;
  font-size: clamp(1.1rem, 2vw, 1.2rem);
  line-height: 1.4;
}

.authors span {
  white-space: nowrap;
}

@media (min-width: 900px) {
  .authors {
    max-width: none;
    flex-wrap: nowrap;
    gap: 8px 14px;
    font-size: 1.25rem;
  }
}

.affiliations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 24px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.8vw, 1.18rem);
  line-height: 1.4;
}

.conference-badge {
  display: grid;
  justify-items: center;
  gap: 4px;
  margin: 0;
  color: var(--accent-dark);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-resources {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 6vw, 80px);
  margin-top: 22px;
}

.hero-resources .resource-card {
  font-size: 1.12rem;
}

@media (min-width: 721px) {
  .hero-resources > .conference-badge {
    transform: translateY(-7px);
  }

  .hero-resources > .resource-card {
    transform: translateY(7px);
  }
}

.conference-badge img {
  display: block;
  width: min(172px, 42vw);
  height: auto;
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px clamp(30px, 5vw, 56px);
  margin-top: 28px;
}

.resource-card {
  display: grid;
  width: 92px;
  justify-items: center;
  gap: 8px;
  color: #2d70d6;
  font-size: var(--type-resource-label);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.resource-card[href]:hover .resource-label,
.resource-card[href]:focus-visible .resource-label {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.resource-card[href]:focus-visible {
  border-radius: 6px;
  outline: 2px solid rgba(45, 112, 214, 0.32);
  outline-offset: 8px;
}

.resource-disabled {
  cursor: default;
}

.resource-visual {
  display: flex;
  height: 82px;
  align-items: center;
  justify-content: center;
}

.paper-preview img {
  display: block;
  width: 58px;
  height: auto;
  box-shadow: 0 12px 24px rgba(20, 20, 24, 0.2);
}

.code-icon svg {
  width: 62px;
  height: 62px;
  color: #151516;
}

.video-icon svg {
  width: 72px;
  height: auto;
  color: #ff0808;
}

.resource-label {
  display: block;
}

.teaser,
.summary,
.abstract {
  padding: 34px 0;
}

.teaser h2,
.summary h2,
.abstract h2 {
  text-align: center;
}

figure {
  margin: 0;
}

.figure-stack {
  display: grid;
  gap: 34px;
}

.figure-stack > * {
  min-width: 0;
}

.figure-stack > .teaser-figure[aria-label="Controllable Erasure Strength"] {
  order: 2;
}

.baseline-comparison {
  order: 1;
  padding: 24px 0 22px;
}

.figure-stack > .baseline-panel[data-baseline-panel="flux"] {
  order: 4;
}

.baseline-tabs {
  display: flex;
  justify-content: center;
  width: fit-content;
  max-width: calc(100% - 28px);
  margin: 0 auto 18px;
  padding: 4px;
  border: 1px solid #cfd6df;
  border-radius: 999px;
  background: #f4f6f8;
}

.baseline-tab {
  min-height: 38px;
  padding: 7px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #4c5663;
  font: 600 var(--type-resource-label) / 1.2 var(--font-main);
  cursor: pointer;
}

.baseline-tab[aria-selected="true"] {
  background: #1b5fbf;
  color: #fff;
  box-shadow: 0 1px 3px rgba(13, 46, 93, 0.24);
}

.baseline-tab:focus-visible {
  outline: 3px solid #8ab5e5;
  outline-offset: 2px;
}

.baseline-comparison .teaser-figure {
  padding: 0;
}

.baseline-panel > .teaser-figure[aria-label="Controllable Erasure Strength"] {
  padding: 24px 0 22px;
}

.teaser-figure {
  overflow: hidden;
  padding: 24px 0 22px;
}

.figure-title {
  width: min(100%, 1500px);
  margin: 0 auto 16px;
  padding: 0 20px;
  color: #141418;
  font-family: var(--font-main);
  font-size: var(--type-section-title);
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;
}

.figure-scroll {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 2px 2px 12px;
}

.figure-scroll:focus-within {
  outline: 2px solid rgba(178, 45, 53, 0.32);
  outline-offset: 4px;
}

.strength-pair-block {
  margin-top: 24px;
}

.comparison-sampler-list {
  display: grid;
  gap: clamp(36px, 5vw, 64px);
}

.comparison-sampler {
  min-width: 0;
}

.comparison-sample-controls {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  color: #4c5663;
}

.comparison-sample-button,
.comparison-sample-dot {
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.comparison-sample-button {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid #cfd6df;
  border-radius: 50%;
  background: #ffffff;
  font-size: 1.65rem;
  line-height: 1;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.comparison-sample-button:hover:not(:disabled) {
  border-color: #1b5fbf;
  background: #eef5ff;
  color: #1b5fbf;
}

.comparison-sample-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.comparison-sample-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  background: #c4ccd5;
  transition: transform 160ms ease, background-color 160ms ease;
}

.comparison-sample-dot:hover,
.comparison-sample-dot[data-active] {
  background: #1b5fbf;
}

.comparison-sample-dot[data-active] {
  transform: scale(1.2);
}

.comparison-sample-button:focus-visible,
.comparison-sample-dot:focus-visible {
  outline: 3px solid #8ab5e5;
  outline-offset: 3px;
}

.comparison-sampler.is-changing .comparison-sample:not([hidden]) {
  animation: comparison-sample-in 220ms ease-out;
}

@keyframes comparison-sample-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .comparison-sample-button,
  .comparison-sample-dot {
    transition: none;
  }

  .comparison-sampler.is-changing .comparison-sample:not([hidden]) {
    animation: none;
  }
}

.figure-table {
  --tile: clamp(92px, 9.2vw, 180px);
  --tile-gap: clamp(4px, 0.3vw, 6px);
  --pair-label-width: clamp(42px, 3.4vw, 62px);
  --row-label-width: clamp(28px, 2vw, 30px);
  --grid-label-width: calc(var(--pair-label-width) + var(--row-label-width) + (var(--tile-gap) * 2));
  border-collapse: separate;
  border-spacing: var(--tile-gap);
  margin: 0 auto;
  color: #050505;
  font-family: var(--font-main);
  line-height: 1;
  table-layout: fixed;
}

@media (min-width: 721px) {
  .figure-scroll {
    display: grid;
    justify-content: center;
    overflow-x: visible;
  }

  .figure-table {
    margin-inline: auto;
  }
}

@media (min-width: 981px) {
  .baseline-panel .figure-table,
  .figure-stack > .teaser-figure[aria-label="Controllable Erasure Strength"] .figure-table {
    transform: translateX(calc(var(--grid-label-width) / -2));
  }

  .baseline-panel,
  .figure-stack > .teaser-figure[aria-label="Controllable Erasure Strength"] {
    overflow: visible;
  }

  .baseline-panel > .teaser-figure[aria-label="Controllable Erasure Strength"] {
    overflow: visible;
  }
}

@media (min-width: 981px) and (max-width: 1399px) {
  .baseline-panel .figure-table {
    transform: none;
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .figure-scroll {
    display: block;
    overflow-x: auto;
  }

  .figure-table {
    margin-inline: 0 auto;
  }
}

.flux-table {
  --tile: clamp(96px, 9.2vw, 180px);
  --grid-label-width: calc(var(--row-label-width) + var(--tile-gap));
}

.figure-table th,
.figure-table td {
  padding: 0;
  vertical-align: middle;
}

.figure-table td,
.method-label {
  width: var(--tile);
  min-width: var(--tile);
}

.figure-table td {
  height: var(--tile);
}

.figure-table .original-method,
.figure-table tbody td:first-of-type {
  padding-right: calc(var(--tile-gap) * 2);
}

.method-label {
  height: 30px;
  padding-bottom: 5px;
  font-size: var(--type-column-label);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.pair-spacer {
  width: var(--pair-label-width);
  min-width: var(--pair-label-width);
}

.row-spacer,
.vertical-label {
  width: var(--row-label-width);
  min-width: var(--row-label-width);
}

.vertical-label {
  position: relative;
  height: var(--tile);
  font-size: var(--type-concept-label);
  font-weight: 500;
}

.vertical-label-tall {
  height: calc(var(--tile) * 3 + (var(--tile-gap) * 2));
}

.vertical-label-four {
  height: calc(var(--tile) * 4 + (var(--tile-gap) * 3));
}

.vertical-label span,
.erase-label span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  white-space: nowrap;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.concept-erased {
  color: var(--figure-red);
}

.concept-preserved {
  color: var(--figure-blue);
}

.pair-label {
  position: relative;
  width: var(--pair-label-width);
  min-width: var(--pair-label-width);
  height: calc(var(--tile) * 2 + var(--tile-gap));
  font-size: var(--type-concept-label);
  font-weight: 500;
}

.pair-label-tall {
  height: calc(var(--tile) * 6 + (var(--tile-gap) * 5));
}

.pair-label-eight {
  height: calc(var(--tile) * 8 + (var(--tile-gap) * 7));
}

.brace {
  position: absolute;
  top: 11px;
  right: 2px;
  bottom: 11px;
  width: 12px;
  border-left: 2px solid #111111;
}

.brace::before,
.brace::after {
  content: "";
  position: absolute;
  left: -2px;
  width: 12px;
  border-top: 2px solid #111111;
}

.brace::before {
  top: 0;
}

.brace::after {
  bottom: 0;
}

.pair-text {
  position: absolute;
  top: 50%;
  left: 42%;
  display: inline-flex;
  gap: 7px;
  align-items: baseline;
  white-space: nowrap;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.erase-label {
  position: relative;
  width: var(--pair-label-width);
  min-width: var(--pair-label-width);
  height: var(--tile);
  font-size: var(--type-concept-label);
  font-weight: 500;
}

.strength-axis {
  position: relative;
  height: 34px;
  padding-bottom: 8px;
  font-size: var(--type-column-label);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.axis-arrow {
  position: absolute;
  right: 10px;
  left: 10px;
  top: 13px;
  z-index: 0;
  display: block;
  height: 0;
  padding: 0;
  border-top: 2px solid #111111;
}

.axis-arrow::before,
.axis-arrow::after {
  content: "";
  position: absolute;
  top: -6px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.axis-arrow::before {
  left: -10px;
  border-right: 10px solid #111111;
}

.axis-arrow::after {
  right: -10px;
  border-left: 10px solid #111111;
}

.axis-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 14px;
  background: #ffffff;
}

.strength-pair-gap td {
  height: 24px;
}

.figure-table tbody tr.group-start > * {
  padding-top: 26px;
}

.tile-link {
  position: relative;
  display: block;
  width: var(--tile);
  height: var(--tile);
  overflow: hidden;
  background: transparent;
  color: inherit;
  outline-offset: 3px;
  transition: opacity 160ms ease;
}

.tile-link:hover,
.tile-link:focus-visible {
  z-index: 1;
  opacity: 0.88;
}

.tile-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

figcaption {
  max-width: 850px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.98rem;
  text-align: center;
}

.teaser-caption {
  box-sizing: border-box;
  width: calc((8 * clamp(92px, 9.2vw, 180px)) + (9 * clamp(4px, 0.3vw, 6px)));
  margin: 4px auto 0;
  padding: 0 0 8px;
  color: var(--muted);
  font-size: var(--type-concept-label);
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
}

.lightbox-open {
  overflow: hidden;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(12, 12, 16, 0.82);
}

.lightbox-panel {
  display: grid;
  width: min(94vw, 780px);
  max-height: 94vh;
  gap: 14px;
}

.lightbox-frame {
  display: grid;
  place-items: center;
  min-height: 0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.lightbox-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 76vh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #ffffff;
}

.lightbox-caption {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.35;
}

.lightbox-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.lightbox-action {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.lightbox-action:hover,
.lightbox-action:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.summary {
  border: 0;
}

.teaser-summary {
  display: flex;
  gap: clamp(20px, 2.4vw, 38px);
  align-items: center;
  width: min(100%, 1320px);
  margin: 24px auto;
  border: 1px solid #89b8e6 !important;
  border-radius: 22px;
  padding: clamp(22px, 2.4vw, 34px) clamp(24px, 3.5vw, 48px);
  background: #e1efff;
  text-align: left;
}

.summary-kicker {
  flex: 0 0 auto;
  padding-right: clamp(20px, 2.4vw, 38px);
  border-right: 3px solid #7bafe2;
  color: #171719;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1;
}

.more-results-title {
  margin: 40px 0 34px;
  color: #141418;
  font-family: var(--font-main);
  font-size: var(--type-section-title);
  line-height: 1.1;
  text-align: center;
}

.summary p {
  max-width: none;
  margin: 0;
  color: #47566b;
  font-size: clamp(1.08rem, 2.1vw, 1.45rem);
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
}

.abstract {
  max-width: 890px;
  margin: 0 auto;
}

.abstract p {
  margin: 0 0 18px;
  color: #2d2d33;
  font-size: 1.04rem;
}

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

footer {
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding: 30px 0 46px;
  color: var(--muted);
  text-align: center;
}

footer p {
  margin: 0 0 28px;
  font-size: 0.98rem;
}

footer a {
  color: inherit;
  text-decoration-color: rgba(99, 99, 109, 0.55);
  text-underline-offset: 3px;
}

.citation-card {
  width: min(100%, 1400px);
  margin: 0 auto 30px;
  overflow: hidden;
  border: 1px solid #e2e5e9;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(20, 20, 24, 0.07);
  color: #34363a;
  text-align: left;
}

.citation-card-header {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px 0 28px;
  border-bottom: 1px solid #e4e6e9;
  box-shadow: 0 3px 8px rgba(20, 20, 24, 0.05);
}

.citation-card h2 {
  margin: 0;
  font-size: 1.32rem;
  font-weight: 600;
}

.citation-copy {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #202124;
  cursor: pointer;
}

.citation-copy:hover,
.citation-copy:focus-visible {
  background: #eef3f9;
}

.citation-copy:focus-visible {
  outline: 2px solid #6ea5dd;
  outline-offset: 2px;
}

.citation-copy svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.citation-card pre {
  margin: 0;
  overflow-x: auto;
  padding: 28px;
  color: #3e4248;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(0.78rem, 1.45vw, 1rem);
  line-height: 1.55;
  white-space: pre;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

footer img {
  display: block;
  width: min(100%, 920px);
  height: auto;
  margin: 0 auto;
}

@media (min-width: 721px) and (max-width: 980px) {
  .teaser-figure {
    padding-right: 12px;
    padding-left: 12px;
  }

  .figure-table {
    --tile: 86px;
  }

  .flux-table {
    --tile: 90px;
  }

  .method-label {
    font-size: 1.22rem;
  }

  .strength-axis {
    font-size: 1.22rem;
  }

  .vertical-label,
  .erase-label,
  .pair-label {
    font-size: 1.08rem;
  }

  .teaser-caption {
    width: calc((8 * 86px) + (9 * 4px));
    font-size: 1.08rem;
  }
}

@media (max-width: 720px) {
  main,
  footer {
    width: min(calc(100% - 22px), var(--max-width));
  }

  .hero {
    padding: 48px 0 24px;
  }

  h1 {
    font-size: clamp(1.82rem, 8.4vw, 2.32rem);
    line-height: 1.14;
  }

  .authors span {
    white-space: normal;
  }

  .conference-badge img {
    width: min(148px, 46vw);
  }

  .hero-resources {
    flex-wrap: wrap;
    gap: 18px 24px;
  }

  .resource-links {
    gap: 18px 24px;
    margin-top: 24px;
  }

  .resource-card {
    width: 76px;
    font-size: 0.92rem;
  }

  .hero-resources .resource-card {
    font-size: 1rem;
  }

  .citation-card {
    margin-bottom: 24px;
    border-radius: 12px;
  }

  .citation-card-header {
    min-height: 58px;
    padding: 0 14px 0 20px;
  }

  .citation-card h2 {
    font-size: 1.16rem;
  }

  .citation-card pre {
    padding: 20px;
    font-size: 0.75rem;
  }

  .resource-visual {
    height: 70px;
  }

  .paper-preview img {
    width: 50px;
  }

  .code-icon svg {
    width: 54px;
    height: 54px;
  }

  .video-icon svg {
    width: 62px;
  }

  .teaser,
  .summary,
  .abstract {
    padding: 26px 0;
  }

  .teaser-figure {
    padding: 18px 0 20px;
  }

  .baseline-comparison {
    padding: 18px 0 20px;
  }

  .baseline-tabs {
    margin-bottom: 14px;
  }

  .baseline-tab {
    min-height: 36px;
    padding: 7px 13px;
    font-size: 0.92rem;
  }

  .figure-title {
    margin-bottom: 16px;
    padding: 0 14px;
    font-size: 1.35rem;
  }

  .more-results-title {
    font-size: 1.35rem;
  }

  .figure-table {
    --tile: 72px;
    --pair-label-width: 36px;
    --row-label-width: 28px;
    --tile-gap: 3px;
  }

  .method-label {
    height: 26px;
    font-size: 1.06rem;
  }

  .vertical-label,
  .erase-label {
    font-size: 1rem;
  }

  .pair-label {
    font-size: 1rem;
  }

  .strength-pair-gap td {
    height: 18px;
  }

  .comparison-sampler-list {
    gap: 34px;
  }

  .comparison-sample-controls {
    gap: 8px;
    margin-top: 2px;
  }

  .comparison-sample-button {
    width: 30px;
    height: 30px;
    font-size: 1.5rem;
  }

  .strength-axis {
    height: 30px;
    font-size: 0.88rem;
  }

  .strength-axis::before,
  .strength-axis::after,
  .strength-axis span::before,
  .strength-axis span::after {
    display: none;
  }

  .strength-axis {
    height: 0;
    padding: 0;
    font-size: 0;
  }

  .strength-axis span {
    display: none;
  }

  .figure-table tbody tr.group-start > * {
    padding-top: 18px;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .lightbox-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .lightbox-action {
    flex: 1 1 118px;
  }

  figcaption,
  .abstract p {
    font-size: 0.98rem;
  }

  .teaser-caption {
    width: min(calc(100% - 22px), calc((8 * 72px) + (9 * 3px)));
    max-width: calc(100% - 22px);
    margin-right: auto;
    margin-left: auto;
    padding: 0 0 8px;
    font-size: 1rem;
    transform: none;
  }
}
