/* =============================================
   03_WIDGETS / w-pageblock
   Блок заголовка страницы (с фоном).
   ============================================= */

.debtpage:has(.pageblock) {
	/* фон подставляется через responsive */
}
.debtpage:has(.errorblock) {
	/* фон подставляется через responsive */
}

.pageblock__title {
	color: var(--whiteColor);
}

.whitepageblock {
	background-color: var(--whiteColor);
}

/* ── Responsive ── */

@media (max-width: 74.99875em) {
	.pageblock {
		padding-bottom: 40px;
	}
}
@media (max-width: 63.99875em) {
	.debtpage:has(.pageblock) {
		background: url("../../assets/img/pageblock-bg-small.jpg") 0 0/cover no-repeat;
	}
	.debtpage:has(.errorblock) {
		background: url("../../assets/img/pageblock-bg-small.jpg") 0 0/cover no-repeat;
	}
	.pageblock__title:not(:last-child) {
		margin-bottom: 20px;
	}
	.whitepageblock {
		padding-bottom: 40px;
	}
	.whitepageblock__title:not(:last-child) {
		margin-bottom: 20px;
	}
}
@media (min-width: 63.99875em) {
	.debtpage:has(.pageblock) {
		background: url("../../assets/img/pageblock-bg-big.jpg") 0 0/cover no-repeat;
	}
	.debtpage:has(.errorblock) {
		background: url("../../assets/img/pageblock-bg-big.jpg") 0 0/cover no-repeat;
	}
	.pageblock__title:not(:last-child) {
		margin-bottom: 32px;
	}
	.whitepageblock {
		padding-bottom: 50px;
	}
	.whitepageblock__title:not(:last-child) {
		margin-bottom: 32px;
	}
}
@media (min-width: 74.99875em) {
	.pageblock {
		padding-bottom: 60px;
	}
	.pageblock__title:not(:last-child) {
		margin-bottom: 40px;
	}
	.whitepageblock {
		padding-bottom: 60px;
	}
	.whitepageblock__title:not(:last-child) {
		margin-bottom: 40px;
	}
}
