/* ==========================================================================
   WE Entity Pages — entity-pages.css
   Accent: #db3745 | Font: Roboto, sans-serif
   ========================================================================== */

/* Wrapper */
.we-entity-wrapper {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 48px;
	padding: 0 16px;
	font-family: Roboto, sans-serif;
	box-sizing: border-box;
}

/* ---- Bio block ---- */
.we-entity-bio {
	padding: 32px 0 24px;
	border-top: 3px solid #db3745;
}

.we-entity-bio__heading {
	margin: 0 0 16px;
	font-size: 1.5rem;
	line-height: 1.3;
	font-weight: 700;
	color: #1a1a1a;
}

.we-entity-bio__body {
	font-size: 1rem;
	line-height: 1.7;
	color: #333;
}

.we-entity-bio__body p {
	margin: 0 0 1em;
}

.we-entity-bio__body a {
	color: #db3745;
	text-decoration: underline;
}

.we-entity-bio__body a:hover,
.we-entity-bio__body a:focus {
	color: #b82e3a;
}

/* ---- FAQ block ---- */
.we-entity-faq {
	padding: 24px 0 0;
	border-top: 3px solid #db3745;
	margin-top: 32px;
}

.we-entity-faq__heading {
	margin: 0 0 16px;
	font-size: 1.5rem;
	line-height: 1.3;
	font-weight: 700;
	color: #1a1a1a;
}

/* FAQ item */
.faq-item {
	border-bottom: 1px solid #e5e5e5;
}

/* Question button */
.faq-q {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 16px 0;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: Roboto, sans-serif;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
	color: #1a1a1a;
	gap: 12px;
}

.faq-q:hover,
.faq-q:focus {
	color: #db3745;
	outline: none;
}

.faq-q:focus-visible {
	outline: 2px solid #db3745;
	outline-offset: 2px;
	border-radius: 2px;
}

/* +/× icon */
.faq-q__icon {
	flex-shrink: 0;
	display: inline-block;
	width: 20px;
	height: 20px;
	position: relative;
}

.faq-q__icon::before,
.faq-q__icon::after {
	content: '';
	position: absolute;
	background-color: #db3745;
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Horizontal bar */
.faq-q__icon::before {
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	transform: translateY(-50%);
}

/* Vertical bar */
.faq-q__icon::after {
	top: 0;
	left: 50%;
	width: 2px;
	height: 100%;
	transform: translateX(-50%);
}

/* Rotate vertical bar to 0 when expanded */
.faq-q[aria-expanded="true"] .faq-q__icon::after {
	transform: translateX(-50%) rotate(90deg);
	opacity: 0;
}

/* Answer panel */
.faq-a {
	padding: 0 0 20px;
	font-size: 0.9375rem;
	line-height: 1.7;
	color: #444;
}

.faq-a[hidden] {
	display: none;
}

.faq-a p {
	margin: 0 0 0.75em;
}

.faq-a a {
	color: #db3745;
	text-decoration: underline;
}

.faq-a a:hover,
.faq-a a:focus {
	color: #b82e3a;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
	.we-entity-wrapper {
		padding: 0 12px;
		margin-bottom: 32px;
	}

	.we-entity-bio__heading,
	.we-entity-faq__heading {
		font-size: 1.25rem;
	}

	.faq-q {
		font-size: 0.9375rem;
		padding: 14px 0;
	}
}

@media (max-width: 375px) {
	.we-entity-wrapper {
		padding: 0 8px;
	}

	.we-entity-bio__heading,
	.we-entity-faq__heading {
		font-size: 1.125rem;
	}
}
