/* =========================================================================
   Anchor v2 — Featured Event (Unmothering Yourself)
   Standout hero card for upcoming flagship programs.
   ========================================================================= */

.fevent {
	position: relative;
	background: var(--brand-primary);
	color: #fff;
	overflow: hidden;
	isolation: isolate;
	padding-block: clamp(56px, 7vw, 90px);
}

/* Soft texture backdrop using the seminar photo */
.fevent__backdrop {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.fevent__backdrop img {
	width: 100%; height: 100%;
	object-fit: cover;
	opacity: 0.18;
	filter: blur(2px);
}

.fevent::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(800px 400px at 80% 20%, rgba(201, 86, 28, 0.16), transparent 60%),
		linear-gradient(160deg, rgba(66, 27, 73, 0.93) 0%, rgba(66, 27, 73, 0.88) 100%);
}

.fevent__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
}

@media (max-width: 860px) { .fevent__inner { grid-template-columns: 1fr; } }

/* --- Left: copy --- */

.fevent__copy {
	position: relative;
}

.fevent__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--brand-secondary);
	margin-bottom: 22px;
}

.fevent__badge::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--brand-secondary);
	box-shadow: 0 0 0 0 rgba(201, 86, 28, 0.5);
	animation: feventPulse 2s ease-in-out infinite;
}

@keyframes feventPulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(201, 86, 28, 0.6); }
	50%      { box-shadow: 0 0 0 10px rgba(201, 86, 28, 0); }
}

.fevent__title {
	font-family: var(--font-display);
	font-size: clamp(40px, 7vw, 88px);
	font-weight: 600;
	line-height: 0.95;
	letter-spacing: -0.03em;
	color: #fff;
	margin: 0 0 16px;
	text-transform: uppercase;
}

.fevent__title em {
	font-style: italic;
	color: var(--brand-secondary);
	font-weight: 500;
}

.fevent__tagline {
	font-family: var(--font-display);
	font-size: clamp(17px, 1.8vw, 21px);
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.92);
	margin: 0 0 24px;
	font-style: italic;
	font-weight: 400;
	max-width: 460px;
}

.fevent__intro {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
	margin: 0 0 14px;
}

.fevent__list {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 24px;
	max-width: 460px;
}

@media (max-width: 520px) { .fevent__list { grid-template-columns: 1fr; } }

.fevent__list li {
	font-size: 15px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.95);
	padding-left: 28px;
	position: relative;
	line-height: 1.5;
}

.fevent__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 16px;
	height: 9px;
	border-left: 2px solid var(--brand-secondary);
	border-bottom: 2px solid var(--brand-secondary);
	transform: rotate(-45deg);
}

.fevent__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
	margin-bottom: 28px;
}

.fevent__meta-item {
	flex: 1 1 auto;
	padding: 16px 20px 16px 0;
	border-right: 1px solid rgba(255, 255, 255, 0.18);
	min-width: 120px;
}

.fevent__meta-item:last-child { border-right: none; padding-right: 0; }

.fevent__meta-label {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.65);
	display: block;
	margin-bottom: 4px;
}

.fevent__meta-value {
	font-family: var(--font-display);
	font-size: 17px;
	font-weight: 500;
	color: #fff;
	letter-spacing: -0.005em;
}

.fevent__meta-value strong { color: var(--brand-secondary); font-weight: 500; }

/* CTAs */
.fevent__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	margin-bottom: 24px;
}

.fevent__btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 28px;
	background: var(--brand-secondary);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	border-radius: 0;
	transition: background-color 200ms var(--ease), transform 200ms var(--ease);
}

.fevent__btn-primary:hover {
	background: #fff;
	color: var(--brand-primary);
	transform: translateY(-2px);
}

.fevent__btn-primary::after {
	content: "→";
	transition: transform 200ms var(--ease);
}

.fevent__btn-primary:hover::after { transform: translateX(4px); }

.fevent__btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #fff;
	border-bottom: 1px solid var(--brand-secondary);
	padding: 8px 0;
	transition: color 200ms var(--ease);
}

.fevent__btn-secondary:hover { color: var(--brand-secondary); }

/* Special guest line */
.fevent__guest {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	font-weight: 300;
}

.fevent__guest strong {
	color: #fff;
	font-weight: 500;
}


/* --- Right: visual (actual poster) --- */

.fevent__poster {
	position: relative;
	max-width: 460px;
	margin-left: auto;
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
	transform: rotate(-1.5deg);
	transition: transform 500ms var(--ease);
}

@media (max-width: 860px) {
	.fevent__poster { margin: 0 auto; max-width: 360px; }
}

.fevent__poster:hover { transform: rotate(0deg) translateY(-4px); }

.fevent__poster img {
	width: 100%;
	height: auto;
	display: block;
}

/* Sparkle decorations around the poster */
.fevent__spark {
	position: absolute;
	font-family: var(--font-display);
	color: var(--brand-secondary);
	font-size: 32px;
	line-height: 1;
	z-index: 4;
	opacity: 0.85;
	pointer-events: none;
}

.fevent__spark--1 { top: -16px; left: -12px; transform: rotate(-15deg); }
.fevent__spark--2 { bottom: -10px; right: -8px; transform: rotate(20deg); font-size: 22px; }
.fevent__spark--3 { top: 35%; right: -18px; transform: rotate(45deg); font-size: 16px; opacity: 0.6; }


/* --- Mobile adjustments --- */

@media (max-width: 860px) {
	.fevent__poster { transform: rotate(0deg); }
	.fevent__poster:hover { transform: translateY(-4px); }
}

@media (max-width: 540px) {
	.fevent__title { font-size: clamp(36px, 11vw, 56px); }
	.fevent__meta {
		flex-direction: column;
	}
	.fevent__meta-item {
		padding: 12px 0;
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.18);
		display: flex;
		justify-content: space-between;
		align-items: center;
		min-width: 0;
	}
	.fevent__meta-item:last-child { border-bottom: none; }
	.fevent__list { grid-template-columns: 1fr; gap: 6px; }
	.fevent__btn-primary,
	.fevent__btn-secondary {
		width: 100%;
		justify-content: center;
		min-height: 44px;
	}
	.fevent__ctas { flex-direction: column; align-items: stretch; }
	.fevent__poster { max-width: 280px; }
}

@media (max-width: 380px) {
	.fevent__title { font-size: 38px; }
}
