@charset "UTF-8";

.health-disclaimer {
	--health-disclaimer-accent: #203a1d;
	--health-disclaimer-accent-soft: #79ad4b;
	--health-disclaimer-bg: #f1f7eb;
	--health-disclaimer-border: rgba(32, 58, 29, 0.14);
	--health-disclaimer-radius: 12px;
	--health-disclaimer-line-height: 1.65;
	--health-disclaimer-font-size: 0.98rem;
	--health-disclaimer-slide-duration: 0.38s;
	--health-disclaimer-slide-ease: cubic-bezier(0.4, 0, 0.2, 1);
	margin: 0.35rem 0 0.15rem;
}

.health-disclaimer__card {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--health-disclaimer-border);
	border-left: 4px solid var(--health-disclaimer-accent-soft);
	border-radius: var(--health-disclaimer-radius);
	background: var(--health-disclaimer-bg);
	box-shadow: 0 1px 2px rgba(17, 24, 39, 0.05);
}

.health-disclaimer__card.is-interactive {
	cursor: pointer;
}

.health-disclaimer__header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1.2rem 1.35rem 0.75rem;
}

.health-disclaimer__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	background: rgba(121, 173, 75, 0.16);
	color: var(--health-disclaimer-accent);
	font-size: 1.05rem;
}

.health-disclaimer__title {
	margin: 0;
	font-size: clamp(1rem, 2.2vw, 1.08rem);
	font-weight: 700;
	line-height: 1.35;
	color: var(--health-disclaimer-accent);
}

.health-disclaimer__body {
	position: relative;
	padding: 0 1.35rem;
	transition: padding-bottom var(--health-disclaimer-slide-duration) var(--health-disclaimer-slide-ease);
}

.health-disclaimer__body:not(.is-expanded) {
	padding-bottom: 0.35rem;
}

.health-disclaimer__text {
	position: relative;
	margin: 0;
	overflow: hidden;
	color: #4a5648;
	font-size: var(--health-disclaimer-font-size);
	line-height: var(--health-disclaimer-line-height);
	transition: max-height var(--health-disclaimer-slide-duration) var(--health-disclaimer-slide-ease);
}

.health-disclaimer__text p {
	margin: 0 0 0.85rem;
}

.health-disclaimer__text p:last-child {
	margin-bottom: 0;
}

.health-disclaimer__body.is-expanded .health-disclaimer__text {
	max-height: none;
}

.health-disclaimer__footer {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 2.1rem 1.35rem 1rem;
	background: linear-gradient(180deg, rgba(241, 247, 235, 0) 0%, rgba(241, 247, 235, 0.72) 38%, var(--health-disclaimer-bg) 78%);
	pointer-events: none;
	transition:
		opacity var(--health-disclaimer-slide-duration) var(--health-disclaimer-slide-ease),
		background var(--health-disclaimer-slide-duration) var(--health-disclaimer-slide-ease),
		padding var(--health-disclaimer-slide-duration) var(--health-disclaimer-slide-ease);
}

.health-disclaimer__body.is-expanded .health-disclaimer__footer,
.health-disclaimer__body.is-expanding .health-disclaimer__footer {
	position: static;
	padding: 0.65rem 0 1.2rem;
	background: none;
	pointer-events: auto;
}

.health-disclaimer__toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--health-disclaimer-accent);
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 0.18em;
	pointer-events: auto;
}

.health-disclaimer__toggle:hover,
.health-disclaimer__toggle:focus-visible {
	color: #2f5a28;
}

.health-disclaimer__chevron {
	transition: transform var(--health-disclaimer-slide-duration) var(--health-disclaimer-slide-ease);
}

.health-disclaimer__body.is-expanded .health-disclaimer__chevron {
	transform: rotate(180deg);
}

.faq-detail-health-disclaimer .health-disclaimer {
	margin-top: 0;
	margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
	.health-disclaimer__body,
	.health-disclaimer__text,
	.health-disclaimer__footer,
	.health-disclaimer__chevron {
		transition: none;
	}
}
