/* ================================================
   AMOTZ — DISCLAIMER  "שימו לב:"  (Figma 570:1971)
   ================================================
   band   1440x609 · #F6F4EE · padding 80/60 · a blurred warm blob behind the card
   card   900px · rgba(255,255,255,.65) on a 2px #472D00 border
          radius 24 except TOP-RIGHT and BOTTOM-LEFT 100 · padding 50/32 · gap 44
   title  Polin Bold 32/1.4 · #472D00
   body   Polin Medium 18/1.5 · #15140F · three paragraphs, 20px apart
   ================================================ */

.az-disclaimer {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px var(--az-edge);
	overflow: hidden;
	background-color: var(--az-cream);
}

/* The warm blob (570:1972). In Figma it is a rounded rectangle carrying a left-to-right
   gradient, a 103.771px blur and 30% opacity, inset from the band by percentages.

   Reproduced as an element with the same insets and a real `filter: blur()` rather than as a
   flattened image: it is a two-stop linear gradient, which CSS expresses exactly, unlike the
   benefits section's thirteen rotated shapes. The percentage insets scale with the band, so
   it stays in proportion at any width. */
.az-disclaimer__blob {
	position: absolute;
	/* top / right / bottom / left, straight from the design node. */
	inset: 27.25% 1.39% 4.2% 34.93%;
	z-index: 0;
	opacity: 0.3;
	border-radius: 847.286px;
	background-image: linear-gradient(to right, rgba(255, 161, 79, 0.7), rgba(255, 184, 121, 0.7));
	filter: blur(103.771px);
	pointer-events: none;
}

.az-disclaimer__card {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 44px;
	width: 900px;
	max-width: 100%;
	padding: 50px 32px;
	/* A 65% white wash so the blob shows through — `background-color` with alpha rather than
	   `opacity`, which would fade the text with it. */
	background-color: rgba(255, 255, 255, 0.65);
	border: 2px solid var(--az-brown);
	/* PHYSICAL corners: the two 100px are TOP-RIGHT and BOTTOM-LEFT, the same diagonal the
	   research card uses. Logical properties would rotate it under RTL. */
	border-radius: 24px;
	border-top-right-radius: 100px;
	border-bottom-left-radius: 100px;
	text-align: right;
}

.az-disclaimer__title {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--az-brown);
}

.az-disclaimer__body {
	display: flex;
	flex-direction: column;
	gap: 20px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
	color: #15140F;
}

/* ------------------------------------------------
   RESPONSIVE
   ------------------------------------------------ */
@media (max-width: 1024px) {
	.az-disclaimer {
		padding: 64px 32px;
	}

	.az-disclaimer__card {
		gap: 32px;
		padding: 40px 28px;
	}
}

@media (max-width: 640px) {
	.az-disclaimer {
		padding: 48px 20px;
	}

	.az-disclaimer__card {
		padding: 32px 20px;
		gap: 24px;
		border-top-right-radius: 56px;
		border-bottom-left-radius: 56px;
	}

	/* See the !important note in amotz-announcement-bar.css. */
	.az-disclaimer__title {
		font-size: clamp(22px, 6vw, 28px) !important;
	}

	.az-disclaimer__body {
		font-size: 16px !important;
	}
}
