.ffa-accordion {
	width: 100%;
}

.ffa-item {
	background-color: #161616;
	transition: background-color 0.25s ease;
}

.ffa-item-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	gap: 24px;
	padding: 24px 32px;
	-webkit-tap-highlight-color: transparent;
}

.ffa-item-header:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: -2px;
}

.ffa-header-left {
	display: flex;
	align-items: baseline;
	flex: 1;
	min-width: 0;
}

.ffa-number {
	color: #8a8a8a;
	margin-right: 32px;
	flex-shrink: 0;
}

.ffa-title {
	color: #ffffff;
	font-weight: 700;
	word-break: break-word;
}

.ffa-toggle-icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: #2b2b2b;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ffa-toggle-icon svg,
.ffa-toggle-icon i {
	font-size: 14px;
	width: 14px;
	height: 14px;
	fill: currentColor;
}

.ffa-icon-collapse {
	display: none;
}

.ffa-item.ffa-active .ffa-icon-expand {
	display: none;
}

.ffa-item.ffa-active .ffa-icon-collapse {
	display: inline-flex;
}

.ffa-body {
	overflow: hidden;
	margin-top: 16px;
	padding-left: 88px;
	padding-right: 32px;
	box-sizing: border-box;
}

.ffa-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding-bottom: 24px;
}

.ffa-tag {
	background-color: #2b2b2b;
	color: #ffffff;
	border-radius: 20px;
	padding: 8px 16px;
	font-size: 12px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	white-space: nowrap;
}

.ffa-content-inner {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
	padding-bottom: 32px;
}

.ffa-image {
	width: 45%;
	flex-shrink: 0;
}

.ffa-image img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 12px;
}

.ffa-text {
	flex: 1;
	min-width: 240px;
}

.ffa-description {
	color: #c7c7c7;
	line-height: 1.6;
	margin-bottom: 20px;
}

.ffa-description p:last-child {
	margin-bottom: 0;
}

.ffa-button {
	display: inline-block;
	background-color: #ffffff;
	color: #111111;
	padding: 14px 28px;
	border-radius: 4px;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

@media (max-width: 768px) {
	.ffa-item-header {
		padding: 18px 20px;
	}
	.ffa-body {
		padding-left: 20px;
		padding-right: 20px;
	}
	.ffa-content-inner {
		flex-direction: column;
	}
	.ffa-image {
		width: 100%;
	}
}
