.ov-page {
	--ov-gap: var(--gl-gap-horizontal, 32px);
	--ov-block: calc(var(--gl-gap-vertical, 2.5rem) * 2);
}

.ov-intro__text {
	max-width: 42rem;
	margin-top: .35rem;
}

.ov-intro__text p + p {
	margin-top: .75rem;
}

.ov-page figure {
	margin: 0;
}

.ov-page figure + figure {
	margin-top: 0;
}

.ov-hero__image {
	width: 100%;
	height: auto;
}

.ov-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--gl-gap-vertical, 2.5rem) var(--ov-gap);
	margin-top: var(--ov-block);
}

.ov-grid--singles {
	margin-top: var(--gl-gap-vertical, 2.5rem);
}

.ov-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.ov-card__media {
	display: block;
	overflow: hidden;
	cursor: zoom-in;
}

.ov-card__image {
	width: 100%;
	height: auto;
	transition: transform 600ms ease;
}

.ov-card__media:hover .ov-card__image {
	transform: scale(1.03);
}

.ov-card__body {
	padding-top: 1rem;
}

.ov-card__title {
	margin: 0;
	font-size: var(--font-size-base-500, 1rem);
	font-weight: 400;
	line-height: 1.4;
	color: var(--color-primary-500, #111);
}

.ov-card__meta,
.ov-card__edition {
	margin: 0;
	font-size: var(--font-size-base-500, 1rem);
	line-height: 1.4;
}

.ov-card__edition {
	color: var(--color-primary-400, #808080);
}

.ov-cta {
	margin-top: var(--ov-block);
}

.ov-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 12rem;
	padding: 1.1em 2.25em 1em;
	border: 1px solid var(--color-primary-500, #111);
	border-radius: 50px;
	background-color: transparent;
	color: var(--color-primary-500, #111);
	letter-spacing: .05rem;
	text-decoration: none;
	transition: background-color 200ms ease, color 200ms ease;
}

.ov-button:hover,
.ov-button:focus-visible {
	background-color: var(--color-primary-500, #111);
	color: #fff;
}

@media screen and (min-width: 40rem) {
	.ov-grid--singles {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.ov-grid--sets {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 39.99rem) {
	.ov-button {
		width: 100%;
	}
}
