/* ==========================================================================
   Becomeyoo — FAQ Accordion Widget (bew-faq)
   ========================================================================== */

.bew-faq {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Card */
.bew-faq-item {
	position: relative;
	border: 2px solid #e30613;
	border-radius: 16px;
	padding: 24px 28px;
	background: #fff;
	transition: box-shadow 0.2s ease;
}

/* Header */
.bew-faq-header {
	padding-right: 50px;
}

/* Whole card clickable */
.bew-faq-item {
	cursor: pointer;
}

/* Question */
.bew-faq-question {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	margin: 0;
}

/* Body — answer container */
.bew-faq-body {
	overflow: hidden;
	transition: max-height 0.35s ease, opacity 0.25s ease;
}

/* Answer */
.bew-faq-answer {
	font-size: 14px;
	line-height: 1.6;
	margin-top: 10px;
	padding-right: 50px;
}

.bew-faq-answer p {
	margin: 0 0 8px;
}

.bew-faq-answer p:last-child {
	margin-bottom: 0;
}

/* Toggle button — bottom right */
.bew-faq-toggle {
	position: absolute;
	bottom: 18px;
	right: 20px;
	width: 34px;
	height: 34px;
	border: 2px solid #e30613;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: background-color 0.2s ease, color 0.2s ease;
	color: #e30613;
}

.bew-faq-toggle:hover {
	background-color: #e30613;
	color: #fff;
}

.bew-faq-toggle-icon {
	font-size: 20px;
	font-weight: 300;
	line-height: 1;
	user-select: none;
	color: inherit;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 767px) {
	.bew-faq {
		gap: 12px;
	}

	.bew-faq-item {
		padding: 18px 20px;
		border-radius: 12px;
	}

	.bew-faq-question {
		font-size: 14px;
	}

	.bew-faq-answer {
		font-size: 13px;
	}

	.bew-faq-toggle {
		width: 28px;
		height: 28px;
		bottom: 14px;
		right: 14px;
	}

	.bew-faq-toggle-icon {
		font-size: 17px;
	}

	.bew-faq-header {
		padding-right: 40px;
	}

	.bew-faq-answer {
		padding-right: 40px;
	}
}
