/*
Theme Name: ALWARDA
Theme URI: https://avisaexpert.com/
Author: ALWARDA
Description: Lightweight, migration-safe foundation for the ALWARDA website.
Version: 0.33.0
Text Domain: avisaexpert
Requires at least: 6.4
Requires PHP: 8.1
*/

/* Native hidden state must win over button display rules in the booking flow. */
.av-booking-page [hidden] {
	display: none !important;
}

/* Global heading ceiling: new desktop headings must not exceed this token. */
:root {
	--av-heading-max: 42px;
}

/* Consistent major-heading scale across the public website. */
main :where(h1,h2),
.av-home-hero h1,
.av-home-destinations__intro h2,
.av-home-finder__intro h2,
.av-eligibility-copy h2,
.av-help-intro h2,
.av-home-programs__head h2 {
	font-size: var(--av-heading-max);
	line-height: 1.12;
	text-wrap: balance;
}

/* High-specificity display treatments that previously exceeded the ceiling. */
.av-why-head h2,
.av-company-brand {
	font-size: var(--av-heading-max);
}

/* Give editorial headings enough measure to use available space efficiently. */
.av-home-hero h1,
.av-eligibility-copy h2,
.av-help-intro h2,
.av-eligibility-hero h1 {
	max-width: 18ch;
}

.av-section__intro,
.av-home-finder__intro,
.av-home-programs__head > div {
	max-width: 58rem;
}

@media (max-width: 35rem) {
	main :where(h1,h2),
	.av-home-hero h1,
	.av-home-destinations__intro h2,
	.av-home-finder__intro h2,
	.av-eligibility-copy h2,
	.av-help-intro h2,
	.av-home-programs__head h2 {
		font-size: 34px;
		line-height: 1.08;
	}

	.av-why-head h2,
	.av-company-brand {
		font-size: 34px;
	}
}



