/* ============================================================
   Foxco Expandable About Widget  v1.0.0
   ============================================================ */

.fea-wrap {
	background: #111118;
	border: 1px solid #df6737;
	border-radius: 8px;
	overflow: hidden;
	font-family: inherit;
}

/* ── Trigger row ── */
.fea-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 28px;
	cursor: pointer;
	user-select: none;
	transition: background 0.2s ease;
}
.fea-trigger:hover {
	background: rgba(255,255,255,0.03);
}
.fea-trigger:focus-visible {
	outline: 2px solid #df6737;
	outline-offset: -2px;
}

/* ── Headline ── */
.fea-headline {
	margin: 0;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: #ffffff;
	line-height: 1.2;
	flex: 1;
}
.fea-headline .fea-prefix {
	color: #888899;
	font-weight: 400;
}

/* ── CTA Button ── */
.fea-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #df6737;
	color: #ffffff;
	border: none;
	border-radius: 4px;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.2s ease, transform 0.15s ease;
	pointer-events: none; /* trigger handles click */
}
.fea-cta:hover {
	background: #c45520;
}

.fea-cta-open  { display: inline; }
.fea-cta-close { display: none; }

.fea-cta-icon {
	display: flex;
	align-items: center;
}
.fea-cta-icon svg {
	transition: transform 0.3s ease;
}

/* ── Expanded state ── */
.fea-wrap.is-open .fea-cta-open  { display: none; }
.fea-wrap.is-open .fea-cta-close { display: inline; }
.fea-wrap.is-open .fea-cta-icon svg {
	transform: rotate(45deg);
}
.fea-wrap.is-open .fea-trigger {
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ── Collapsible body ── */
.fea-body {
	overflow: hidden;
	height: 0;
	transition: height 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.fea-body-inner {
	padding: 28px 28px 32px;
}

/* ── Body content ── */
.fea-body-text {
	color: #ccccdd;
	font-size: 15px;
	line-height: 1.75;
	margin: 0 0 20px;
}
.fea-body-text p {
	margin: 0 0 1em;
}
.fea-body-text p:last-child {
	margin-bottom: 0;
}

/* Drop-cap first letter */
.fea-intro strong:first-child,
.fea-intro p > strong:first-child {
	font-size: 2.4em;
	line-height: 0.8;
	float: left;
	margin-right: 4px;
	margin-top: 4px;
}

/* ── Pull quote ── */
.fea-pull-quote {
	margin: 0 0 20px;
	padding: 20px 24px;
	border-left: 3px solid #df6737;
	background: rgba(255,255,255,0.04);
	border-radius: 0 6px 6px 0;
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.65;
	font-style: normal;
}
.fea-pull-quote p {
	margin: 0;
}

/* ── Closing statement ── */
.fea-closing-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	margin-top: 24px;
}
.fea-closing-rule {
	width: 48px;
	height: 1px;
	background: rgba(255,255,255,0.2);
}
.fea-closing,
.fea-closing p {
	margin: 0;
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	line-height: 1.55;
}

/* ── Responsive ── */
@media (max-width: 640px) {
	.fea-trigger { padding: 16px 18px; }
	.fea-headline { font-size: 22px; }
	.fea-cta { font-size: 12px; padding: 7px 12px; }
	.fea-wrap.is-open .fea-body-inner { padding: 20px 18px 24px; }
	.fea-pull-quote { font-size: 14px; padding: 16px 18px; }
	.fea-closing, .fea-closing p { font-size: 15px; }
}
