.rwba-grid {
	display: grid;
	grid-template-columns: repeat(var(--rwba-columns, 1), minmax(0, 1fr));
	gap: 16px;
	align-items: stretch;
	width: 100%;
}

.rwba-ad {
	min-width: 0;
}

.rwba-ad__link,
.rwba-ad__image {
	display: block;
	width: 100%;
}

.rwba-ad__image {
	height: auto;
}

.rwba-ad__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	box-sizing: border-box;
	padding: 24px;
	background: #f3f4f6;
	border: 1px solid #dcdcde;
	border-radius: 4px;
	text-align: center;
}

.rwba-ad__headline {
	margin: 0 0 10px;
	font-size: clamp(20px, 2vw, 30px);
	line-height: 1.2;
}

.rwba-ad__body > :first-child {
	margin-top: 0;
}

.rwba-ad__body > :last-child {
	margin-bottom: 0;
}

.rwba-ad__button {
	display: inline-block;
	align-self: center;
	margin-top: 18px;
	padding: 10px 18px;
	background: #1d4ed8;
	border-radius: 4px;
	color: #fff;
	font-weight: 600;
	text-decoration: none;
}

.rwba-ad__button:hover,
.rwba-ad__button:focus {
	background: #1e40af;
	color: #fff;
}

@media (max-width: 782px) {
	.rwba-grid {
		grid-template-columns: 1fr;
	}
}
