/**
 * Webflow horizontal Publication-card grid uses unique #w-node-* ids.
 * Dynamic lists duplicate those ids invalidly; mirror placement via nth-child
 * under known wrappers (about authors, home hero latest).
 */
.about-authors_card .Publication-card.w-variant-ff3f4a52-dcbd-bf02-aeef-011fa109d1e7 > *:nth-child(1),
.hero-latest-horizontal-cards .Publication-card.w-variant-ff3f4a52-dcbd-bf02-aeef-011fa109d1e7 > *:nth-child(1) {
  grid-area: 1 / 1 / 2 / 2;
  place-self: start;
}

.about-authors_card .Publication-card.w-variant-ff3f4a52-dcbd-bf02-aeef-011fa109d1e7 > *:nth-child(2),
.hero-latest-horizontal-cards .Publication-card.w-variant-ff3f4a52-dcbd-bf02-aeef-011fa109d1e7 > *:nth-child(2) {
  grid-area: 1 / 1 / 3 / 2;
}

.about-authors_card .Publication-card.w-variant-ff3f4a52-dcbd-bf02-aeef-011fa109d1e7 > *:nth-child(3),
.hero-latest-horizontal-cards .Publication-card.w-variant-ff3f4a52-dcbd-bf02-aeef-011fa109d1e7 > *:nth-child(3) {
  grid-column: span 2 / span 2;
}

.about-authors_card .Publication-card.w-variant-ff3f4a52-dcbd-bf02-aeef-011fa109d1e7 > *:nth-child(4),
.hero-latest-horizontal-cards .Publication-card.w-variant-ff3f4a52-dcbd-bf02-aeef-011fa109d1e7 > *:nth-child(4) {
  grid-area: 2 / 2 / 3 / 3;
}

.about-authors_card .Publication-card.w-variant-ff3f4a52-dcbd-bf02-aeef-011fa109d1e7 > *:nth-child(5),
.hero-latest-horizontal-cards .Publication-card.w-variant-ff3f4a52-dcbd-bf02-aeef-011fa109d1e7 > *:nth-child(5) {
  grid-area: 2 / 2 / 3 / 4;
}

@media screen and (max-width: 991px) {
  .about-authors_card .Publication-card.w-variant-ff3f4a52-dcbd-bf02-aeef-011fa109d1e7 > *:nth-child(2),
  .hero-latest-horizontal-cards .Publication-card.w-variant-ff3f4a52-dcbd-bf02-aeef-011fa109d1e7 > *:nth-child(2) {
    grid-row-end: 2;
    grid-column-end: 3;
  }

  .about-authors_card .Publication-card.w-variant-ff3f4a52-dcbd-bf02-aeef-011fa109d1e7 > *:nth-child(4),
  .hero-latest-horizontal-cards .Publication-card.w-variant-ff3f4a52-dcbd-bf02-aeef-011fa109d1e7 > *:nth-child(4) {
    grid-area: 3 / 1 / 4 / 2;
  }

  .about-authors_card .Publication-card.w-variant-ff3f4a52-dcbd-bf02-aeef-011fa109d1e7 > *:nth-child(5),
  .hero-latest-horizontal-cards .Publication-card.w-variant-ff3f4a52-dcbd-bf02-aeef-011fa109d1e7 > *:nth-child(5) {
    grid-area: 3 / 1 / 4 / 3;
  }
}
