/* Preserve the full owned workshop artwork inside the 16:9 video facade. */
.tn-real-skills-post .tn-youtube-facade > .tn-youtube-facade__poster img {
  object-fit: contain;
}

/* Keep text-bearing workshop artwork complete in every post listing. */
.category-real-skills .tn-post-list-image,
.tn-post-list-item:has(.tn-post-list-categories a[href$="/category/real-skills/"]) .tn-post-list-image {
  width: min(36%, 230px);
  height: auto;
  aspect-ratio: 16 / 9;
  background: var(--wp--preset--color--paper);
}

.category-real-skills .tn-post-list-image img,
.tn-post-list-item:has(.tn-post-list-categories a[href$="/category/real-skills/"]) .tn-post-list-image img {
  /* WordPress emits object-fit:cover inline on this block. */
  object-fit: contain !important;
}

@media (max-width: 560px) {
  .category-real-skills .tn-post-list-image,
  .tn-post-list-item:has(.tn-post-list-categories a[href$="/category/real-skills/"]) .tn-post-list-image {
    width: 100%;
    height: auto;
  }
}
