:root{
	--bg: #f5f4f4;
	--card: #e9e9e9;
	--text: #2b2b2b;
	--muted: #6f6f6f;
	--accent: #006191;
	--white: #fff;
	--radius-lg: 10px;
	--radius-md: 10px;
}


/* Outer section (rounded light background like in screenshot) */
.download-section{
	background: var(--bg);
	border-radius: 10px;
	padding: 20px 22px 22px;
}

.download-section__title{
	font-weight: 700;
	font-size: 18px;
	margin: 0 0 16px;
	color: #d07c00; /* slightly darker orange headline */
}

/* 3-column grid like the screenshot */
.download-grid{
	display: grid;
	grid-template-columns: repeat(3, minmax(240px, 1fr));
	gap: 16px;
}

/* Card */
.dl-card{
	background: var(--card);
	border-radius: var(--radius-lg);
	padding: 14px;
	display: grid;
	grid-template-columns: 92px 1fr;
	gap: 14px;
	align-items: stretch;
	min-height: 96px;
}

.dl-card__thumb{
	width: 92px;
	height: 100%;
	max-height: 105px;
	border-radius: var(--radius-md);
	overflow: hidden;
	background: #d7d7d7;
}

.dl-card__thumb img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.dl-card__content{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.dl-card__text{
	min-width: 0; /* allow ellipsis */
}

.dl-card__kicker{
	font-size: 14px;
	color: var(--muted);
	margin: 0 0 2px;
}

.dl-card__title{
	margin: 0;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	overflow: hidden;
	text-overflow: ellipsis;
	color: rgb(15, 35, 56);
}

.dl-card__btn{
	justify-self: end;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 14px;
	border-radius: 999px;
	border: 1.5px solid var(--accent);
	background: transparent;
	color: var(--accent);
	font-weight: 700;
	font-size: 12px;
	cursor: pointer;
	user-select: none;
	text-decoration: none;
	white-space: nowrap;
}

.dl-card__btn:hover {
	color: #20badf;
	text-decoration: none;
	border: 1.5px solid #20badf;
}

.dl-card__btn:focus-visible{
	outline: 3px solid rgba(245, 166, 35, 0.35);
	outline-offset: 2px;
}

.dl-card__icon{
	width: 18px;
	height: 18px;
	display: inline-block;
}

/* Responsive */
@media (max-width: 980px){
	.download-grid{ grid-template-columns: repeat(2, minmax(240px, 1fr)); }
}
@media (max-width: 640px){
	.download-grid{ grid-template-columns: 1fr; }
}