/* pe_title_desc_figure_items_lite - title/desc, centered figure + caption below,
   2-col items, optional closing. Scoped under .pe_tdfi. Explicit rules only
   (no reliance on unverified purged utilities). */
.pe_tdfi .tdfi_figure {
	margin: 0;
}
.pe_tdfi .tdfi_figure img {
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 960px;
	height: auto;
}
.pe_tdfi .tdfi_figure figcaption {
	font-style: italic;
	text-align: left;
	font-size: 16px;
	max-width: 960px; /* track the image width so their edges stay flush */
	margin: 0 auto;
	font-family: var(--latoregular);
}
.pe_tdfi .tdfi_closing p {
	text-align: center;
	margin-bottom: 0;
}

.pe_tdfi .tdfi_desc_2col {
  column-count: 2;
  column-gap: 40px;
}
@media (max-width: 767px) {
  .pe_tdfi .tdfi_desc_2col {
    column-count: 1;
  }
}
