/*
 * Where is Amma banner — fully self-contained styles.
 *
 * Every value here is a resolved final value (color, font-size, spacing)
 * copied from the reference design's computed output, not a reference to
 * any theme variable/class. Nothing in this file depends on styles loaded
 * by the active theme or any page builder.
 */

.wia-banner,
.wia-banner * {
	box-sizing: border-box;
}

/*
 * Full-bleed breakout + hard-zero margin.
 *
 * Block themes commonly apply `max-width:…; margin-left/right:auto !important`
 * to any non-"alignfull" direct child of a constrained content area (this
 * reference theme does exactly that), plus a default top margin between
 * blocks. The doubled class + !important below is a deliberate specificity
 * bump so this always wins regardless of what a given site's theme does —
 * this element must render edge-to-edge with zero margin on any site, not
 * just this reference one.
 */
.wia-banner.wia-banner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	width: 100vw !important;
	max-width: 100vw !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	min-height: 100px;
	padding: 30px 16px;
}

.wia-banner__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.wia-banner__bg-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border: none;
	margin: 0;
	padding: 0;
	max-width: none;
}

.wia-banner__bg-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #d6ae54;
	opacity: 0.4;
}

.wia-banner__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 24px;
	max-width: 1104px;
	width: 100%;
	margin: 0 auto;
}

.wia-banner__icon {
	display: block;
	flex-shrink: 0;
	width: auto;
	height: 40px;
	border: none;
	margin: 0;
	padding: 0;
	max-width: none;
}

.wia-banner__heading,
.wia-banner__location {
	margin: 0;
	padding: 0;
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	color: #2d164c;
	letter-spacing: -0.1px;
	line-height: 1.5;
	text-align: center;
}

.wia-banner__heading {
	font-size: clamp(1rem, 1rem + ((1vw - 0.2rem) * 0.255), 1.125rem);
	font-weight: 400;
	text-transform: none;
}

.wia-banner__location {
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
}

.wia-banner__link {
	color: inherit;
	font-family: inherit;
	font-weight: inherit;
	text-decoration-line: underline;
	text-decoration-style: dotted;
	text-decoration-thickness: 1px;
	text-decoration-color: currentColor;
	text-underline-offset: 0.3em;
}

.wia-banner__link:hover,
.wia-banner__link:focus {
	color: inherit;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-thickness: 1px;
	text-decoration-color: currentColor;
	text-underline-offset: 0.3em;
}

