/*
 * „Do pobrania” — archiwum CPT dehoust_download (Pencil g6o1UD).
 * BEM: dehoust-downloads__*. Zależny od dehoust-main (kontener, tokeny).
 */

.dehoust-downloads {
	background: #fff;
	padding-block: 3rem 4rem;
}

@media (min-width: 1024px) {
	.dehoust-downloads {
		padding-block: 4.5rem 6rem;
	}
}

.dehoust-downloads__inner {
	display: flex;
	flex-direction: column;
}

/* Nagłówek główny + akcent */
.dehoust-downloads__head {
	margin-bottom: 2.5rem;
}

.dehoust-downloads__heading {
	margin: 0;
	font-family: var(--dehoust-font-heading);
	font-size: clamp(1.75rem, 4vw, 2.5rem); /* 40 px */
	font-weight: 700;
	line-height: 1.2;
	color: var(--dehoust-color-text); /* #252525 */
}

.dehoust-downloads__rule {
	display: flex;
	align-items: center;
	margin-top: 0.75rem;
}

.dehoust-downloads__accent {
	width: 2.5rem; /* 40 px */
	height: 0.375rem; /* 6 px */
	flex-shrink: 0;
	background: var(--dehoust-color-primary); /* #096cb2 */
}

.dehoust-downloads__rule-line {
	height: 0.8px;
	flex: 1;
	background: #e2f3ff;
}

/* Grupa kategorii */
.dehoust-downloads__group {
	margin-bottom: 2.75rem;
}

.dehoust-downloads__group:last-child {
	margin-bottom: 0;
}

.dehoust-downloads__group-header {
	margin-bottom: 1.25rem;
}

.dehoust-downloads__group-title {
	margin: 0;
	font-family: var(--dehoust-font-heading);
	font-size: 1.75rem; /* 28 px */
	font-weight: 700;
	line-height: 1.3;
	color: var(--dehoust-color-text); /* #252525 */
}

.dehoust-downloads__group-accent {
	display: block;
	width: 2.5rem; /* 40 px */
	height: 0.375rem; /* 6 px */
	margin-top: 0.625rem;
	background: var(--dehoust-color-primary); /* #096cb2 */
}

/* Lista + wiersze */
.dehoust-downloads__list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem; /* 8 px */
	margin: 0;
	padding: 0;
	list-style: none;
}

.dehoust-downloads__row {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	min-height: 4.125rem; /* 66 px */
	border-radius: 0.5rem;
	background: #e6f5fc;
	padding: 0.5rem 1.5rem; /* 24 px poziomo */
}

.dehoust-downloads__file {
	display: flex;
	align-items: center;
	gap: 1.125rem; /* 18 px */
	flex: 1;
	min-width: 0;
}

.dehoust-downloads__file-icon {
	flex-shrink: 0;
	width: auto; /* ikona jest wyższa niż szersza — szerokość liczona z proporcji */
	height: 2.125rem;
}

.dehoust-downloads__name {
	min-width: 0;
	font-family: var(--dehoust-font-body);
	font-size: 1rem; /* 16 px */
	font-weight: 700;
	line-height: 1.4;
	color: var(--dehoust-color-text-muted); /* #1d1d1d */
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Zielony przycisk „Pobierz” */
.dehoust-downloads__btn {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 11.25rem; /* 180 px */
	height: 3.125rem; /* 50 px */
	border-radius: var(--dehoust-radius-btn); /* 8 px */
	background: var(--dehoust-color-accent, #77b82b);
	font-family: var(--dehoust-font-body);
	font-size: 0.9375rem; /* 15 px */
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: filter var(--dehoust-transition), background-color var(--dehoust-transition);
}

.dehoust-downloads__btn:hover,
.dehoust-downloads__btn:focus-visible {
	filter: brightness(0.94);
	color: #fff;
	opacity: 1;
}

.dehoust-downloads__btn-icon {
	flex-shrink: 0;
	width: 0.9375rem;
	height: 0.9375rem;
}

.dehoust-downloads__empty {
	margin: 0;
	font-size: 1.125rem;
	color: var(--dehoust-color-text-muted);
}

/* Responsywność */
@media (max-width: 768px) {
	.dehoust-downloads__row {
		flex-direction: column;
		align-items: stretch;
		gap: 0.875rem;
		padding: 1rem 1.25rem;
	}

	.dehoust-downloads__name {
		white-space: normal;
	}

	.dehoust-downloads__btn {
		width: 100%;
	}
}
