/**
 * Image variation: Postcard
 *
 * Landscape 4:3 aspect ratio, dashed inline-end border (the "stamp"
 * area), soft cream tint background. Subjects are forced to crop —
 * authors should be told in the inspector help text.
 *
 * @package PostFormatsBlockThemes
 * @since 2.1.0
 */

/* Skeuomorph: aged-paper tint stays fixed on any palette. */
.wp-block-image.is-style-postcard {
	background: var(--pfbt-image-postcard-tint, #f5f5f5);
	padding: var(--wp--preset--spacing--small, 0.75rem);
	border-inline-end: 3px dashed var(--pfbt-image-postcard-edge, #666666);
	display: inline-block;
	max-width: 100%;
}

.wp-block-image.is-style-postcard img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
	width: 100%;
}

.wp-block-image.is-style-postcard figcaption {
	margin-block-start: var(--wp--preset--spacing--small, 0.75rem);
	margin-block-end: 0;
	margin-inline: 0;
	padding: 0;
	font-family: var(--wp--preset--font-family--primary, system-ui, sans-serif);
	font-style: italic;
	color: var(--pfbt-image-postcard-caption, #666666);
}

@media print {
	.wp-block-image.is-style-postcard {
		background: transparent;
		border-inline-end: 1px solid currentColor;
	}
	.wp-block-image.is-style-postcard img {
		aspect-ratio: auto;
	}
}
