/* Cumberland Product Downloads - Frontend */

.cs-product-downloads {
	margin: 1.5em 0;
}
.cs-product-downloads__heading {
	margin: 0 0 0.75em 0;
	font-size: 1.25em;
	font-weight: 600;
	line-height: 1.3;
}
.cs-product-downloads__list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.cs-product-downloads__item {
	margin: 0;
	padding: 0;
}
.cs-product-downloads__link {
	display: flex;
	align-items: flex-start;
	gap: 0.75em;
	padding: 0.75em 1em;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	text-decoration: none;
	color: inherit;
	background: #fafafa;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.cs-product-downloads__link:hover,
.cs-product-downloads__link:focus {
	background: #f0f0f0;
	border-color: #c0c0c0;
	text-decoration: none;
}
.cs-product-downloads__icon {
	flex: 0 0 auto;
	line-height: 0;
	color: currentColor;
	margin-top: 2px;
}
.cs-product-downloads__text {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-width: 0;
}
.cs-product-downloads__title {
	font-weight: 600;
	line-height: 1.3;
	word-break: break-word;
}
.cs-product-downloads__description {
	font-size: 0.9em;
	color: #666;
	margin-top: 0.2em;
	line-height: 1.4;
}

/* Default item spacing for list layout */
.cs-product-downloads--list .cs-product-downloads__item:not(:last-child) {
	margin-bottom: 0.5em;
}

/* Buttons layout */
.cs-product-downloads--buttons .cs-product-downloads__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
}
.cs-product-downloads--buttons .cs-product-downloads__item {
	flex: 0 1 auto;
}
.cs-product-downloads--buttons .cs-product-downloads__link {
	background: #2c3e50;
	color: #fff;
	border-color: #2c3e50;
}
.cs-product-downloads--buttons .cs-product-downloads__link:hover,
.cs-product-downloads--buttons .cs-product-downloads__link:focus {
	background: #1f2d3d;
	border-color: #1f2d3d;
	color: #fff;
}
.cs-product-downloads--buttons .cs-product-downloads__description {
	color: rgba(255, 255, 255, 0.85);
}
