.apd-grid {
	display: grid;
	grid-template-columns: repeat(var(--apd-columns, 1), minmax(0, 1fr));
	gap: 40px;
	margin: 24px auto;
	max-width: 770px;
}
.apd-grid--single {
	max-width: 770px;
}

.apd-card {
	display: block;
	width: 100%;
	max-width: 770px;
	margin: 0 auto;
	text-align: center;
}

/* Image: no padding, no border, no margin — flush, centered, capped at 770px */
.apd-card__image-link {
	display: block;
	margin: 0;
	padding: 0;
	line-height: 0;
}
.apd-card__image-link img {
	display: block;
	width: 100%;
	max-width: 770px;
	height: auto;
	margin: 0 auto;
	border: 0;
	padding: 0;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
}
.apd-card__placeholder {
	display: block;
	padding: 60px 0;
	color: #9ca3af;
	font-size: 13px;
}

/* Pill-style CTA button below the image */
.apd-card__button {
	display: inline-block;
	margin: 24px auto 0;
	background: #B22222;
	color: #fff !important;
	font-weight: 700;
	font-size: 20px;
	letter-spacing: .01em;
	padding: 16px 48px;
	border-radius: 999px;
	text-decoration: none !important;
	transition: background .15s ease;
}
.apd-card__button:hover {
	background: #8f1c1c;
	color: #fff;
}

@media (max-width: 800px) {
	.apd-grid,
	.apd-card,
	.apd-card__image-link img {
		max-width: 100%;
	}
	.apd-card__button {
		font-size: 17px;
		padding: 14px 32px;
	}
}
