.gfs-wrap {
	margin: 1.5rem 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	max-width: 100%;
}

.gfs-accordion {
	background: #fdfbf7;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.gfs-accordion__header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.25rem;
	margin: 0;
	background: transparent;
	border: 0;
	cursor: pointer;
	font: inherit;
	text-align: left;
	color: inherit;
	transition: background 0.2s ease;
}

.gfs-accordion__header:hover {
	background: rgba(0, 0, 0, 0.03);
}

.gfs-accordion__title {
	font-weight: 600;
	font-size: 1.05rem;
}

.gfs-accordion__icon {
	display: inline-block;
	flex-shrink: 0;
	transition: transform 0.35s ease;
	font-size: 0.65rem;
	opacity: 0.65;
}

.gfs-accordion.is-open .gfs-accordion__icon {
	transform: rotate(180deg);
}

.gfs-accordion__panel {
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.45s ease, opacity 0.35s ease;
}

.gfs-accordion.is-open .gfs-accordion__panel {
	opacity: 1;
	max-height: 2000px;
}

.gfs-accordion__inner {
	padding: 1rem 1.25rem 1.25rem;
	font-size: 0.95rem;
	line-height: 1.55;
	color: #2c2c2c;
	white-space: pre-wrap;
}

.gfs-target .gfs-cursor {
	display: inline-block;
	animation: gfs-blink 0.85s step-end infinite;
	margin-left: 1px;
	font-weight: 300;
	opacity: 0.85;
}

@keyframes gfs-blink {
	50% {
		opacity: 0;
	}
}
