@media screen and (min-width: 1026px) {
	.dynamic-entry-content{
		display: grid !important;
		grid-template-columns: repeat(8, minmax(0, 1fr));
		inline-size: 100%;
	}

	/* Direct children take up 5 columns*/
	.dynamic-entry-content > *,
	.post-excerpt{
		grid-column: span 6;
	}

	/* Figures - full width images, take up 8 columns*/
	.dynamic-entry-content > figure {
		grid-column: span 8;
		display: block;
		width: 100%;
	}
	.dynamic-entry-content > figure img {
		width: 100%;
		display: block;
	}
	/* And to allow for side2-side images, the grid 12 also needs to take up 8 columns  */
	.dynamic-entry-content > .grid--12 {
		grid-column: span 8;
	}
}
