/* ================================================
   AMOTZ — AUDIENCE  "למי זה מתאים?"  (Figma 566:10292)
   ================================================
   band      1440x634 · #0C0C0C · padding 100/60 · gap 80
   glow      812x225 gold ellipse behind the row
   headline  Polin Bold 54/1.2 · tracking -1.8 · white
   cards     2 x 580px, 32px apart · radius 24 · padding 32
   yes       rgba(246,244,238,.06) on rgba(246,244,238,.1) · body white
   no        rgba(246,244,238,.03) on rgba(246,244,238,.07) · body #8C8578
   label     Polin Medium 14/1.2 · tracking 1.2 · uppercase · #D4A843
   bullet    20px ring with a 6px core
   ================================================ */

.az-audience {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 100px var(--az-edge);
	overflow: hidden;
	background-color: var(--az-ink);
}

.az-audience__glow {
	position: absolute;
	top: 138px; /* the design's 38px inside a column that starts 100px down */
	left: 50%;
	transform: translateX(-50%);
	z-index: 0;
	width: 1212px;
	max-width: 100%;
	height: 625px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	pointer-events: none;
}

.az-audience__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 80px;
	width: 100%;
	max-width: 1184px;
}

.az-audience__title {
	font-size: 54px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -1.8px;
	color: #FFFFFF;
	text-align: center;
}

/* THE "FOR YOU" CARD IS ON THE RIGHT AND IS WRITTEN FIRST.
   In Figma the two are placed by explicit grid columns rather than source order — the
   positive card is `col-2` and the negative `col-1`, so on an LTR canvas the positive one
   sits on the RIGHT. Under dir="rtl" the first grid item fills the right column, so writing
   the positive card first reproduces that AND gives the natural reading order. */
.az-audience__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	width: 100%;
}

.az-audience__card {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: 32px;
	border-radius: 24px;
	/* The design fixes both at 275px. Kept as a minimum — the negative card is filled with
	   placeholder copy that will get longer, and a hard height would clip it. */
	min-height: 275px;
}

.az-audience__card--yes {
	background-color: rgba(246, 244, 238, 0.06);
	border: 1px solid rgba(246, 244, 238, 0.1);
}

/* The negative card is deliberately quieter — half the fill, a fainter border and muted body
   text. It is a caveat, not a counter-offer. */
.az-audience__card--no {
	background-color: rgba(246, 244, 238, 0.03);
	border: 1px solid rgba(246, 244, 238, 0.07);
}

.az-audience__label {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: #D4A843;
	text-align: right;
}

.az-audience__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

/* THE DOT IS FIRST IN THE MARKUP so dir="rtl" places it on the right, at the start of the
   Hebrew line. In the Figma tree it is the second child because the canvas is LTR — the same
   inversion as the curriculum bullets and the story panel's rule.

   `align-items: flex-start` plus the 2px nudge on the dot matches the design's own
   `pt-[2px]` wrapper, which optically centres a 20px ring against the first line of 16/1.4
   text rather than against the whole paragraph. */
.az-audience__item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	text-align: right;
}

.az-audience__card--yes .az-audience__item { color: #FFFFFF; }
.az-audience__card--no .az-audience__item { color: #8C8578; }

.az-audience__dot {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	margin-top: 2px;
	border-radius: 50%;
}

.az-audience__dot::before {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
}

.az-audience__card--yes .az-audience__dot {
	background-color: rgba(212, 168, 67, 0.2);
}

.az-audience__card--yes .az-audience__dot::before {
	background-color: #D4A843;
}

/* The negative card's ring is an outline rather than a fill, and its core is grey — the two
   markers are visually different, not just recoloured. */
.az-audience__card--no .az-audience__dot {
	border: 1px solid rgba(140, 133, 120, 0.4);
}

.az-audience__card--no .az-audience__dot::before {
	background-color: #6B6560;
}

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

	.az-audience__inner {
		gap: 48px;
	}
}

@media (max-width: 720px) {
	.az-audience {
		padding: 56px 20px;
	}

	.az-audience__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.az-audience__card {
		padding: 24px;
		min-height: 0;
	}

	/* See the !important note in amotz-announcement-bar.css. */
	.az-audience__title {
		font-size: clamp(28px, 7vw, 38px) !important;
		letter-spacing: -0.03em !important;
	}
}
