:root {
	--dl-gap: 1.25rem;
	--dl-border: rgba(255, 255, 255, 0.16);
	--dl-bg: rgba(0, 0, 0, 0.16);
	--dl-bg-2: rgba(0, 0, 0, 0.22);
	--dl-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.dl-header h2 {
	margin-bottom: 0.25rem;
}

.dl-header p {
	margin: 0;
	opacity: 0.85;
}

.dl-grid {
	margin-top: 1.25rem;
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--dl-gap);
	align-items: stretch;
}

@media (min-width: 980px) {
	.dl-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.dl-card {
	background: var(--dl-bg-2);
	border: 1px solid var(--dl-border);
	border-radius: 14px;
	padding: 1.15rem 1.15rem;
	box-shadow: var(--dl-shadow);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.dl-card h3 {
	margin: 0 0 0.6rem 0;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.dl-card p {
	margin: 0.25rem 0 0.9rem 0;
	opacity: 0.85;
}

.dl-card .actions {
	margin: 0.6rem 0 0.2rem 0;
}

.dl-tip {
	margin: 0.75rem 0 0 0;
	font-size: 0.95em;
	opacity: 0.9;
	margin-top: auto;
}

.dl-code {
	display: inline-block;
	padding: 0.15rem 0.55rem;
	border-radius: 999px;
	border: 1px solid var(--dl-border);
	background: var(--dl-bg);
	letter-spacing: 0.03em;
}

.dl-faq {
	margin-top: 1.15rem;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
}

.dl-faq-item {
	display: block;
	padding: 0.9rem 1rem;
	background: var(--dl-bg-2);
	border: 1px solid var(--dl-border);
	border-radius: 12px;
	box-shadow: var(--dl-shadow);
	color: inherit;
	text-decoration: none;
}

.dl-faq-item:hover {
	text-decoration: none;
	filter: brightness(1.06);
}

/* Make primary CTA buttons red on this page */
.dl-card .button,
.dl-card .button.alt {
	background-color: #d64040 !important;
	border-color: #d64040 !important;
	color: #fff !important;
}

.dl-card .button:hover,
.dl-card .button.alt:hover {
	background-color: #e14c4c !important;
	border-color: #e14c4c !important;
}
