.faq { padding-block: 120px 120px; background: #fff; position: relative; }

.clinics .faq > img {
	position: absolute; inset: 0;
	width: 100%; height: 100%; object-fit: cover;
	background: #1a5f5f; z-index: 0; pointer-events: none;
}

.clinics .faq-overlay-top {
	position: absolute; left: 0; right: 0; top: 0; z-index: 0;
	height: 100px;
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
}
.clinics .faq-overlay-bottom {
	position: absolute; left: 0; right: 0; bottom: 0; z-index: 0;
	height: 150px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
}

.faq-list {
	max-width: 960px;
	margin: clamp(28px, 3vw, 44px) auto 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.faq-item {
	display: grid;
	grid-template-columns: 6px 1fr;     /* accent (right) | body (left) */
	background: #f7f7ff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.10);
}
.faq-accent { background: #36dabf; }
.faq-body { min-width: 0; }

.faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 20px clamp(20px, 2.4vw, 28px);
	background: none;
	border: none;
	font-family: inherit;
	text-align: right;
	cursor: pointer;
}
.faq-text { font-weight: 400; font-size: 22px; color: var(--heading-strong); }
.faq-toggle {
	flex: none;
	width: 42px; height: 42px;
	display: grid; place-items: center;
	border-radius: 50%;
	background: #fff;
	color: var(--teal);
	box-shadow: 0 6px 16px -8px rgba(40, 50, 80, .3);
	transition: transform .25s ease;
}
.faq-toggle i {margin: 1px 0 0 1px; font-size: 18px;}
.faq-item.is-open .faq-toggle { transform: rotate(45deg); }   /* + → × */

.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease;
}
.faq-item.is-open .faq-a { max-height: 320px; }
.faq-a p {
	margin: 0;
	padding: 0 clamp(20px, 2.4vw, 28px) 22px;
	color: #777;
	line-height: 1.65;
	text-align: right;
	font-size: 16px;
}

@media screen and (max-width: 40em) {
	.clinics .faq {padding: 3rem 1rem;}
}
