.p-1 {
	display: grid;
	margin-bottom: 1em;

	p {
		margin-top: 0;
		&:last-child {
			margin-bottom: 0;
		}
	}

	.figure {
		margin-bottom: 0.5em;
	}
}

@media (min-width: 600px) {
	.p-1 {
		grid-template-columns: 1fr 3fr;
		grid-gap: 0.75rem;

		.figure {
			margin-bottom: 0;
		}
	}
}