/* Card-news copy must stay visible, including square and portrait covers. */
.dd-row {
  grid-template-columns: minmax(0, 1fr) 280px;
}
.dd-thumbnail {
  display: block;
  width: 100%;
  max-width: 420px;
  justify-self: center;
}
.dd-row .dd-thumbnail img,
.dd-feature .dd-thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: var(--paper);
}
.dd-row .dd-thumbnail img { max-height: 360px; }
.dd-feature .dd-thumbnail img { max-height: 480px; }

@media (max-width: 760px) {
  .dd-row { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .dd-row .dd-thumbnail,
  .dd-feature .dd-thumbnail {
    order: -1;
    max-width: 340px;
  }
  .dd-row .dd-thumbnail img,
  .dd-feature .dd-thumbnail img { max-height: 425px; }
}
