/* ─── AL Hero — copy left, bento mosaic right ─── */
/* padding-block, never the shorthand — it wipes base.css's padding-inline gutter */
.al-hero { padding-block: 76px 0; position: relative; }
.al-hero::before {
	content: ""; position: absolute; inset: -80px 0 auto 0; height: 620px; z-index: 0;
	background:
		radial-gradient(760px 420px at 82% 4%, rgba(227,73,58,.09), transparent 64%),
		radial-gradient(680px 400px at 6% 30%, rgba(233,178,0,.07), transparent 62%);
	pointer-events: none;
}
.al-hero > * { position: relative; z-index: 1; }

.al-hero__grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 60px; align-items: center; }

.al-hero h1 { font-size: clamp(38px, 4.6vw, 58px); line-height: 1.05; margin: 18px 0 20px; letter-spacing: -0.035em; }
.al-hero h1 em { font-style: normal; color: var(--red); }
.al-hero__lead { font-size: 18.5px; color: var(--ink-3); max-width: 480px; margin: 0 0 30px; }
.al-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.al-hero__signals { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 32px 0 0; padding: 26px 0 0; border-top: 1px solid var(--line); list-style: none; }
.al-hero__signals li { display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: var(--ink-3); }
.al-hero__signals svg { width: 17px; height: 17px; stroke: var(--green); flex: none; }

/* Bento mosaic */
.al-mosaic {
	display: grid;
	grid-template-columns: 1.35fr 1fr;
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 14px; height: 512px;
}
.al-tile {
	position: relative; overflow: hidden; border-radius: var(--r-lg);
	display: block; text-decoration: none; background: var(--bone);
	box-shadow: var(--shadow-1);
	transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease;
}
.al-tile:hover { transform: scale(1.02); box-shadow: var(--shadow-2); }
.al-tile--tall { grid-row: span 2; }
.al-tile img { width: 100%; height: 100%; object-fit: cover; }
.al-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23,23,26,0) 42%, rgba(23,23,26,.8)); }
.al-tile__label {
	position: absolute; inset: auto 0 0 0; z-index: 1; padding: 18px 20px;
	display: flex; align-items: center; gap: 10px;
}
.al-tile__label strong { font-family: var(--font-display); font-size: 16.5px; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.al-tile--tall .al-tile__label strong { font-size: 19px; }
.al-tile__label svg { width: 17px; height: 17px; stroke: #fff; margin-left: auto; flex: none; transition: transform .24s ease; }
.al-tile:hover .al-tile__label svg { transform: translateX(5px); }
.al-tile__pin {
	position: absolute; top: 14px; right: 14px; z-index: 1;
	background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
	font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
	color: var(--ink); padding: 6px 11px; border-radius: var(--r-pill);
}

/* Floating status card overlapping the mosaic */
.al-hero__badge {
	position: absolute; left: -30px; top: 26px; z-index: 2;
	background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-2);
	padding: 15px 20px; display: flex; align-items: center; gap: 13px;
}
.al-hero__media { position: relative; }
.al-hero__badge i { width: 40px; height: 40px; border-radius: 50%; background: var(--red-soft); display: grid; place-items: center; flex: none; }
.al-hero__badge svg { width: 19px; height: 19px; stroke: var(--red); }
.al-hero__badge b { display: block; font-family: var(--font-display); font-size: 15.5px; color: var(--ink); }
.al-hero__badge span { font-size: 12.5px; color: var(--ink-3); }

@media (max-width: 1060px) {
	.al-hero__grid { grid-template-columns: 1fr; gap: 44px; }
	.al-mosaic { height: 420px; }
	.al-hero__badge { left: 16px; }
}
@media (max-width: 700px) {
	.al-hero__badge { position: static; margin-top: 14px; }
	.al-hero { padding-top: 46px; }
	.al-hero__actions .al-btn { width: 100%; }
	.al-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 150px; height: auto; }
	.al-tile--tall { grid-row: span 1; grid-column: span 2; }
	.al-hero__badge { position: static; margin-top: 14px; }
	/* The `mosaic_height` control prints `{{WRAPPER}} .al-mosaic { height: 512px }` at (0,3,0)
	   with no media query, so the `height: auto` above (0,1,0) never applied — measured 512px
	   at a 375px viewport, with the three tiles crushed inside it. A SLIDER cannot express
	   `auto`, so the mobile height is fixed here rather than made configurable.
	   Devendra, 2026-08-13. */
	body[class] .elementor .elementor-widget .al-mosaic { height: auto; }
}
