/*
Theme Name:		 ForHealth Medical Centre 2024
Theme URI:		 #
Description:	 Beautiful theme for forHealth medical centres.
Author:			 Classic Informatics
Author URI:		 https://www.classicinformatics.com/
Template:		 twentythirteen
Version:		 1.0.0
Text Domain:	 forhealth-mc-2023
*/


.logo-header img.for-desktop {
	width: auto;
	height: 77px;
}

.doctor-cat-filter-item-shockwave-therapy {
	display: none !important;
}

/* Forhealth Layout Shortcode CSS */
.fh-cms p {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.4em;
	color: var(--secondary-dark-color);
	margin: 20px 0px;
	line-height: 26px;
}

.fh-cms strong {
	font-weight: 500;
}

.fh-section {
	width: 100%;
	margin: 0px auto;
	padding: 60px 0px;
}

.fh-section__boxed {
	width: 1200px;
	max-width: 94%;
	margin: 0px auto;
}

.fh-section__heading {
	color: var(--secondary-dark-color);
	display: block;
	width: 100%;
	text-align: center;
	font-family: var(--recoleta-fonts);
	font-weight: 600;
	font-size: 48px;
	list-style: 62px;
	margin-bottom: 30px;
}

.fh-section__subheading {
	font-size: 24px;
	color: var(--secondary-dark-color);
	line-height: 26px;
	font-weight: 400;
	text-align: center;
	width: 1000px;
	max-width: 100%;
	margin: 0 auto 40px auto;
}

@media (max-width: 768px) {
	.fh-section__heading {
		font-size: 34px;
		line-height: 42px !important;
		margin-bottom: 20px;
	}

	.fh-section__subheading {
		font-size: 18px;
		line-height: 24px !important;
	}
}

/* FH Accordion Styles (BEM) */
.fh-accordion {
	width: 100%;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	border: 1px solid #e0e6ed;
	overflow: hidden;
}

.fh-accordion__item {
	border-bottom: 1px solid #e0e6ed;
}

.fh-accordion__item:last-child {
	border-bottom: none;
}

/* Hidden Checkbox Hack for Toggle */
.fh-accordion__input {
	position: absolute;
	opacity: 0;
	z-index: -1;
}

.fh-accordion__label {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 30px;
	cursor: pointer;
	font-weight: 500;
	color: #007684; /* Teal color from image */
	font-size: 20px;
	transition: background 0.3s ease;
	user-select: none;
}

.fh-accordion__label:hover {
	background-color: #f9fbfc;
}

/* Chevron Icon Styling */
.fh-accordion__icon {
	width: 16px;
	height: 16px;
	border-right: 2px solid #00c1b2;
	border-bottom: 2px solid #00c1b2;
	transform: rotate(45deg);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	margin-left: 20px;
	flex-shrink: 0;
}

/* Content Panel Styling */
.fh-accordion__content {
	max-height: 0;
	overflow: hidden;
	background: #fff;
	transition: max-height 0.3s ease-out, padding 0.3s ease;
	padding: 0 30px;
}

.fh-accordion__text {
	color: #4a5568;
	line-height: 1.6;
	padding-bottom: 24px;
}

/* Logical State Management (CSS Only) */
.fh-accordion__input:checked ~ .fh-accordion__content {
	max-height: 200px; /* Large enough for content */
}

.fh-accordion__input:checked ~ .fh-accordion__label .fh-accordion__icon {
	transform: rotate(-135deg);
	margin-top: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.fh-accordion__label {
		padding: 18px 20px;
		font-size: 1rem;
	}
	.fh-accordion__content {
		padding: 0 20px;
	}
}

