/*
	Theme Name: Hospital Core Theme
	Theme URI: 
	Author: Theme Developer
	Author URI: 
	Text Domain: hospital-core
	Version: 1.8.0
*/
@import 'assets/css/fontawesome-5.15.1.min.css';
@import 'assets/css/magnific-popup-1.1.0.min.css';

/* ── Design Tokens ── */
:root {
    --main-radius: 18px;
    --main-border: 1px solid rgb(235 245 247);
    --main-shadow: 0px 0px 10px 0px rgb(167 167 167 / 12%);
    --radius-sm: 12px;
    --radius-inner: 10px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
}
header{
	min-height: 90px;
}
.headerbg {
    position: relative;
}
.headerbg__logo img{
	width: 155px;
    height: 44px;
}
.headerbg.sticky{
	top: 0;
	right: 0;
	width: 100%;
	position: fixed;
	background-color: #fff;
	padding: 10px 0 !important;
	animation: headerbgf .4s;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.06);
	/* Above the sticky article TOC bar (.post-guide-bar.is-sticky = 999)
	   so the header + menu panel always sit on top when both are sticky. */
	z-index: 1040;
}
.headerbg.sticky .headerbg__logo img{
	max-height: 40px;
	max-width: 130px;
}
.headerbg.sticky *{
	visibility: visible !important;
	transform: none !important;
}
.admin-bar .headerbg.sticky{
	top: 32px;
}
@keyframes headerbgf {
    from {
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    to {
        -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
        transform: translateY(0%);
    }
}
@-webkit-keyframes headerbgf {
    from {
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    to {
        -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
        transform: translateY(0%);
    }
}
/* Ã¢â€â‚¬Ã¢â€â‚¬ Header: Main Menu Panel Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬
   Full-width solid bar that drops flush under the header, visually matches
   the sticky article guide bar (.post-guide-bar.is-sticky): tinted surface
   with a soft drop shadow. No dark backdrop.
   ---------------------------------------------------------------------- */
.headerbg { position: relative; }
.mainmenu__trigger { cursor: pointer; }
.mainmenu__trigger .fa-bars { transition: transform .2s ease; }
.mainmenu__trigger.is-open .fa-bars { transform: rotate(90deg); }

/* Panel wrapper Ã¢â‚¬â€ absolute against .headerbg, above the sticky TOC bar (999) */
.mainmenu__panel {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 1040;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
	pointer-events: none;
}
.mainmenu__panel.is-open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

/* Solid bar flush under the header, sharp corners, soft drop shadow */
.mainmenu__inner {
	background: #fff;
	box-shadow: 0 5px 10px -2px rgba(0, 0, 0, .12);
	max-height: 80vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

/* Full-width tabs bar with tinted background */
.mainmenu__tabs-bar {
	background: #ebf5f7;
	border-bottom: 1px solid #d6eaee;
    border-top: 1px solid #d6eaee;
}
.mainmenu__panels-bar {
	background: #fff;
	overflow-y: auto;
}

/* Desktop tabs row (depth 0) */
.mainmenu__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 8px;
	padding: 7px 0;
}
.mainmenu__tab {
	background: transparent;
	border: 0;
	padding: 8px 18px;
	font-size: 13px;
	font-weight: 600;
	color: #0a0c1c;
	border-radius: 8px;
	cursor: pointer;
	transition: background .2s ease, color .2s ease;
}
.mainmenu__tab:hover { color: #0ea7c6; }
.mainmenu__tab.is-active {
	background: #0ea7c6;
	color: #fff;
}

/* Panels area Ã¢â‚¬â€ padding lives on the bar so the container centers correctly */
.mainmenu__panels {
	padding: 24px 0;
}
.mainmenu__tab-panel { display: none; }
.mainmenu__tab-panel.is-active { display: block; }

/* Columns row (depth 1 headings + depth 2 links) */
.mainmenu__row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px 32px;
	align-items: start;
	text-align: right;
}
.mainmenu__col { display: block; text-align: right; }
.mainmenu__list { padding: 0; text-align: right; }
.mainmenu__section-title {
	font-size: 14px;
	font-weight: 600;
	color: #0ea7c6;
	padding-bottom: 10px;
	margin: 0 0 10px;
	border-bottom: 1px solid #eee;
	text-align: right;
}
.mainmenu__list li + li { margin-top: 6px; }
.mainmenu__link {
	display: block;
	font-size: 13px;
	font-weight: 500;
	color: #333;
	padding: 4px 0;
	transition: color .2s ease;
}
/* Square marker beside each depth-2 link Ã¢â‚¬â€ matches the footer nav marker */
.mainmenu__link::before {
	content: '';
	display: inline-block;
	width: 7px;
	height: 7px;
	border: 1.5px solid #0ea7c6;
	border-radius: 2px;
	margin-inline-end: 8px;
	vertical-align: middle;
	position: relative;
	top: -1px;
}
.mainmenu__link:hover { color: #0ea7c6; text-decoration: none; }

/* Cards grid (depth-1 items under a tab marked "display as cards").
   Layout: 4 equal columns Ã¢â‚¬â€ optional intro text on the right, then 3 cards.
   Without intro text, the first 3 cards simply fill 3 of the 4 tracks
   (the 4th stays empty) to keep card size consistent across both modes. */
.mainmenu__cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	text-align: right;
	align-items: stretch;
}
.mainmenu__cards-intro {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 4px 2px;
}
.mainmenu__cards-heading {
	font-family: inherit;
	font-size: 17px;
	font-weight: 700;
	color: #0ea7c6;
	margin: 0;
	line-height: 1.4;
}
.mainmenu__cards-text {
	font-size: 13px;
	line-height: 1.7;
	color: #4a5568;
}
.mainmenu__cards-text p { margin: 0 0 8px; }
.mainmenu__cards-text p:last-child { margin-bottom: 0; }
.mainmenu__cards-btn {
	align-self: flex-start;
	display: inline-block;
	background: #0ea7c6;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 6px;
	transition: background .2s ease, transform .2s ease;
	margin-top: auto;
}
.mainmenu__cards-btn:hover {
	background: #0b8ea9;
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
}

.mainmenu__card {
	display: block;
	color: inherit;
	background: #fff;
	border: var(--main-border);
	border-radius: var(--main-radius) !important;
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
	box-shadow: var(--main-shadow);
}
.mainmenu__card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
	border-color: #d6eaee;
	text-decoration: none;
	color: inherit;
}
.mainmenu__card-thumb {
	position: relative;
	width: 100%;
	padding-top: 50%; /* 2:1 rectangle Ã¢â‚¬â€ shorter than 16:9 */
	background: #f3f7f8;
	overflow: hidden;
}
.mainmenu__card-thumb img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.mainmenu__card-title {
	font-size: 13px;
	font-weight: 600;
	color: #0a0c1c;
	margin: 0;
	padding: 10px 12px;
	line-height: 1.5;
	transition: color .2s ease;
}
.mainmenu__card:hover .mainmenu__card-title { color: #0ea7c6; }

@media (max-width: 991px) {
	.mainmenu__cards { grid-template-columns: repeat(2, 1fr); }
	.mainmenu__cards.has-intro .mainmenu__cards-intro { grid-column: 1 / -1; }
}
@media (max-width: 575px) {
	.mainmenu__cards { grid-template-columns: 1fr; gap: 12px; }
}

/* Tab footer (depth 3) inline links */
.mainmenu__divider {
	height: 1px;
	background: #eee;
	margin: 20px 0 16px;
}
.mainmenu__footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 36px;
	text-align: right;
}
.mainmenu__footer-link {
	display: inline-flex;
	align-items: center;
	font-size: 12px;
	font-weight: 400;
	color: #0ea7c6;
	transition: color .2s ease;
}
.mainmenu__footer-link::before {
	/* Plain Unicode left arrow Ã¢â‚¬â€ "read / open article" cue (RTL reads rightÃ¢â€ â€™left,
	   so a left-pointing arrow leads the eye into the link text). No font dep. */
	content: '\2190';
	font-size: 16px;
	line-height: 1;
	margin-inline-end: 8px;
	color: #0ea7c6;
	transition: transform .2s ease;
}
.mainmenu__footer-link:hover::before {
	transform: translateX(-4px);
}
.mainmenu__footer-link:hover {
	color: #0b8aa3;
	text-decoration: underline;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Mobile accordion Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.mainmenu__mobile { padding: 8px 0; overflow-y: auto; }
.mainmenu__acc-item { border-bottom: 1px solid #eee; }
.mainmenu__acc-item:last-child { border-bottom: 0; }
.mainmenu__acc-toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: transparent;
	border: 0;
	padding: 14px 18px;
	font-size: 14px;
	font-weight: 600;
	color: #333;
	text-align: right;
	cursor: pointer;
}
.mainmenu__acc-toggle .mainmenu__acc-icon {
	font-size: 12px;
	color: #0ea7c6;
	transition: transform .25s ease;
}
.mainmenu__acc-toggle.is-open .mainmenu__acc-icon { transform: rotate(180deg); }
.mainmenu__acc-panel {
	display: none;
	padding: 4px 18px 18px;
}
.mainmenu__acc-panel.is-open { display: block; }

/* Responsive grid inside panels */
@media (max-width: 991px) {
	.mainmenu__row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
	.mainmenu__inner { margin: 0px 0px 0px 90px; max-height: 80vh; }
	.mainmenu__row { grid-template-columns: 1fr; gap: 18px; }
}
.boxtitleicon{
	margin: 0 100px 0 60px;
}
.customslider__services .slick-track{
	margin-right: 0;
	margin-left: 0;
	right: 0;
	left: auto;
}
.customslider__services .slick-prev,
.customslider__services .slick-next{
	top: 34%;
	width: 60px;
	height: 60px;
	background-repeat: no-repeat;
}
.customslider__services .slick-prev{
	background-image: url(assets/img/icon08.svg);
	right: 45px;
	left: auto;
}
.customslider__services .slick-next{
	background-image: url(assets/img/icon07.svg);
	left: 45px;
	right: auto;
}
.customslider__services .slick-disabled{
	opacity: 0;
}
.customslider__services .slick-prev::before,
.customslider__services .slick-next::before{
	display: none;
}
.boxblog__time{
	bottom: 15px;
	left: 15px;
	z-index: 4;
}
.boxblog__cat{
	top: 20px;
	right: 20px;
	z-index: 4;
}
.boxblog__cat a + a{
	margin-right: 10px;
}
.boxblog__cat a{
	font-size: 14px;
	display: block;
	margin-bottom: 10px;
	background-color: #0EA7C6;
	color: #fff;
	border-radius: 50px;
	padding: 6px 10px 4px;
}
.boxblog__cat a:hover{
	background-color: #265e6a;
}
.boxblog__thu::before{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	bottom: 0;
	right: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
	border-radius: 0.5rem!important;
}
.boxworksliderbox .row,
.boxworkslider{
	min-height: 450px;
}
.boxclients__slider{
	padding-bottom: 50px;
}
.boxclients__slider .slick-next,
.boxclients__slider .slick-prev{
	top: auto;
	bottom: -50px;
}
.boxclients__slider .slick-next{
	left: calc(50% - 50px);
}
.boxclients__slider .slick-prev{
	right: auto;
	left: 50%;
}
.boxclients__slide {
	height: 80px;
}
.boxclients__slide img{
	max-height: 80px;
	filter: grayscale(100%);
	opacity: 0.35;
}
.boxclients__slide img:hover{
	filter: grayscale(0);
	opacity: 1;
}
.footertop{border-bottom: 1px solid rgba(255, 255, 255, 0.1);}
.footerbottom__links li{flex: 0 0 33.33%;max-width: 33.33%;display: block;margin-bottom: 8px;}
.footerbottom__links.footercopy__links li{flex: initial;max-width: inherit;position: relative;display:flex;align-items: center}
.footerbottom__links.footercopy__links li:after{position: relative;content: '-';margin-right: 6px;margin-left: 6px;}
.footerbottom__links.footercopy__links li:last-child:after{display: none;}
.footerbottom__links li a{color: #fff;font-size: 15px;}
.footerbottom__links li a:hover{color: #000;}
.footercopy{background-color: #0e1126;}
.footercopy .footerbottom__links li{margin: 0;}
.footertop .sharesocial li a{width: 55px;height: 55px;line-height: 55px;font-size: 22px;}
.imgtopbg{margin-top: -40px;}
.buttonwithtextarea{bottom: 42px;left: 25px;}
.nav-tabs.customtabs {
    border-bottom: none;
    padding: 0
}
.nav-tabs.customtabs .nav-item {
    margin-bottom: 0;
    margin-right: 10px
}
.nav-tabs.customtabs .nav-link {
    border: 0;
    border-radius: 50px;
    min-width: inherit;
    text-align: center;
    font-weight: 700;
    padding: 11px 15px 8px;
}
.nav-tabs.customtabs .nav-item.show .nav-link,
.nav-tabs.customtabs .nav-link.active,
.nav-tabs.customtabs .nav-link:hover {
    background-color: #0EA7C6;
    color: #fff
}
.gridbox100__1{grid-area: box100_1;}.gridbox100__2{grid-area: box100_2;}.gridbox100__3{grid-area: box100_3; width: 330px}.gridbox100__4{grid-area: box100_4; width: 300px}.gridbox100 .boxworks{height: 225px;}
.boxworks,
.boxworks:hover{
	color: #fff;
	border-radius: 0.5rem!important;
}
.boxworks::before{
	position: absolute;
	content: '';
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(10, 12, 28, 0.8);
	opacity: 0;
	visibility: hidden;
	transition: .4s;
}
.boxworks .boxworks__content{
	opacity: 0;
	visibility: hidden;
	transform: translateY(100px);
	transition: .8s;
}
.boxworks:hover .boxworks__content,
.boxworks:hover::before{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.boxworks--btn::before{
	display: none;
}
.slidertitle{
	min-height: 250px;
}
.roweven > .row:nth-child(even){
	flex-direction: row-reverse;
}
/* Current */
.grid__masonry{
    margin-right: -8px;
    margin-left: -8px;
	display: flex;
	flex-wrap: wrap;
}
.grid__masonry:after {
    content: '';
    display: block;
    clear: both;
}
.grid__masonry .grid__masonry--item{ 
    width: 33.33%;
    padding: 8px;
}
.buttonwhatsapp__fixed{
	bottom: 15px;
	left: 15px;
	z-index: 10;
}
.box-about-even > .row:nth-child(even){
	flex-direction: row-reverse;
}
.box-about-top::before,
.box-single-top::before{
	position: absolute;
	content: '';
	top: 0;
	right: 0;
	width: 100%;
	height: 60px;
	background-color: #140d05;
}
.box-single-top::before{
	height: 160px;
}
.box-about-top > *,
.box-single-top > *{
	position: relative;
}
.sticky-top-mt2{
	top: 20px;
}
.listcategory li{
	margin: 0 0 8px 20px;
}
.listcategory li a{
	font-size: 18px;
}
.boxblogs p{
	height: 46px;
}
li::marker{
	color: #5771ad;
}
.shareopen__box{
	bottom: 50px;
	right: 20px;
	opacity: 0;
	visibility: hidden;
	transition: .5s;
	transform: translateY(20px);
}
.shareopen__box.active{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.shareopen__box::before{
	position: absolute;
	content: '';
	width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #f8f9fa;
	bottom: -10px;
	right: 40px;
}
ol.commentlist { 
    list-style: none;
	margin: 20px 0 !important;
	padding: 0 40px 0 0 !important;
    color: #343a40;
}
.comment-body{
    border-bottom:3px solid rgba(0, 0, 0, 0.06);
    padding:10px 0px;
}
ol.commentlist { 
    list-style: none; 
	font-size: 14px;
}
ol.commentlist li { 
    margin-bottom:10px;
    
}
ol.commentlist li.comment { 
    padding:0px; 
}
ol.commentlist li.comment div.vcard { 
    overflow:hidden;
    margin-bottom:10px;
}
ol.commentlist li.comment div.vcard cite.fn { 
    float:right;
    margin:10px 0 0 10px;
	font-size: 18px;
    color:#343a40;
	font-style: normal;
}
ol.commentlist li.comment div.vcard img.avatar { 
    float:right; 
    margin: 0 0 0px 10px; 
}
ol.commentlist li.comment div.vcard img.photo { 
    width:40px;
    height:40px;
}
ol.commentlist li.comment div.comment-meta { 
    font-size: 10px; 
}
ol.commentlist li.comment div.comment-meta a { 
    color: #999; 
}
ol.commentlist li.comment p { 
    margin-right:60px;
	font-size: 18px;
	line-height: 1.9em;
    color:#343a40;
}
ol.commentlist li.comment div.reply { 
    float:left;
}
ol.commentlist li.comment div.reply a { 
	font-weight: bold;
	font-size: 14px;
    background:#eee;
    color:#0EA7C6;
    display:block;
    padding:10px 25px;
}
ol.commentlist li.comment div.reply a:hover { 
    background:#d3861a;
    color:#fff;
}
ol.commentlist li.comment ul.children { 
    list-style: none; 
    margin: 10px 0 0; 
	padding: 0 25px 0 0 !important;
}
ol.commentlist li.comment ul.children li.depth-2 { 
    margin: 0 20px 0px 0px; 
}
ol.commentlist li.comment ul.children li.depth-3 { 
    margin: 0 20px 0px 0px; 
}
ol.commentlist li.comment ul.children li.depth-4 { 
    margin: 0 20px 0px 0px; 
}
ol.commentlist li.comment ul.children li.depth-5 { 
    margin: 0 20px 0px 0px; 
}
.comments-numbers{
    background:#fff;
    border: 3px solid rgba(0, 0, 0, 0.06);
    margin-bottom:10px;
    overflow:hidden;
}
.comments-numbersR{
    float:right;
    width:70%;
    padding:10px;
	font-size: 18px;
    color:#343a40;
}
.comments-numbersL{
    float:left;
}
.comments-numbersL a{
    background:#0EA7C6;
    display:block;
    padding:12px 20px;
    float:left;
    color:#fff;
	font-weight: bold;
	font-size: 15px;
}
.comments-numbersL a:hover{
    background:#d3861a;
    color:#fff;
}
.comments-numbers2{
    background:#fff;
    border: 3px solid rgba(0, 0, 0, 0.06);
    margin-bottom:10px;
    padding:15px;
	font-size: 16px;
	font-weight: bold;
    color:#343a40;
    overflow:hidden;
}
.comments-times{
    float:right; 
    margin-top:13px;
	font-size: 14px;
}
.comments-times a{
    color:#999;
}
.single-comments{
    margin:10px 0;
}
.article-entry-content h1,
.article-entry-content h2,
.article-entry-content h3,
.article-entry-content h4,
.article-entry-content h5,
.article-entry-content h6 {
    color: #0d7d95;
    margin-bottom: 12px;
    margin-top: 40px;
}

.article-entry-content h1 {
    font-size: 28px;
}

.article-entry-content h2 {
    font-size: 20px;
    scroll-margin-top: 140px;
}
.admin-bar .article-entry-content h2 {
    scroll-margin-top: 192px;
}

.article-entry-content h3 {
    font-size: 18px;
}

.article-entry-content h4 {
    font-size: 16px;
    margin-top: 17px !important;
}

.article-entry-content h5 {
    font-size: 16px;
}

.article-entry-content h6 {
    font-size: 16px;
}

.mfp-counter{
	direction: ltr;
	font-family: Arial, Helvetica, sans-serif;
}
.wpcf7 input[type=url], .wpcf7 input[type=email], .wpcf7 input[type=tel]{direction: ltr}
.wpcf7-form-control-wrap input[type=checkbox],.wpcf7-form-control-wrap input[type=radio]{width: 22px;height: 16px;cursor: pointer;}
.wpcf7-list-item-label{font-size: 17px;}
.wpcf7-form .ajax-loader{
	display: block;
	margin: 20px auto;
}
.wpcf7 form .wpcf7-response-output{
	border-radius: 5px;
	padding: 10px 18px;
	color: #fff;
	background-color: #34a245;
	border: 0 !important;
	text-align: center;
	font-size: 18px;
	margin: 15px 0 0;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output{
	background-color: #a23434;
}
span.wpcf7-list-item{
	margin: 0 0 15px 15px !important;
}
span.wpcf7-list-item label{
	display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: flex-end;
}
span.wpcf7-list-item label input{
	margin-left: 10px;
}
.modal-body .wpcf7-form .ajax-loader{
	position: absolute;
    bottom: 0;
    margin: 0;
    text-align: center;
    width: 100%;
	height: 100%;
    top: 0;
    background: rgba(52, 58, 64, 0.7);
	border-radius: 0;
}
.modal-body .wpcf7-form .ajax-loader::before{
	width: 20px;
	height: 20px;
	top: 12px;
	left: 48%;
}
.workslinks li + li{
	margin-right: 8px;
}
.workslinks li{
	margin-bottom: 8px;
}
.workslinks li a{
	display: block;
	padding: 12px 14px 8px;
	text-align: center;
	background-color: #e1e1e1;
	color: #838383;
	font-size: 15px;
}
.workslinks li a:hover,
.workslinks li.current-cat a,
.post-type-archive-works .workslinks li:first-child a {
	background-color: #0EA7C6;
	border-color: #0EA7C6;
	color: #fff;
}
/* Ã¢â€â‚¬Ã¢â€â‚¬ Custom Modal (Contact Request Ã¢â‚¬â€ centered, compact) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.custommodal .modal-dialog{
	max-width: 520px;
	margin: 1.75rem auto;
	display: flex;
	align-items: center;
	min-height: calc(100% - 3.5rem);
}
.custommodal .modal-content{
	width: 100%;
	border: 0;
	border-radius: 14px;
	box-shadow: 0 20px 60px rgba(0,0,0,.25);
	overflow: hidden;
}
.custommodal .modal-body{
	padding: 36px 28px 28px;
}
@media (max-width: 575px) {
	.custommodal .modal-dialog{
		margin-left: 15px;
		margin-right: 15px;
		min-height: calc(100% - 2rem);
	}
}
/* Injected secondary close button next to the CF7 submit */
.custommodal__close-btn{
	margin-right: 10px;
	margin-top: 6px;
	vertical-align: middle;
}
.custommodal .modal-body{ padding: 28px; }
.customslider100 .slick-list{
	padding: 40px;
}
.customslider100 .slick-next::before,
.customslider100 .slick-prev::before{
	border-radius: 0;
	background-color: transparent;
	color: #a9a9a9;
	border: 1px solid #a9a9a9;
	transition: .4s;
}
.customslider100 .slick-next:hover::before,
.customslider100 .slick-prev:hover::before{
	border-color: #f4981a;
	color: #fff;
}
.customslider100 .boxworksliderbox{
	margin-right: 80px;
	margin-left: 80px;
}
.boxworksliderbox .row,
.boxworkslider{
	min-height: 450px;
}
.boxworkslider .logo{
	max-width: 200px;
	max-height: 60px;
}
.text-justify{
	text-align: justify;
}

nav.rank-math-breadcrumb {
    text-align: center;
	font-size: 14px;
}

nav.rank-math-breadcrumb a {
    color: #fff;
}

body.single-team nav.rank-math-breadcrumb.team-breadcrumbs {
    text-align: right !important;
}

body.single-team nav.rank-math-breadcrumb.team-breadcrumbs a {
    color: #212529 !important;
}

.author-box .author-image {
    width: auto;
    height: auto;
    max-width: none;
    object-fit: cover;
    display: block;
    margin: 0 auto 16px;
}

@media (max-width: 576px) {
    .author-box .author-image {
        width: 140px;
        height: 140px;
    }
}

body.single-team .team-member-specialties-section .team-specialty-item {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    text-decoration: none;
}

body.single-team .team-member-content {
    font-size: 14px;
    line-height: 1.95;
    color: #212529;
}

body.single-team .team-member-content h3,
body.single-team .team-member-content h4,
body.single-team .team-member-content h5,
body.single-team .team-member-content h6 {
    color: #0d7d95;
    margin-bottom: 12px;
    margin-top: 28px;
}

body.single-team .team-member-content h3 {
    font-size: 18px;
}

body.single-team .team-member-content h4 {
    font-size: 16px;
}

/* Bio H2 accordion */
body.single-team .team-member-content .bio-accordion__toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    padding: 12px 20px;
    margin: 0;
    background: #ebf5f7;
    border: none;
    border-bottom: 1px solid #d6eaee;
    font-size: 14px;
    font-weight: 700;
    color: #0d7d95;
    cursor: pointer;
    transition: background 0.2s;
    text-align: right;
}

body.single-team .team-member-content .bio-accordion__toggle:first-of-type {
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

body.single-team .team-member-content .bio-accordion__toggle:last-of-type {
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    border-bottom: none;
}

body.single-team .team-member-content .bio-accordion__toggle:last-of-type.bio-accordion__toggle--open {
    border-radius: 0;
    border-bottom: 1px solid #d6eaee;
}

body.single-team .team-member-content .bio-accordion__toggle:hover {
    background: #deedf1;
}

body.single-team .team-member-content .bio-accordion__icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #0ea7c6;
}

body.single-team .team-member-content .bio-accordion__arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.25s;
    margin-right: auto;
    color: #5a6e72;
}

body.single-team .team-member-content .bio-accordion__toggle--open .bio-accordion__arrow {
    transform: rotate(180deg);
}

body.single-team .team-member-content .bio-accordion__body {
    display: none;
    padding: var(--space-md) 20px;
}

body.single-team .team-member-content .bio-accordion__body--open {
    display: block;
}

body.single-team .team-member-content > *:first-child {
    margin-top: 0 !important;
}

body.single-team .team-member-content > *:last-child {
    margin-bottom: 0 !important;
}

body.single-team .team-member-content p {
    margin: 0 0 14px !important;
}

body.single-team .team-member-content ul,
body.single-team .team-member-content ol {
    margin: 0 0 14px !important;
    padding-right: 18px !important;
}

body.single-team .team-member-content .has-background,
body.single-team .team-member-content [style*="background"] {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
}

body.single-team .team-member-content .bg-white,
body.single-team .team-member-content .rounded,
body.single-team .team-member-content .shadow,
body.single-team .team-member-content .shadow-sm,
body.single-team .team-member-content .wp-block-group,
body.single-team .team-member-content .wp-block-columns,
body.single-team .team-member-content .wp-block-column {
    background: transparent !important;
    background-color: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* ── Member Profile (single-team) ── */

.member-profile__hero-section {
    padding: 0;
}

.member-profile__content-section {
    padding-top: var(--space-sm);
}

.member-profile__hero {
    padding: calc(var(--space-md) * 2) 0;
}

.member-profile__card {
    background: #fff;
    border-radius: var(--main-radius);
    border: var(--main-border);
    box-shadow: var(--main-shadow);
    padding: var(--space-md);
}

@media (min-width: 992px) {
    .member-profile__card {
        padding: 32px;
    }
}

.member-profile__avatar {
    width: 100%;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.member-profile__name {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(205deg, #235660, #4de0fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 6px;
    line-height: 1.3;
}

.member-profile__title {
    font-size: 15px;
    font-weight: 600;
    color: #235660;
    margin: var(--space-sm) 0;
}

.member-profile__social {
    display: flex;
    gap: var(--space-md);
}

.member-profile__social-link {
    color: #235660;
    font-size: 18px;
    transition: color 0.2s;
}

.member-profile__social-link:hover {
    color: #0ea7c6;
    text-decoration: none;
}

.member-profile__bio {
    font-size: 15px;
    line-height: 1.75;
    color: #444;
    margin-bottom: var(--space-md);
}

.member-profile__cta {
    display: inline-flex;
    align-items: center;
}

/* ── Team Tabs ── */

.team-tabs {
    background: #fff;
    border-radius: var(--main-radius);
    border: var(--main-border);
    overflow: hidden;
}

.team-tabs__bar {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #d6eaee;
    background: #ebf5f7;
}

.team-tabs__tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #0d7d95;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    white-space: nowrap;
}

.team-tabs__tab:hover {
    color: #0ea7c6;
    background: #deedf1;
}

.team-tabs__tab--active {
    color: #0d7d95;
    border-bottom-color: #0ea7c6;
    background: #deedf1;
    font-weight: 700;
}

.team-tabs__tab-icon {
    flex-shrink: 0;
}

.team-tabs__panel {
    display: none;
    padding: var(--space-md);
}

.team-tabs__panel--active {
    display: block;
}

.team-tabs__posts-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px var(--space-sm);
    background: #ebf5f7;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    color: #0d7d95;
    margin-bottom: var(--space-sm);
}

.team-tabs__posts-header svg {
    color: #0ea7c6;
    flex-shrink: 0;
}

.team-tabs__posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-tabs__posts-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #e4eff1;
}

.team-tabs__posts-list li:last-child {
    border-bottom: 0;
}

.team-tabs__posts-list a {
    color: #2a3f45;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

.team-tabs__posts-list a:hover {
    color: #0ea7c6;
    text-decoration: none;
}

.team-tabs__pagination {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: var(--space-sm);
}


.member-profile__facts {
    background: #f0f7f9;
    border-radius: var(--main-radius);
    border: var(--main-border);
    box-shadow: var(--main-shadow);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.member-profile__fact {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: 12px 0;
    border-bottom: 1px solid #e4eff1;
}

.member-profile__fact:last-child {
    border-bottom: 0;
}

.member-profile__fact-icon {
    flex: 0 0 22px;
    color: #0ea7c6;
    margin-top: 2px;
}

.member-profile__fact-icon svg {
    display: block;
}

.member-profile__fact-body {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.member-profile__fact-label {
    font-size: 12px;
    font-weight: 600;
    color: #8a9ea3;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.member-profile__fact-value {
    font-size: 14px;
    font-weight: 600;
    color: #1a4a54;
    word-break: break-word;
}

.member-profile__cat-tag {
    display: inline-block;
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid #d6eaee;
    color: #235660;
    background: #fff;
    margin: 0 0 6px 6px;
    transition: background 0.2s, color 0.2s;
}

.member-profile__cat-tag:hover {
    background: #0ea7c6;
    color: #fff;
    text-decoration: none;
    border-color: #0ea7c6;
}

@media (max-width: 991px) {
    .member-profile__card {
        padding: calc(var(--space-md) * 2);
    }
    .member-profile__hero {
        text-align: center;
    }
    .member-profile__avatar {
        max-width: 75%;
    }
    .member-profile__cta {
        display: inline-flex;
        justify-content: center;
    }
    .member-profile__name {
        font-size: 24px;
    }
}

@media (min-width: 992px) {
    .member-profile__name {
        font-size: 30px;
    }
}

.doc-box {
    border-radius: var(--main-radius) !important;
    position: relative;
    padding: 5px;
    display: inline-block;
    text-align: center;
}

.doc-box .doc-img {
    position: relative;
}

.doc-box .doc-img img {
    width: 80%;
	height: auto;
    margin: 0 auto;
    border-radius: var(--main-radius) !important;

}

.doc-box .doc-txt {
    position: relative;
    margin: 15px 0;
}

.doc-box .doc-txt .title {
    margin-bottom: 10px;
}

.doc-box .doc-txt .title a {
    color: #0EA7C6;
    font-size: 17px;
}

.doc-box .doc-txt .position {
    color: #464646;
    font-size: 13px;
}

.gradient-text {
	background: -webkit-linear-gradient(205deg, #235660, #4de0fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-title {
    background: -webkit-linear-gradient(205deg, #4de0fd, #235660, #4de0fd);
    padding: 2rem 0;
}

p#breadcrumbs {
    text-align: center;
    font-size: 13px!important;
}

#breadcrumbs a {
    color: #fff;
}


.text-primary-btn {
    color: #1a8ba2 !important;
}

.footer {
    position: relative;
    background: #fbfbfb;
}

.footer .bg-fix {
    position: absolute;
    right: 0;
    height: 100%;
    width: 50%;
    background: #ebf5f7;
}

.footer .support-block-mobile {
    display: none;
    background: #ede0f6;
    padding: 47px 0;
}

.footer .left {
    background: #fbfbfb;
    padding: 60px 30px 30px 30px;
    width: 67%;
}

.d-table-cell {
    display: table-cell!important;
}

.footer .right {
    background: #ebf5f7;
    padding: 60px 30px 30px 30px;
    width: 33%;
}

.footer .left .get-in-touch {
    display: block;
    width: 100%;
    font-size: 17px;
    text-align: center;
    background: #0ea7c6;
    padding: 8px 0;
    border-radius: 30px;
    max-width: 176px;
	margin: 0;
	color: #fff;
}

.footer .left .footer-links-set-1 {
    margin: 0;
}

.footer .left .footer-links-set-1 li {
    width: 100%;
    margin-bottom: 12px;
}

.footer .left .footer-links-set-1 li a {
    display: block;
    font-size: 14px;
    line-height: 14px;
    text-decoration: none;
}

.footer a {
    text-decoration: none;
    transition: all .15s ease-in-out;
}

.footer .left .footer-links-set-2 {
    margin: 0;
}

.footer .left .footer-links-set-2 li {
    width: 100%;
    margin-bottom: 12px;
}

.footer .left .footer-links-set-2 li a {
    display: block;
    font-size: 14px;
    line-height: 14px;
    text-decoration: none;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Footer: Top Row Ã¢â‚¬â€ Logo + Social Icons Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.footer-top-row {
    margin-bottom: 28px;
    gap: 16px 0;
    justify-content: space-between;
}
.footer-social-icons {
    margin-right: auto;
}
.footer-social-icons ul {
    gap: 10px;
    justify-content: flex-end;
}
.footer-social-icons ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #e4f3f7;
    color: #0ea7c6;
    font-size: 16px;
    transition: background-color .2s ease, color .2s ease;
}
.footer-social-icons ul li a:hover {
    background-color: #0ea7c6;
    color: #fff;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Footer: Contact Column Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.footer-contact__phone {
    direction: ltr;
    display: inline-block;
}
.footer-contact__note {
    font-size: 13px;
    color: #777;
    margin-top: 8px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Footer: Navigation Grid (desktop) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.footer-nav__row {
    margin-bottom: 15px;
    flex-wrap: nowrap;
}
.footer-nav__col {
    padding-inline-start: 24px;
    padding-inline-end: 24px;
}
.footer-nav__heading {
    font-size: 15px;
    font-weight: 400;
    color: #0ea7c6;
    margin-bottom: 20px;
    display: block;
}
.footer-nav__list {
    margin: 0;
}
.footer-nav__item {
    display: table;
    margin-bottom: 12px;
}
.footer-nav__link {
    display: table-cell;
    font-size: 14px;
    line-height: 1.4;
    color: #0a0c1c;
    padding-bottom: 8px;
    transition: color .15s ease;
}
.footer-nav__link::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border: 1.5px solid #0ea7c6;
    border-radius: 2px;
    margin-inline-end: 8px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}
.footer-nav__link:hover {
    color: #0ea7c6;
    text-decoration: none;
}
.footer-nav__sublist {
    padding-inline-start: 16px;
    margin-top: 8px;
}
.footer-nav__subitem {
    margin-bottom: 8px;
}
.footer-nav__sublink {
    font-size: 13px;
    color: #777;
    padding: 0;
    transition: color .15s ease;
}
.footer-nav__sublink:hover {
    color: #0ea7c6;
    text-decoration: none;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Footer: Navigation Accordion (mobile) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.footer-nav-accordion {
    margin-bottom: 24px;
}
.footer-acc__item {
    border-bottom: 1px solid #dde8ea;
}
.footer-acc__toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 600;
    color: #235660;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: end;
}
.footer-acc__toggle:hover {
    color: #0ea7c6;
}
.footer-acc__toggle:focus-visible {
    outline: 2px solid #0ea7c6;
    outline-offset: 2px;
    border-radius: 2px;
}
.footer-acc__icon {
    font-size: 12px;
    color: #0ea7c6;
    transition: transform .25s ease;
    flex-shrink: 0;
    margin-inline-end: 8px;
}
.footer-acc__toggle[aria-expanded="true"] .footer-acc__icon {
    transform: rotate(180deg);
}
.footer-acc__body {
    padding-bottom: 10px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Footer: Legal / Copyright Bar Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.footer-legal {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #dde8ea;
}
.footer-legal p {
    font-size: 13px;
    line-height: 22px;
    color: #555;
}
.footer-legal p a {
    color: #235660;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color .15s ease, color .15s ease;
}
.footer-legal p a:hover {
    color: #0ea7c6;
    text-decoration-color: #0ea7c6;
}

.footer .left .social .h8 {
    margin-bottom: 6px;
	font-size: 25px;
    line-height: 25px;
    color: #0ea7c6;
}

.footer .left .social ul li i {
    vertical-align: middle;
}

.small, .small p {
    font-size: 15px;
    line-height: 23px;
    color: #464646;
}

.footer .left .social ul {
    margin: 20px 0 20px;
}

.footer .left .social ul li {
    display: inline-block;
    margin-left: 3px;
	margin-right: 0;
}

.footer .left .social ul li a {
    display: block;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    background: #0ea7c6;
    color: #fff;
    font-size: 18px;
    line-height: 34px;
    text-align: center;
    transition: all .15s ease-in-out;
}

/* .footer .remarks Ã¢â‚¬â€ replaced by .footer-legal (see Footer: Legal section above) */

.footer-ctitle {
	font-size: 35px;
    line-height: 35px;
    color: #0ea7c6;
	font-weight: 300;
	margin-bottom: 10px;
	display: block;
}

.help-line .small {
	font-size: 15px;
    line-height: 23px;
    color: #464646;
}

.help-line .large {
	font-size: 19px;
}

.footer .right .contacts .contact .icon {
    display: table-cell;
    margin-left: 7px;
    vertical-align: bottom;
    width: 30px;
    font-size: 20px;
	color: #0ea7c6;
}

.footer .right .contacts .contact .number {
    display: table-cell;
    vertical-align: bottom;
    border-bottom: 1px solid #0ea7c6;
    line-height: 0;
}

.footer .right .contacts {
    margin-top: 40px;
}

.footer .right .contacts .contact {
    display: table;
    margin-bottom: 35px;
}

.footer .right .btn-style-1 {
    font-size: 15px;
    line-height: 17px;
    color: #fff;
    background: #0E1126;
    padding: 9px 9px 9px 12px;
    margin-bottom: 20px;
	text-align: center;
    width: auto;
    border-radius: 30px;
}

.footer .right p {
    font-size: 12px;
    font-family: ChaletBook,sans-serif;
    font-style: italic;
    color: #464646;
}

img.footer-logo {
    margin-bottom: 10px;
}

.list-unstyled ul {
	list-style: none;
	padding: 0;
}

.container.footer-menu {
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.bg-white.solid-sm.rounded {
    border: 1px solid rgb(49 133 149 / 25%);
}

blockquote {
    font-size: 12px;
}
img.img-fluid {
    border-radius: var(--main-radius) !important;
}


.treatment-list {
	border: var(--main-border);
    border-radius: var(--main-radius) !important;
    padding: var(--space-md);
	box-shadow: var(--main-shadow);
}
 
a.call{
    background-color:white;
    color: #000000;
    margin-right: 10px;
}

.rounded_box {
    margin: auto;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: var(--main-radius) !important;
    background: #ebf5f7;
    border: var(--main-border);
    box-shadow: var(--main-shadow);
    padding: var(--space-md);
}
@media (min-width: 992px) {
    .rounded_box {
        padding: 32px;
    }
}

a.btn-whatsapp {
    font-size: 15px;
    text-align: center;
    background: #3c3c3c;
    padding: 10px 15px 10px;
    display: inline-block;
    margin: 5px 0px 0px 0px;
    color: #fff;
}

i.fab.fa-whatsapp.icon.font-16.text-primary-btn.mr-24.mb-1 {
    color: #1a8ba2 !important;
}

a.btn-contact {
    font-size: 17px;
    text-align: center;
    background: #0D7A92;
    padding: 10px 15px 10px;
    display: inline-block;
    margin: 5px 0px 0px 0px;
    color: #fff;
}

i.fa.fa-phone.icon.font-16.text-primary-btn.mr-24.mb-1 {
    color: #ffffff !important;
}

/* ─── Pagination (pgnav) ─── */

.pgnav {
    display: flex;
    justify-content: center;
    padding: var(--space-md) 0;
}

.pgnav__list {
    display: inline-flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    border-radius: var(--radius-sm);
    border: var(--main-border);
    overflow: hidden;
}

.pgnav__item {
    margin: 0;
    line-height: 1;
}

.pgnav__item + .pgnav__item {
    border-right: var(--main-border);
}

.pgnav__link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--space-sm);
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    text-decoration: none;
    background: #fff;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}

a.pgnav__link:hover {
    background: #f0f7f9;
    color: #0ea7c6;
    text-decoration: none;
}

a.pgnav__link:focus {
    outline: 2px solid #0ea7c6;
    outline-offset: -2px;
    z-index: 1;
    position: relative;
}

.pgnav__link--current {
    background: #0ea7c6;
    color: #fff;
    font-weight: 600;
    cursor: default;
}

.pgnav__link--disabled {
    color: #c4c4c4;
    cursor: not-allowed;
    background: #fafafa;
}

.pgnav__link--dots {
    color: #9ca3af;
    cursor: default;
    letter-spacing: 2px;
}

@media (max-width: 575px) {
    .pgnav__link {
        min-width: 34px;
        height: 36px;
        font-size: 13px;
    }
}

/* Legacy fallback for wp_pagenavi / non-converted usage */
.page-numbers {
    text-decoration: none;
    border: 1px solid #BFBFBF;
    padding: 3px 5px;
    margin: 2px;
}

span.page-numbers.current {
    border-color: #000;
    font-weight: bold;
}

/* Ã˜ÂªÃ™â€¦Ã™Å Ã™Å Ã˜Â² Ã˜Â§Ã™â€žÃ˜Â±Ã™Ë†Ã˜Â§Ã˜Â¨Ã˜Â· Ã˜Â¯Ã˜Â§Ã˜Â®Ã™â€ž Ã™â€¦Ã™â€šÃ˜Â§Ã™â€ž Ã˜Â¨Ã˜Â§Ã˜Â³Ã˜ÂªÃ˜Â®Ã˜Â¯Ã˜Â§Ã™â€¦ Ã˜ÂªÃ˜Â£Ã˜Â«Ã™Å Ã˜Â±Ã˜Â§Ã˜Âª Ã™â€¡Ã™Ë†Ã™ÂÃ˜Â± */
.article-entry-content a:not(div#ez-toc-container ul.ez-toc-list a):not(span a) {
    font-size: 17px;
    border-bottom: 1px solid #0ea7c6;
}






.video-container {
    position: relative;
    padding-bottom: 50.1%;
    height: 0;
    overflow: hidden;
    max-width: 89.1%;
    margin: 0 auto;
    border-radius: var(--main-radius);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--main-radius);
}



/* =============================================================
   Author Meta Box Ã¢â‚¬â€ single.php
   ============================================================= */

/* Ã˜Â§Ã™â€žÃ˜Â­Ã˜Â§Ã™Ë†Ã™Å Ã˜Â© Ã˜Â§Ã™â€žÃ˜Â±Ã˜Â¦Ã™Å Ã˜Â³Ã™Å Ã˜Â© */
.article-evidence-bar {
    overflow: hidden;
    direction: rtl;
}

/* ---- Ã˜Â´Ã˜Â±Ã™Å Ã˜Â· Ã˜Â§Ã™â€žÃ˜ÂªÃ˜Â§Ã˜Â±Ã™Å Ã˜Â® Ã™Ë†Ã˜Â§Ã™â€žÃ™â€¦Ã˜ÂµÃ˜Â§Ã˜Â¯Ã˜Â± ---- */
.evidence-bar__footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px var(--space-lg);
    background: #ebf5f7;
    border-top: 1px solid #d6eaee;
    flex-wrap: wrap;
}

.evidence-bar__last-update {
    font-size: 13px;
    color: #5a6e72;
}

.evidence-bar__sep {
    color: #aaa;
    font-size: 14px;
}

.evidence-bar__sources-toggle {
    background: none;
    border: none;
    padding: 0;
    font-size: 13px;
    color: #1a4a54;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.evidence-bar__sources-toggle i {
    font-size: 11px;
    transition: transform .25s;
}
.evidence-bar__sources-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

/* Ã™â€¦Ã˜Â­Ã˜ÂªÃ™Ë†Ã™â€° Ã˜Â§Ã™â€žÃ™â€¦Ã˜ÂµÃ˜Â§Ã˜Â¯Ã˜Â± Ã˜Â§Ã™â€žÃ™â€¦Ã™â€ Ã˜Â³Ã˜Â¯Ã™â€ž */
.evidence-bar__sources-list {
    padding: var(--space-lg);
    border-top: 1px solid #d6eaee;
    font-size: 13px;
    color: #444;
    line-height: 1.8;
}

/* =============================================================
   Post Guide Bar Ã¢â‚¬â€ Ã˜Â´Ã˜Â±Ã™Å Ã˜Â· Ã˜Â¯Ã™â€žÃ™Å Ã™â€ž Ã˜Â§Ã™â€žÃ™â€¦Ã™Ë†Ã˜Â¶Ã™Ë†Ã˜Â¹
   ============================================================= */
.post-guide-bar {
    background: #ebf5f7;
    border-top: 1px solid #cde4e8;
    direction: rtl;
    transition: box-shadow .25s;
}

/* ── عند التمرير: يتحول لـ fixed أسفل الهيدر ── */
.post-guide-bar.is-sticky {
    position: fixed;
    top: 60px;
    right: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0 5px 10px -2px rgba(0, 0, 0, .12);
    margin: 0;
    border-radius: 0;
}

/* ── Sticky: صفّر padding البوتستراب ── */
.post-guide-bar.is-sticky .container {
    padding-right: 0;
    padding-left: 0;
}

/* ديسكتوب sticky: مسافة 16px من حواف الشاشة */
.post-guide-bar.is-sticky .guide-bar__inner {
    padding-inline-start: 16px;
    padding-inline-end: 16px;
}

/* ديسكتوب sticky: إزالة separator اليسار من identity */
.post-guide-bar.is-sticky .guide-bar__identity {
    border-left: none;
    padding-left: 0;
}

/* ── موبايل sticky ── */
@media (max-width: 768px) {
    .post-guide-bar.is-sticky .guide-bar__inner {
        padding-inline-start: 0;
        padding-inline-end: 0;
    }
    .post-guide-bar.is-sticky .guide-bar__identity {
        padding-top: 12px;
        padding-bottom: 12px;
        padding-right: 16px;
        padding-left: 16px;
    }
    .post-guide-bar.is-sticky .guide-bar__mobile-toggle {
        display: inline-flex !important;
        flex-shrink: 0;
        min-width: 28px;
        min-height: 28px;
    }
}

@media (max-width: 782px) {
    .admin-bar .post-guide-bar.is-sticky {
        top: 60px;
    }
}
.guide-bar__inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    flex-wrap: wrap;
}

/* Ã¢â€¢ÂÃ¢â€¢Â Ã˜Â²Ã˜Â± Ã˜Â´Ã˜Â§Ã˜Â±Ã™Æ’ Ã˜Â§Ã™â€žÃ™â€¦Ã™â€ Ã˜Â³Ã˜Â¯Ã™â€ž Ã™ÂÃ™Å  Ã˜Â´Ã˜Â±Ã™Å Ã˜Â· Ã˜Â§Ã™â€žÃ˜Â¯Ã™â€žÃ™Å Ã™â€ž Ã¢â€¢ÂÃ¢â€¢Â */
.pgb-share-wrap {
    flex-shrink: 0;
    position: relative;
}

/* Ã˜Â§Ã™â€žÃ˜Â²Ã˜Â± Ã˜Â§Ã™â€žÃ™â€¦Ã™ÂÃ˜Â´Ã˜ÂºÃ™ÂÃ™â€˜Ã™â€ž */
.pgb-share-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 13px 5px 11px;
    border: 1.5px solid #c5dde3;
    border-radius: 20px;
    background: #fff;
    color: #1a8ba2;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s, border-color .15s, color .15s;
    white-space: nowrap;
    font-family: inherit;
}
.pgb-share-trigger:hover {
    background: #eef8fb;
    border-color: #1a8ba2;
}
.pgb-share-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Ã˜Â§Ã™â€žÃ™â€šÃ˜Â§Ã˜Â¦Ã™â€¦Ã˜Â© Ã˜Â§Ã™â€žÃ™â€¦Ã™â€ Ã˜Â³Ã˜Â¯Ã™â€žÃ˜Â© */
.pgb-share-dropdown {
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    min-width: 200px;
    background: #fff;
    border-radius: var(--main-radius) !important;
    box-shadow: var(--main-shadow);
    padding: 6px;
    z-index: 1050;
    opacity: 0;
    transform: translateY(-6px) scale(.97);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    direction: rtl;
}
.pgb-share-wrap.is-open .pgb-share-dropdown {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Ã˜Â¹Ã™â€ Ã˜Â§Ã˜ÂµÃ˜Â± Ã˜Â§Ã™â€žÃ™â€šÃ˜Â§Ã˜Â¦Ã™â€¦Ã˜Â© */
.pgb-share-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 9px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #1d2327;
    font-size: 13.5px;
    font-weight: 500;
    border: none;
    background: none;
    cursor: pointer;
    text-align: right;
    font-family: inherit;
    transition: background .12s;
}
.pgb-share-item:hover {
    background: #f4f8fa;
    color: #1a4a54;
}

/* Ã˜Â£Ã™Å Ã™â€šÃ™Ë†Ã™â€ Ã˜Â© Ã™Æ’Ã™â€ž Ã˜Â¹Ã™â€ Ã˜ÂµÃ˜Â± Ã¢â‚¬â€ Ã˜Â¨Ã˜Â¯Ã™Ë†Ã™â€  Ã˜Â¯Ã˜Â§Ã˜Â¦Ã˜Â±Ã˜Â©Ã˜Å’ Ã™â€žÃ™Ë†Ã™â€  Ã˜Â±Ã™â€¦Ã˜Â§Ã˜Â¯Ã™Å  Ã˜Â¯Ã˜Â§Ã™Æ’Ã™â€  */
.pgb-share-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    font-size: 15px;
    flex-shrink: 0;
    color: #4a5568;
}
.pgb-share-item__icon--x svg { width: 15px; height: 15px; }
.pgb-share-item__icon--copy  { font-size: 13px; }
.pgb-share-item__icon--mail  { font-size: 13px; }
.pgb-share-item:hover .pgb-share-item__icon { color: #1a8ba2; }

/* Ã˜Â´Ã˜Â±Ã™Å Ã˜Â· Ã˜Â§Ã™â€žÃ™Ë†Ã˜Â³Ã™Ë†Ã™â€¦ + Ã˜Â²Ã˜Â± Ã˜Â§Ã™â€žÃ˜Â´Ã˜Â§Ã˜Â±Ã™Æ’Ã˜Â© Ã™ÂÃ™Å  Ã™â€ Ã™â€¡Ã˜Â§Ã™Å Ã˜Â© Ã˜Â§Ã™â€žÃ™â€¦Ã™â€šÃ˜Â§Ã™â€ž */
.article-share-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    border-top: 1px solid #d6eaee;
    direction: rtl;
}
/* Ã˜Â§Ã™â€žÃ™â€¡Ã˜Â§Ã˜ÂªÃ™Â: Ã˜Â§Ã™â€žÃ˜Â²Ã˜Â± Ã™ÂÃ™Å  Ã˜Â§Ã™â€žÃ™â€¦Ã™â€ Ã˜ÂªÃ˜ÂµÃ™ÂÃ˜Å’ Ã˜Â§Ã™â€žÃ™Ë†Ã˜Â³Ã™Ë†Ã™â€¦ Ã™Æ’Ã˜Â§Ã™â€¦Ã™â€žÃ˜Â© Ã˜Â§Ã™â€žÃ˜Â¹Ã˜Â±Ã˜Â¶ */
@media (max-width: 767px) {
    .article-share-tools {
        flex-direction: column;
        align-items: center;
    }
    .article-share-tools__tags {
        justify-content: center;
    }
}
.article-share-tools__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.post-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #f0f7f9;
    border: 1px solid #cde4e8;
    border-radius: 20px;
    font-size: 12.5px;
    color: #1a4a54;
    text-decoration: none;
    transition: background .15s, color .15s;
    white-space: nowrap;
}
.post-tag:hover {
    background: #1a8ba2;
    border-color: #1a8ba2;
    color: #fff;
}

/* Ã˜Â§Ã™â€žÃ™â€šÃ˜Â§Ã˜Â¦Ã™â€¦Ã˜Â© Ã˜Â§Ã™â€žÃ™â€¦Ã™â€ Ã˜Â³Ã˜Â¯Ã™â€žÃ˜Â© Ã™ÂÃ™Å  Ã™â€ Ã™â€¡Ã˜Â§Ã™Å Ã˜Â© Ã˜Â§Ã™â€žÃ™â€¦Ã™â€šÃ˜Â§Ã™â€ž Ã˜ÂªÃ™ÂÃ˜ÂªÃ˜Â­ Ã™â€žÃ™â€žÃ˜Â£Ã˜Â¹Ã™â€žÃ™â€° */
.article-share-tools .pgb-share-dropdown {
    bottom: calc(100% + 8px);
    top: auto;
    left: 0;
}

/* Ã˜ÂªÃ™â€žÃ™â€¦Ã™Å Ã˜Â­ "Ã˜ÂªÃ™â€¦ Ã˜Â§Ã™â€žÃ™â€ Ã˜Â³Ã˜Â®" */
.pgb-copied-tip {
    margin-right: auto;
    font-size: 11.5px;
    color: #25a56a;
    font-weight: 600;
    opacity: 0;
    transition: opacity .2s;
}
.pgb-share-item--copy.copied .pgb-copied-tip {
    opacity: 1;
}
.guide-bar__identity {
    font-size: 13px;
    font-weight: 700;
    color: #1a4a54;
    white-space: nowrap;
    flex-shrink: 0;
    border-left: 1px solid #0ea7c6;
    padding-left: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.guide-bar__identity i {
    color: #0ea7c6;
    font-size: 14px;
}
/* Mobile toggle button: hidden on desktop */
.guide-bar__mobile-toggle {
    display: none;
}
.guide-bar__identity-link {
    color: #1a4a54;
    text-decoration: none;
    transition: color .2s;
}
.guide-bar__identity-link:hover {
    color: #0ea7c6;
}
.guide-bar__nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

/* Ã˜Â¹Ã™â€ Ã˜ÂµÃ˜Â± Ã˜Â¹Ã˜Â§Ã˜Â¯Ã™Å  (Ã™â€¦Ã™â€šÃ˜Â§Ã™â€ž Ã™Ë†Ã˜Â§Ã˜Â­Ã˜Â¯) */
.guide-bar__link-item {
    font-size: 13px;
    color: #5a6e72;
    text-decoration: none;
    padding: 5px 12px;
    border-radius: 20px;
    transition: background .2s, color .2s;
    white-space: nowrap;
    display: inline-block;
}
.guide-bar__link-item:hover {
    background: #fff;
    color: #0d7a92;
}
.guide-bar__link-item--active {
    background: #0ea7c6;
    color: #fff !important;
    font-weight: 700;
}

/* Ã˜Â¹Ã™â€ Ã˜ÂµÃ˜Â± dropdown (Ã™â€¦Ã˜Â¬Ã™â€¦Ã™Ë†Ã˜Â¹Ã˜Â© Ã™â€¦Ã™â€šÃ˜Â§Ã™â€žÃ˜Â§Ã˜Âª Ã˜Â¨Ã™â€ Ã™ÂÃ˜Â³ Ã˜Â§Ã™â€žÃ˜Â§Ã˜Â³Ã™â€¦) */
.guide-bar__group {
    position: relative;
}
.guide-bar__group-btn {
    font-size: 13px;
    color: #5a6e72;
    padding: 5px 12px;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    transition: background .2s, color .2s;
}
.guide-bar__group-btn:hover,
.guide-bar__group--open .guide-bar__group-btn {
    background: #fff;
    color: #0d7a92;
}
.guide-bar__group-btn--active {
    background: #0ea7c6 !important;
    color: #fff !important;
    font-weight: 700;
}
.guide-bar__group-btn i.arrow {
    font-size: 10px;
    transition: transform .2s;
}
.guide-bar__group--open .guide-bar__group-btn i.arrow {
    transform: rotate(180deg);
}
.guide-bar__group-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #fff;
    border: var(--main-border);
    border-radius: var(--main-radius) !important;
    box-shadow: var(--main-shadow);
    min-width: 180px;
    z-index: 10;
    overflow: hidden;
    direction: rtl;
}
.guide-bar__group--open .guide-bar__group-dropdown {
    display: block;
}
.guide-bar__group-dropdown a {
    display: block;
    padding: 9px 16px;
    font-size: 13px;
    color: #1a4a54;
    text-decoration: none;
    border-bottom: 1px solid #f0f5f6;
    transition: background .15s;
}
.guide-bar__group-dropdown a:last-child {
    border-bottom: none;
}
.guide-bar__group-dropdown a:hover {
    background: #ebf5f7;
}
.guide-bar__group-dropdown a.is-current {
    font-weight: 700;
    color: #0ea7c6;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬
   GUIDE BAR Ã¢â‚¬â€ MOBILE TRANSFORMATION  (Ã¢â€°Â¤ 768px)
   Same markup, same data. Visually converts horizontal bar Ã¢â€ â€™ collapsible panel.
   Desktop rules above are completely untouched.
   Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 768px) {

    /* 1. Outer bar: keep full width, remove overflow that clips the panel */
    .post-guide-bar {
        overflow: visible;
    }

    /* 2. Inner: stack title on top of nav (column), not side-by-side */
    .guide-bar__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
    }

    /* 3. Title row: becomes the tap-to-open trigger */
    .guide-bar__identity {
        font-size: 13px;
        padding: 12px 16px;
        border-left: none;               /* remove desktop left-border separator */
        white-space: normal;
        cursor: pointer;
        -webkit-user-select: none;
        user-select: none;
        width: 100%;
        box-sizing: border-box;
        /* Keep flex from desktop; space-between pushes chevron to the far end */
        justify-content: space-between;
    }

    /* Title text: exact same label as desktop Ã¢â‚¬â€ NO prefix, NO modification */
    /* Remove hyperlink navigation on mobile; desktop hover rules untouched */
    .guide-bar__identity-link {
        pointer-events: none;
        color: inherit;
        text-decoration: none;
        cursor: default;
    }

    /* Chevron toggle button Ã¢â‚¬â€ visible on mobile only */
    .guide-bar__mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-right: auto;   /* pushes to far left in RTL flex */
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        color: #0ea7c6;
        font-size: 13px;
        flex-shrink: 0;
        transition: transform .25s ease;
    }
    .guide-bar__mobile-toggle i {
        transition: transform .25s ease;
        font-size: 13px;
        color: #0ea7c6;
    }
    .guide-bar--open .guide-bar__mobile-toggle i {
        transform: rotate(180deg);
    }

    /* 4. Nav panel: collapsed by default, revealed on --open */
    .guide-bar__nav-menu {
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 6px 12px 10px;
        border-top: 1px solid #cde4e8;
        gap: 2px;
    }
    .guide-bar--open .guide-bar__nav-menu {
        display: flex;
    }

    /* 5. Links: full-width stacked rows */
    .guide-bar__link-item {
        display: block;
        border-radius: 6px;
        padding: 8px 12px;
        white-space: normal;
        font-size: 13px;
    }

    /* 6. Group buttons: full width */
    .guide-bar__group {
        width: 100%;
    }
    .guide-bar__group-btn {
        display: flex;
        width: 100%;
        border-radius: 6px;
        padding: 8px 12px;
        font-size: 13px;
        text-align: right;
        justify-content: space-between;
    }

    /* 7. Sub-dropdown: static (not absolute) so it expands inline */
    .guide-bar__group-dropdown {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: transparent;
        min-width: 0;
        padding-right: 16px;
    }
    .guide-bar__group-dropdown a {
        border-bottom: none;
        padding: 6px 10px;
        border-radius: 5px;
        font-size: 13px;
    }
}


/* =============================================================
   ============================================================= */
.post-hero-section {
    padding: var(--space-lg) 0; /* 24px — مناسب مع البطاقة البيضاء الجديدة */
    direction: rtl;
}
.post-hero-section .hero-breadcrumb {
    text-align: right;
    font-size: 13px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Medical Breadcrumb Ã¢â€â‚¬Ã¢â€â‚¬ */
.medical-breadcrumb {
    text-align: right;
}
.medical-breadcrumb p {
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    justify-content: flex-start;
    direction: rtl;
}
/* Ã˜Â£Ã™Å Ã™â€šÃ™Ë†Ã™â€ Ã˜Â© Ã˜Â§Ã™â€žÃ™â€¡Ã™Ë†Ã™â€¦ Ã¢â‚¬â€ Ã˜Â§Ã™â€žÃ™â€žÃ™Ë†Ã™â€  Ã˜Â§Ã™â€žÃ˜Â£Ã˜Â³Ã˜Â§Ã˜Â³Ã™Å  Ã™â€žÃ™â€žÃ˜ÂªÃ˜ÂµÃ™â€¦Ã™Å Ã™â€¦ */
.medical-breadcrumb .bc-home {
    color: #1a8ba2 !important;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    transition: color .15s;
}
.medical-breadcrumb .bc-home:hover {
    color: #235660 !important;
}
/* Ã˜Â¨Ã˜Â§Ã™â€šÃ™Å  Ã˜Â§Ã™â€žÃ˜Â±Ã™Ë†Ã˜Â§Ã˜Â¨Ã˜Â· Ã¢â‚¬â€ Ã™â€žÃ™Ë†Ã™â€  Ã˜Â§Ã™â€žÃ™â€ Ã˜Âµ Ã˜Â§Ã™â€žÃ˜Â·Ã˜Â¨Ã™Å Ã˜Â¹Ã™Å  */
.medical-breadcrumb a:not(.bc-home) {
    color: #2d3436 !important;
    text-decoration: none;
    transition: color .15s;
    font-size: 13px;
}
.medical-breadcrumb a:not(.bc-home):hover {
    color: #1a8ba2 !important;
}
/* Ã˜Â§Ã™â€žÃ™ÂÃ˜Â§Ã˜ÂµÃ™â€ž | */
.medical-breadcrumb .bc-sep {
    color: #b2bec3;
    margin: 0 7px;
    font-weight: 300;
    font-size: 12px;
    line-height: 1;
    user-select: none;
}
.medical-breadcrumb span:not(.bc-sep) {
    color: #636e72;
    font-size: 13px;
}

.post-hero-section h1 {
    line-height: 1.4;
}
.hero-article-excerpt {
    color: #444;
    line-height: 1.85;
}
/* Ã˜Â³Ã˜Â·Ã˜Â± Ã˜Â§Ã™â€žÃ™Æ’Ã˜Â§Ã˜ÂªÃ˜Â¨ Ã˜Â¯Ã˜Â§Ã˜Â®Ã™â€ž Ã˜Â§Ã™â€žÃ™â€¡Ã™Å Ã˜Â¯Ã˜Â± Ã˜Â¨Ã˜Â¯Ã™Ë†Ã™â€  Ã˜Â®Ã™â€žÃ™ÂÃ™Å Ã˜Â© */
.post-hero-section .article-trust-line {
    background: none;
    border: none;
    padding: 12px 0 0;
}

/* ================================================================
   POST HERO SECTION — البطاقة البيضاء + guide bar داخلها
   ================================================================ */

/* ── البطاقة البيضاء: overflow:visible يسمح لقوائم البار المنسدلة بالظهور ── */
.post-hero-section .member-profile__card {
    overflow: visible;
    --card-pad: 32px;
}

/* ── Clip wrapper: يحيط بالصف فقط — البار خارجه ليعمل dropdown بحرية ── */
.post-hero__img-clip {
    margin: calc(-1 * var(--card-pad)) calc(-1 * var(--card-pad)) 0;
    overflow: hidden;
    border-radius: var(--main-radius) var(--main-radius) 0 0;
}

/* Row: يلغي gutter البوتستراب + stretch رأسي للأعمدة */
.post-hero__img-clip > .row {
    margin: 0;
    align-items: stretch !important;
}

/* ── Guide Bar داخل البطاقة — أسفلها ── */
.post-hero-section .post-guide-bar {
    margin: 0 calc(-1 * var(--card-pad)) calc(-1 * var(--card-pad));
    border-radius: 0 0 var(--main-radius) var(--main-radius);
}

@media (max-width: 991px) {
    .post-hero-section .post-guide-bar:not(.is-sticky) {
        margin-top: 12px;
    }
}

.post-hero-section .post-guide-bar.is-sticky {
    margin: 0;
    border-radius: 0;
}

.post-hero-section .post-guide-bar:not(.is-sticky) .container {
    max-width: none;
    padding-inline-start: 0;
    padding-inline-end: 0;
}

.post-hero-section .post-guide-bar:not(.is-sticky) .guide-bar__inner {
    padding-inline-start: var(--card-pad);
    padding-inline-end: var(--card-pad);
}

/* ── Desktop (≥ 992px) ── */
@media (min-width: 992px) {
    .post-hero-section .member-profile__card .col-lg-7 {
        padding: var(--card-pad);
        padding-inline-end: var(--space-lg);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .post-hero-section .member-profile__card .col-lg-5 {
        padding: 0;
        display: flex;
        flex-direction: column;
    }
    .post-hero-section .member-profile__card .col-lg-5 figure {
        flex: 1 1 auto;
        margin: 0;
        min-height: 0;
    }
    .post-hero-section .member-profile__card .col-lg-5 img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* ── Mobile (≤ 991px) ── */
@media (max-width: 991px) {
    .post-hero-section .member-profile__card .col-lg-5 {
        padding: 0;
        width: 100%;
    }
    .post-hero-section .member-profile__card .col-lg-5 figure {
        margin: 0;
    }
    .post-hero-section .member-profile__card .col-lg-5 img {
        display: block;
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    .post-hero-section .member-profile__card .col-lg-7 {
        width: 100%;
        padding: var(--space-lg) var(--card-pad) 0;
    }
}

/* =============================================================
   Article Main Card — البطاقة الموحدة للتبويبات + جسم المقال
   ============================================================= */

.article-main-section {
    background: #fff;
    padding: var(--space-md) 0 var(--space-lg); /* 16px top — يقلل المسافة بعد guide-bar */
}

.article-main-card {
    background: #fff;
    border-radius: var(--main-radius);
    border: var(--main-border);
    box-shadow: var(--main-shadow);
    overflow: hidden;
}

@media (max-width: 575px) {
    .article-main-section { padding: var(--space-md) 0; }
}


/* ===== Ã™â€šÃ˜Â³Ã™â€¦ Ã˜Â§Ã™â€žÃ™â€¦Ã™â€žÃ˜Â®Ã˜Âµ Ã˜Â§Ã™â€žÃ˜Â·Ã˜Â¨Ã™Å  Ã¢â‚¬â€ Ã˜ÂªÃ˜Â¨Ã™Ë†Ã™Å Ã˜Â¨Ã˜Â§Ã˜Âª + Ã˜Â¬Ã˜Â¯Ã™Ë†Ã™â€ž Ã˜Â§Ã™â€žÃ™â€¦Ã˜Â­Ã˜ÂªÃ™Ë†Ã™Å Ã˜Â§Ã˜Âª ===== */
/* =============================================================
   Article Surface System
   Shared card appearance used by all article-level blocks:
   atabs, article body, evidence bar, CTA wall, FAQ, related.
   ============================================================= */

.article-surface {
    background: #fff;
    border-radius: var(--main-radius);
    border: var(--main-border);
    box-shadow: var(--main-shadow);
    overflow: hidden;
}

.article-surface__body {
    padding: var(--space-md);  /* 16px — mobile */
}
@media (min-width: 576px) {
    .article-surface__body { padding: var(--space-lg); }  /* 24px — tablet */
}
@media (min-width: 992px) {
    .article-surface__body { padding: 32px; }              /* 32px — desktop */
}

.article-section {
    background: #fff;
    padding: var(--space-lg) 0;
}

.article-section--muted {
    background: #f0f7f9;
}

.article-section__heading {
    font-size: 18px;
    font-weight: 700;
    color: #1a4a54;
    margin: 0 0 var(--space-md) 0;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.article-section__heading-icon {
    color: #0ea7c6;
    flex-shrink: 0;
}

/* =============================================================
   Article Intro Tabs (atabs)
   ============================================================= */

/* .atabs — لم تعد تُستخدم كـ outer section (محتفظ بها legacy) */
.atabs {
    background: #f0f7f9;
    padding: var(--space-lg) 0;
}

.atabs__wrap {
    /* داخل article-main-card — لا يحتاج border/shadow مستقل */
    background: #fff;
    border-bottom: 1px solid #d6eaee;
    overflow: hidden;
}

/* NOTE: atabs uses its own wrap instead of .article-surface because the
   tab bar header needs overflow:hidden on the card boundary. */

.atabs__bar {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #d6eaee;
    background: #ebf5f7;
}

.atabs__tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #5a6e72;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    white-space: nowrap;
}

.atabs__tab:hover {
    color: #0ea7c6;
    background: #f0f7f9;
}

.atabs__tab:focus-visible {
    outline: 2px solid #0ea7c6;
    outline-offset: -2px;
    z-index: 1;
}

.atabs__tab--active {
    color: #0ea7c6;
    border-bottom-color: #0ea7c6;
    background: #fff;
    font-weight: 700;
}

.atabs__tab-icon {
    flex-shrink: 0;
}

.atabs__panel {
    display: none;
    padding: var(--space-md); /* 16px — mobile، يتطابق مع article-surface__body */
}
@media (min-width: 576px) {
    .atabs__panel { padding: var(--space-lg); }   /* 24px tablet */
}
@media (min-width: 992px) {
    .atabs__panel { padding: 32px; }              /* 32px desktop — يتطابق مع article-surface__body */
}

.atabs__panel--active {
    display: block;
}

.atabs__panel[hidden] {
    display: none;
}

.atabs__summary {
    color: #2a3f45;
    font-size: 14px;
    line-height: 1.9;
    margin: 0;
}

.atabs__points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.atabs__points li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 14px;
    color: #2a3f45;
    line-height: 1.7;
}

.atabs__point-icon {
    color: #0ea7c6;
    flex-shrink: 0;
    margin-top: 2px;
}

.atabs__toc {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 1;
}

.atabs__toc li {
    break-inside: avoid;
    margin-bottom: 4px;
}

.atabs__toc li a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 6px var(--space-sm);
    font-size: 13px;
    color: #2a3f45;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: background 0.2s, color 0.2s;
    border-bottom: none !important;
}

.atabs__toc li a:hover {
    background: #f0f7f9;
    color: #0ea7c6;
}

.atabs__toc-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    font-size: 11px;
    font-weight: 700;
    color: #0ea7c6;
    background: #ebf5f7;
    border-radius: 6px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .atabs__toc {
        columns: 2;
        column-gap: var(--space-lg);
    }
}

@media (max-width: 575px) {
    .atabs__tab {
        padding: 10px 12px;
        font-size: 12px;
        gap: 4px;
    }

    .atabs__tab-icon {
        width: 16px;
        height: 16px;
    }

    .atabs__panel {
        padding: var(--space-md);
    }

    .atabs__bar {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* ── Legacy (kept for backward compat with other templates) ── */
.post-intro-text-section {
    display: none;
}


@media (max-width: 991px) {
    .post-hero-section { padding: var(--space-md) 0; }
    .post-hero-section .pr-lg-5 { padding-right: 0 !important; }
}

/* =============================================================
   Article Inline Byline Ã¢â‚¬â€ Ã˜Â³Ã˜Â·Ã˜Â± Ã˜Â§Ã™â€žÃ™Æ’Ã˜Â§Ã˜ÂªÃ˜Â¨/Ã˜Â§Ã™â€žÃ™â€¦Ã˜Â±Ã˜Â§Ã˜Â¬Ã˜Â¹ Ã˜Â£Ã˜Â³Ã™ÂÃ™â€ž Ã˜Â§Ã™â€žÃ˜ÂµÃ™Ë†Ã˜Â±Ã˜Â©
   ============================================================= */
.article-trust-line {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #f7fbfc;
    border-bottom: 1px solid #e0eef1;
    direction: rtl;
    flex-wrap: nowrap;
}

/* Ã™â€¦Ã˜Â¬Ã™â€¦Ã™Ë†Ã˜Â¹Ã˜Â© Ã˜Â§Ã™â€žÃ˜ÂµÃ™Ë†Ã˜Â± Ã˜Â§Ã™â€žÃ™â€¦Ã˜ÂªÃ˜Â¯Ã˜Â§Ã˜Â®Ã™â€žÃ˜Â© */
.article-trust-line__avatars {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.article-trust-line__avatars a {
    display: block;
    line-height: 0;
}
.article-trust-line__avatars a + a {
    margin-right: -10px; /* Ã˜Â§Ã™â€žÃ˜ÂªÃ˜Â¯Ã˜Â§Ã˜Â®Ã™â€ž Ã˜Â¨Ã™Å Ã™â€  Ã˜Â§Ã™â€žÃ˜ÂµÃ™Ë†Ã˜Â±Ã˜ÂªÃ™Å Ã™â€  */
}
.article-trust-line__avatar {
    width: 50px;
    height: 50px;
    object-fit: cover;
    display: block;
}

/* Ã˜Â§Ã™â€žÃ™â€ Ã˜Âµ */
.article-trust-line__text {
    font-size: 13px;
    color: #5a6e72;
    margin: 0;
    line-height: 1.5;
}
.article-trust-line__label {
    color: #5a6e72;
}
.article-trust-line__name {
    font-weight: 700;
    color: #1a4a54;
    text-decoration: none;
}
.article-trust-line__name:hover {
    color: #0d7a8a;
    text-decoration: underline;
}
.article-trust-line__sep {
    display: inline-block;
    width: 0;
    height: 16px;
    border-right: 1px solid #0ea7c6;
    margin: 0 8px;
    vertical-align: middle;
}
.article-trust-line__meta {
    color: #6b7a7d;
    font-size: 13px;
}
@media (max-width: 576px) {
    .article-trust-line {
        padding: 12px 16px;
        gap: 10px;
        align-items: flex-start;
    }
    .article-trust-line__avatars {
        flex-shrink: 0;
        margin-top: 2px;
    }
    .article-trust-line__text {
        flex: 1;
        line-height: 1.6;
    }
}

/*------------- Responsive ---------- */
/**************** MIN ****************/
@media (min-width: 768px){
	.gridbox100 .boxworks{height: 200px;}
	.gridbox100__1 .boxworks{height: 420px;}
	.gridbox100__4 .boxworks{height: 100px;}
	.gridbox100{
		display: grid;
		grid-template-columns: 400px auto auto;
		grid-template-areas:
		'box100_1 box100_1 box100_2'
		'box100_1 box100_1 box100_3'
		'box100_4 box100_4 box100_4';
		grid-gap: 20px;
	}
}
@media (min-width: 992px){
	.mt-lg-n6,.my-lg-n6{margin-top:-5rem!important}
	.customslider__services__block{margin-left: -20%;}
	.gridbox100 .boxworks{height: 200px;}
	.gridbox100__1 .boxworks,.gridbox100__4 .boxworks{height: 420px;}
	.gridbox100{
		display: grid;
		grid-template-columns: 400px auto auto;
		grid-template-areas:
		'box100_1 box100_2 box100_4'
		'box100_1 box100_3 box100_4';
		grid-gap: 20px;
	}
}
@media (min-width: 1250px){
	.gridbox100 .boxworks{height: 190px;}
	.gridbox100__1 .boxworks,.gridbox100__4 .boxworks{height: 400px;}
	.gridbox100{
		display: grid;
		grid-template-columns: 500px auto auto;
		grid-template-areas:
		'box100_1 box100_2 box100_4'
		'box100_1 box100_3 box100_4';
		grid-gap: 20px;
	}
}
@media (min-width: 1440px){
	.container{max-width: 1200px;}
}
/**************** MAX ****************/
.dotted-menu {
	text-align: right;
}

.dotted-menu li {
	list-style-type: none;
	position: relative;
	padding-right: 20px;
}

.dotted-menu li::before {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 4px;
	background-color: white;
	border-radius: 50%;
}

@media (max-width: 992px) {
	.slidertitle{min-height: 200px;}
	header{min-height: 64px;}
	.custommodal .modal-body{padding: 25px;}
	.boxclients__slider .slick-next, .boxclients__slider .slick-prev{bottom: 0;}
	.boxworksliderbox .row,.boxworkslider{min-height: inherit;}
	.imgtopbg{margin-top: -15px;}
	.footerbottom__links li{flex: 0 0 50%;max-width: 50%;}
    .footerbottom__links li a{font-size: 15px;}

}
@media (max-width: 768px) {
	.customslider100 .slick-list{padding: 0;}
	.customslider100 .boxworksliderbox{margin-right: 0;margin-left: 0;box-shadow: none !important;border: 1px solid #e6e6e6;}
	.boxworkslider .logo{max-width: 120px;max-height: 50px;}
	.boxtitleicon{margin: 30px 15px 60px 15px;}
	.nav-tabs.customtabs .nav-link{font-size: 18px;}
	.nav-tabs.customtabs .nav-item{margin-left: 15px;margin-bottom: 15px;}
	.gridbox100 .boxworks{margin-bottom: 15px;}
	.gridbox100 .boxworks{height: 180px;}
	.gridbox100__4 .boxworks{height: 100px;}
	.slidertitle{background-position: left center;}
	.admin-bar .headerbg.sticky{top: 0;}
	.custommodal .modal-body{padding: 24px 20px;}
	.boxclients__slide {height: 70px}
	.boxclients__slide img{max-height: 70px}
	.footertop .sharesocial li a{width: 40px;height: 40px;line-height: 40px;font-size: 18px;}
	.footer .left, .footer .right {
	width: 100%;
}
	
	.bg-white.py-3.py-md-3.py-lg-4.overflow-hidden {
    padding-top: 2rem!important;
    padding-bottom: 2rem!important;
}
	.d-table-cell {
    display: inline-block!important;
}
	.footer .bg-fix {
    display: none;
}
	.container.footer-menu {
		padding: 0;
	}
	.footer-legal {
    margin-top: 10px;
    padding-top: 10px;
}
	.footer-legal p {
    margin: 0;
    font-size: 12px;
}
	img.footer-logo {
    height: 70px;
    margin-bottom: 15px;
}
	.footer-social-icons ul {
    justify-content: flex-start;
}
	.article-entry-content img, iframe {
    max-width: 100%;
    height: auto;
    margin: 0 !important;
}
}
@media (max-width: 500px) {
	.btn-group-lg>.btn, .btn-lg{padding: 10px 15px 8px;}
}
@media (max-width: 375px) {

}
@media only screen and (max-width: 500px){
    a.call{
        display: inline-block;
        margin: 20px 0px 0px 0px;
    }
}

/* =============================================================================
   RESPONSIVE Ã¢â‚¬â€ Mobile breadcrumb positioning
   Breakpoint: 991.98px (Bootstrap lg = 992px)
   ============================================================================= */

/* Mobile breadcrumb (above image): visible only below lg via d-lg-none Bootstrap class */
.hero-breadcrumb--mobile {
    font-size: 13px;
    line-height: 1.5;
}

/* =============================================================
   Single Post Ã¢â‚¬â€ Section wrappers
   Ã™Æ’Ã™â€ž Ã™â€šÃ˜Â³Ã™â€¦ Ã™Å Ã˜Â­Ã˜ÂµÃ™â€ž Ã˜Â¹Ã™â€žÃ™â€° Ã˜Â®Ã™â€žÃ™ÂÃ™Å Ã˜Â© Ã™Ë†Ã™â€¦Ã˜Â³Ã˜Â§Ã™ÂÃ˜Â© Ã™â€¦Ã˜Â³Ã˜ÂªÃ™â€šÃ™â€žÃ˜Â©
   ============================================================= */
.article-body-section       { background: #fff; }
.article-content-wrapper    {
    border-radius: var(--main-radius);
    border: var(--main-border);
    box-shadow: var(--main-shadow);
    overflow: hidden;
    background: #fff;
}

/* Page template variant Ã¢â‚¬â€ Ã˜Â¥Ã™Å Ã™â€šÃ˜Â§Ã˜Â¹ Ã˜Â§Ã™â€žÃ™â€¦Ã˜Â³Ã˜Â§Ã™ÂÃ˜Â§Ã˜Âª Ã˜Â§Ã™â€žÃ™â€¦Ã™Ë†Ã˜Â­Ã™Å½Ã™â€˜Ã˜Â¯ Ã™â€žÃ™â€žÃ™â€¦Ã™Ë†Ã™â€šÃ˜Â¹ */
.article-body-section--page { padding: 0 0 90px; }
@media (max-width: 767px) {
    .article-body-section--page { padding: 0 0 40px; }
}

.medical-action-wall        { background: #fff; padding: var(--space-lg) 0; }
.action-wall__title         { line-height: 1.5; }
.action-wall__btns-group    { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
@media (min-width: 992px)   { .action-wall__btns-group { justify-content: flex-start; } }

.medical-faq-section        { background: #fff; }
.article-evidence-section   { background: #fff; padding: var(--space-lg) 0; }
.faq-related-section        { background: #fff; }
.related-resources-section  { background: #fff; }

/* ── Story Cards (archive-story immersive overlay) ── */
.story-card {
    border-radius: var(--main-radius);
    height: 340px;
    color: #fff;
    text-decoration: none;
    box-shadow: var(--main-shadow);
}
.story-card:hover,
.story-card:focus {
    color: #fff;
    text-decoration: none;
}
.story-card__img {
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    transition: transform .6s ease;
    border-radius: var(--main-radius);
}
.story-card:hover .story-card__img {
    transform: scale(1.06);
}
.story-card__overlay {
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(10,12,28,.78) 0%, rgba(10,12,28,.2) 55%, transparent 100%);
    border-radius: var(--main-radius);
    transition: background .4s;
    z-index: 1;
}
.story-card:hover .story-card__overlay {
    background: linear-gradient(0deg, rgba(10,12,28,.88) 0%, rgba(10,12,28,.35) 100%);
}
.story-card__content {
    bottom: 0;
    right: 0;
    padding: var(--space-lg);
    z-index: 2;
    text-align: right;
}
.story-card__date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    opacity: .85;
    margin-bottom: 8px;
}
.story-card__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 6px;
    color: #fff;
}
.story-card__excerpt {
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    opacity: .8;
}
@media (max-width: 767px) {
    .story-card {
        height: 280px;
    }
    .story-card__title {
        font-size: 16px;
    }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Hero trust badge (logos + ministry approval text) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.hero-visual { display: inline-block; max-width: 100%; }
.hero-trust-badge {
    position: absolute;
    bottom: 6%;
    right: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    background: #ffffffed;
    border-radius: var(--main-radius) !important;
    border: var(--main-border);
    box-shadow: var(--main-shadow);
    max-width: 92%;
    white-space: nowrap;
    z-index: 3;
}
.hero-trust-badge__logos {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.hero-trust-badge__logos img {
    height: 34px;
    width: auto;
    object-fit: contain;
    display: block;
}
.hero-trust-badge__text {
    font-size: 13px;
    font-weight: 500;
    color: #000000;
    line-height: 1.2;
}
@media (max-width: 575.98px) {
    .hero-trust-badge { gap: 10px; padding: 8px 12px; border-radius: 12px; }
    .hero-trust-badge__logos img { height: 26px; }
    .hero-trust-badge__text { font-size: 13px; padding-inline-start: 8px; }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Stats wedge: white card on split background Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.home-stats-wedge {
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #ebf5f7 50%, #ebf5f7 100%);
    padding: 0;
}
.home-stats-wedge .container { text-align: center; }
.home-stats-card {
    background: #ffffff;
    border-radius: var(--main-radius) !important;
    border: var(--main-border);
    box-shadow: var(--main-shadow);
    padding: 10px 10px;
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    width: auto;
    max-width: 100%;
    text-align: start;
}
.home-stats-card__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px;
    border-inline-end: 1px solid rgba(35, 86, 96, 0.12);
    flex-shrink: 0;
}
.home-stats-card__item:last-child { border-inline-end: 0; }
.home-stats-card__item--featured {
    background: #ebf5f7;
    border-radius: 12px;
    padding: 12px 18px;
    text-align: center;
    justify-content: center;
    border-inline-end: 0;
    margin-inline-end: 6px;
}
@media (max-width: 991.98px) {
    .home-stats-card { flex-wrap: wrap; }
    .home-stats-card__item { border-inline-end: 0; }
}
.home-stats-card__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: #235660;
    opacity: .55;
}
.home-stats-card__body { text-align: start; line-height: 1.3; }
.home-stats-card__item--featured .home-stats-card__body { text-align: center; }
.home-stats-card__label {
    font-size: 12px;
    font-weight: 400;
    color: #0a0c1c;
    line-height: 1.35;
    margin-bottom: 2px;
}
.home-stats-card__num {
    font-size: 25px;
    font-weight: 600;
    color: #1f9fb8;
}
.home-stats-card__num--lg { font-size: 28px; }
@media (max-width: 767.98px) {
    .home-stats-card {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        width: 100%;
        padding: 10px 16px;
    }
    .home-stats-card__item {
        width: 100%;
        justify-content: flex-start;
        border-inline-end: 0;
        border-bottom: 1px solid rgba(35, 86, 96, 0.10);
        padding: 10px 4px;
        margin: 0;
        text-align: start;
    }
    .home-stats-card__item--featured { justify-content: center; text-align: center; }
    .home-stats-card__item--featured .home-stats-card__body { text-align: center; }
    .home-stats-card__item:last-child { border-bottom: 0; }
    .home-stats-card__item--featured { border-bottom: 0; margin-bottom: 4px; }
}

.stories-sidebar {
    display: flex;
    flex-direction: column;
}
/* Ã™Ë†Ã˜ÂµÃ™Â Ã™â€šÃ˜Â³Ã™â€¦ Ã˜Â§Ã™â€žÃ™â€šÃ˜ÂµÃ˜Âµ */
.stories-sidebar__desc {
    font-size: 14px;
    line-height: 1.9;
}
/* Section headings */
.section-title-25 {
    font-size: 25px;
}
/* Footer-style link buttons */
.section-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #0ea7c6;
    text-decoration: none;
    transition: color .2s;
    white-space: nowrap;
}
.section-link-btn i {
    color: #0ea7c6;
    font-size: 14px;
    flex-shrink: 0;
    transition: color .2s;
}
.section-link-btn span {
    border-bottom: 1px solid #0ea7c6;
    padding-bottom: 1px;
    transition: border-color .2s;
}
.section-link-btn:hover,
.section-link-btn:hover i {
    color: #0a8aab;
    text-decoration: none;
}
.section-link-btn:hover span {
    border-color: #0a8aab;
}
/* Blog cards Ã¢â‚¬â€ equal gutters */
.blog-cards-row {
    margin-right: -8px;
    margin-left: -8px;
}
.blog-card-col {
    padding-right: var(--space-sm);
    padding-left: var(--space-sm);
    padding-bottom: var(--space-md);
}
/* Blog card Ã¢â‚¬â€ no shadow, border only */
.boxblog--new {
    transition: border-color .2s;
    border: var(--main-border);
    box-shadow: var(--main-shadow);
    border-radius: var(--main-radius) !important;
}
.boxblog--new:hover {
    border-color: #c5dde3;
}
/* Ã˜ÂµÃ™Ë†Ã˜Â±Ã˜Â© Ã˜Â§Ã™â€žÃ˜Â¨Ã˜Â·Ã˜Â§Ã™â€šÃ˜Â© Ã¢â‚¬â€ Ã˜Â§Ã˜Â±Ã˜ÂªÃ™ÂÃ˜Â§Ã˜Â¹ Ã™â€¦Ã˜Â±Ã™â€  Ã˜Â­Ã˜Â³Ã˜Â¨ Ã˜Â§Ã™â€žÃ˜ÂµÃ™Ë†Ã˜Â±Ã˜Â© */
.boxblog__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.boxblog__title {
    font-size: 16px;
    line-height: 1.5;
    text-align: right !important;
}
.boxblog__title a {
    color: #0ea7c6;
}
.boxblog__title a:hover {
    color: #0a8aab;
}
/* Ã™â€¦Ã˜Â³Ã˜Â§Ã™ÂÃ˜Â© Ã˜Â¨Ã˜Â³Ã™Å Ã˜Â·Ã˜Â© Ã˜Â¨Ã™Å Ã™â€  Ã˜Â§Ã™â€žÃ˜Â¹Ã™â€ Ã™Ë†Ã˜Â§Ã™â€  Ã™Ë†Ã˜Â§Ã™â€žÃ˜Â¨Ã™Å Ã˜Â§Ã™â€ Ã˜Â§Ã˜Âª */
.boxblog__meta {
    gap: 5px;
    direction: rtl;
    margin-top: 4px;
}
.boxblog__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    color: #888;
}
.boxblog__meta-item i {
    font-size: 11px;
    color: #0ea7c6;
}
.boxblog__meta-sep {
    width: 1px;
    height: 12px;
    background: #ccc;
    display: inline-block;
    flex-shrink: 0;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â Mobile Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
@media (max-width: 767px) {
    /* Ã˜ÂªÃ™â€šÃ™â€žÃ™Å Ã™â€ž Ã™â€¡Ã™Ë†Ã˜Â§Ã™â€¦Ã˜Â´ Ã™â€šÃ˜Â³Ã™â€¦ Ã˜Â§Ã™â€žÃ™â€šÃ˜ÂµÃ˜Âµ Ã™â€žÃ™â€žÃ™â€ Ã˜ÂµÃ™Â */
    .stories-sidebar {
        padding: 1rem !important;
    }
    /* Ã™ÂÃ˜ÂµÃ™â€ž Ã™â€¦Ã˜Â±Ã˜Â¦Ã™Å  Ã˜Â¨Ã™Å Ã™â€  Ã˜Â§Ã™â€žÃ™â€šÃ˜Â³Ã™â€¦Ã™Å Ã™â€  */
    .col-lg-3.mb-4 {
        margin-bottom: 1.5rem !important;
    }
    /* Ã˜Â§Ã™â€žÃ˜Â¨Ã˜Â·Ã˜Â§Ã™â€šÃ˜Â© Ã˜Â£Ã™ÂÃ™â€šÃ™Å Ã˜Â©: Ã˜ÂµÃ™Ë†Ã˜Â±Ã˜Â© Ã˜Â¹Ã™â€žÃ™â€° Ã˜Â§Ã™â€žÃ™Å Ã™â€¦Ã™Å Ã™â€  Ã˜ÂªÃ™â€¦Ã™â€žÃ˜Â£ Ã™Æ’Ã˜Â§Ã™â€¦Ã™â€ž Ã˜Â§Ã˜Â±Ã˜ÂªÃ™ÂÃ˜Â§Ã˜Â¹ Ã˜Â§Ã™â€žÃ˜Â¨Ã˜Â·Ã˜Â§Ã™â€šÃ˜Â© */
    .boxblog--new {
        align-items: stretch !important;
    }
    .boxblog__thu--new {
        width: 120px;
        flex-shrink: 0;
        align-self: stretch;
    }
    .boxblog__thu--new a {
        display: block;
        height: 100%;
    }
    .boxblog__thu--new .boxblog__img {
        width: 120px;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    /* Ã˜Â²Ã˜Â± "Ã˜Â¹Ã˜Â±Ã˜Â¶ Ã˜Â§Ã™â€žÃ™â€¦Ã˜Â²Ã™Å Ã˜Â¯" Ã˜Â¹Ã™â€žÃ™â€° Ã˜Â§Ã™â€žÃ™Å Ã™â€¦Ã™Å Ã™â€  */
    .text-right.mt-3.d-md-none {
        text-align: right !important;
    }
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   Ã™â€šÃ˜Â³Ã™â€¦ Ã˜Â§Ã™â€žÃ˜Â®Ã˜Â¨Ã˜Â±Ã˜Â§Ã˜Â¡ Ã˜Â§Ã™â€žÃ˜Â·Ã˜Â¨Ã™Å Ã™Å Ã™â€  Ã¢â‚¬â€ Home Experts Section
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

/* Ã¢â€â‚¬Ã¢â€â‚¬ Ã™â€¦Ã˜Â­Ã˜Â§Ã˜Â°Ã˜Â§Ã˜Â© Ã˜ÂµÃ™Â Ã˜Â§Ã™â€žÃ˜Â¹Ã™â€ Ã˜Â§Ã˜ÂµÃ˜Â± Ã™Ë†Ã˜Â§Ã™â€žÃ™Ë†Ã˜ÂµÃ™Â Ã¢â€â‚¬Ã¢â€â‚¬ */
.home-experts-row {
    align-items: flex-start;
}
.home-experts-row > [class*="col"] {
    margin-top: 0;
    padding-top: 0;
}

/* Ã™â€šÃ˜Â§Ã˜Â¦Ã™â€¦Ã˜Â© Ã˜Â§Ã™â€žÃ™â€¦Ã™â€¦Ã™Å Ã˜Â²Ã˜Â§Ã˜Âª (Ã¢Å“â€œ) */
.home-experts-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.home-experts-features__item {
    display: flex;
    align-items: baseline;
    gap: 7px;
    font-size: 13px;
    color: #555;
    margin-bottom: 9px;
    line-height: 1.6;
}
.home-experts-features__check {
    flex-shrink: 0;
    color: #28a745;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
}

/* Ã™â€ Ã˜Âµ Ã˜Â§Ã™â€žÃ™Ë†Ã˜ÂµÃ™Â Ã¢â‚¬â€ Ã™â€ Ã™ÂÃ˜Â³ Ã˜Â§Ã™â€žÃ™â€¦Ã˜Â³Ã˜ÂªÃ™Ë†Ã™â€° */
.home-experts-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.75;
    margin-top: 0;
    padding-top: 0;
}

/* Ã¢â€¢ÂÃ¢â€¢Â Ã˜Â¨Ã˜Â·Ã˜Â§Ã™â€šÃ˜Â© Ã˜Â§Ã™â€žÃ˜Â·Ã˜Â¨Ã™Å Ã˜Â¨ Ã¢â€¢ÂÃ¢â€¢Â
   Ã˜Â§Ã™â€žÃ˜ÂµÃ™Ë†Ã˜Â±Ã˜Â© Ã˜Â¯Ã˜Â§Ã˜Â®Ã™â€ž Ã˜Â§Ã™â€žÃ˜Â¨Ã˜Â·Ã˜Â§Ã™â€šÃ˜Â©Ã˜Å’ Ã™â€¦Ã˜Â­Ã˜Â§Ã˜Â°Ã™Å Ã˜Â© Ã™â€¦Ã™â€  Ã˜Â§Ã™â€žÃ˜Â£Ã˜Â³Ã™ÂÃ™â€žÃ˜Å’ Ã˜ÂªÃ˜Â¨Ã˜Â±Ã˜Â² Ã™â€¦Ã™â€  Ã˜Â§Ã™â€žÃ˜Â£Ã˜Â¹Ã™â€žÃ™â€° Ã™ÂÃ™â€šÃ˜Â·.
   Ã˜Â§Ã™â€žÃ™â€¦Ã˜Â³Ã˜ÂªÃ˜Â·Ã™Å Ã™â€ž Ã™Å Ã˜Â¸Ã™â€¡Ã˜Â± Ã™Å Ã™â€¦Ã™Å Ã™â€  Ã˜Â§Ã™â€žÃ˜ÂµÃ™Ë†Ã˜Â±Ã˜Â© (right: 14px Ã™â€¦Ã™â€  Ã˜Â­Ã˜Â§Ã™ÂÃ˜Â© Ã˜Â§Ã™â€žÃ˜Â¨Ã˜Â·Ã˜Â§Ã™â€šÃ˜Â©).
   Ã˜Â§Ã™â€žÃ˜Â¨Ã˜Â·Ã˜Â§Ã™â€šÃ˜Â© Ã˜ÂªÃ˜Â£Ã˜Â®Ã˜Â° margin-top = Ã™â€šÃ˜Â¯Ã˜Â± Ã˜Â§Ã™â€žÃ˜Â¨Ã˜Â±Ã™Ë†Ã˜Â² Ã˜Â§Ã™â€žÃ˜Â¹Ã™â€žÃ™Ë†Ã™Å  Ã™â€žÃ™â€žÃ˜ÂµÃ™Ë†Ã˜Â±Ã˜Â©. */

.home-expert-wrap {
    display: block;
    text-decoration: none !important;
    color: inherit;
    transition: transform .2s ease;
}
.home-expert-wrap:hover { transform: translateY(-2px); color: inherit; text-decoration: none; }

.home-expert-card {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    /* right: 15px (Ã™â€¦Ã˜Â³Ã˜ÂªÃ˜Â·Ã™Å Ã™â€ž Ã˜Â¸Ã˜Â§Ã™â€¡Ã˜Â± Ã™Å Ã™â€¦Ã™Å Ã™â€  Ã˜Â§Ã™â€žÃ˜ÂµÃ™Ë†Ã˜Â±Ã˜Â©) + 82px (Ã˜ÂµÃ™Ë†Ã˜Â±Ã˜Â©) + 10px (Ã™ÂÃ˜Â±Ã˜Â§Ã˜Âº) = 107px */
    padding: 10px 107px 10px 22px;
    min-height: 62px;
    box-shadow: 0 2px 10px rgba(14, 167, 198, .10);
    overflow: visible;
}

.home-expert-card__text {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.home-expert-card__name {
    font-size: 14px;
    font-weight: 700;
    color: #235660;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.home-expert-card__position {
    font-size: 12px;
    color: #6c757d;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 2px 0 0;
}

/* Ã˜Â§Ã™â€žÃ˜ÂµÃ™Ë†Ã˜Â±Ã˜Â©: Ã˜Â¯Ã˜Â§Ã˜Â®Ã™â€ž Ã˜Â§Ã™â€žÃ˜Â¨Ã˜Â·Ã˜Â§Ã™â€šÃ˜Â© Ã™â€¦Ã™â€  Ã˜Â§Ã™â€žÃ™Å Ã™â€¦Ã™Å Ã™â€ Ã˜Å’ Ã™â€¦Ã˜ÂªÃ™Ë†Ã˜Â³Ã˜Â·Ã˜Â© Ã˜Â¹Ã™â€¦Ã™Ë†Ã˜Â¯Ã™Å Ã˜Â§Ã™â€¹Ã˜Å’ Ã˜Â§Ã™â€žÃ™â€¦Ã˜Â³Ã˜ÂªÃ˜Â·Ã™Å Ã™â€ž Ã™Å Ã˜Â¸Ã™â€¡Ã˜Â± 15px Ã™Å Ã™â€¦Ã™Å Ã™â€ Ã™â€¡Ã˜Â§ */
.home-expert-img-wrap {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 82px;
    height: 82px;
    border-radius: 50%;
    overflow: hidden;
    /* Ã˜ÂªÃ˜Â­Ã˜Â³Ã™Å Ã™â€  Ã˜Â­Ã˜Â¯Ã˜Â© Ã˜Â§Ã™â€žÃ˜Â­Ã™Ë†Ã˜Â§Ã™Â Ã˜Â¹Ã˜Â¨Ã˜Â± GPU */
    -webkit-transform: translateY(-50%) translateZ(0);
    transform: translateY(-50%) translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.home-expert-img {
    width: 82px;
    height: 82px;
    object-fit: cover;
    display: block;
    /* Ã˜Â¨Ã˜Â¯Ã™Ë†Ã™â€  border-radius Ã˜Â¹Ã™â€žÃ™â€° Ã˜Â§Ã™â€žÃ˜ÂµÃ™Ë†Ã˜Â±Ã˜Â© Ã¢â‚¬â€ Ã˜Â§Ã™â€žÃ™â‚¬ wrapper Ã™Å Ã˜ÂªÃ™Ë†Ã™â€žÃ™â€° Ã˜Â§Ã™â€žÃ™â€šÃ˜Â·Ã˜Â¹ */
}

@media (max-width: 767px) {
    .home-expert-card {
        /* 12px (visible right) + 70px (image) + 10px (gap) = 92px */
        padding: 9px 92px 9px 16px;
        min-height: 56px;
        border-radius: 40px;
    }
    .home-expert-img-wrap       { right: 12px; -webkit-transform: translateY(-50%) translateZ(0); transform: translateY(-50%) translateZ(0); bottom: auto; width: 70px; height: 70px; border-radius: 50%; overflow: hidden; }
    .home-expert-img            { width: 70px; height: 70px; border-radius: 0; }
    .home-expert-card__name     { font-size: 13px; }
    .home-expert-card__position { font-size: 11px; }
}


/* ==============================
   Ù‚Ø³Ù… Ø§Ù„Ø¨Ø±Ø§Ù…Ø¬ Ø§Ù„Ø¹Ù„Ø§Ø¬ÙŠØ© - Ø¨Ø·Ø§Ù‚Ø§Øª
   ============================== */

/* Ã™â€¦Ã˜Â³Ã˜Â§Ã™ÂÃ˜Â§Ã˜Âª Ã™â€¦Ã˜ÂªÃ˜Â³Ã˜Â§Ã™Ë†Ã™Å Ã˜Â© Ã˜Â¨Ã™Å Ã™â€  Ã˜Â§Ã™â€žÃ˜Â¨Ã˜Â·Ã˜Â§Ã™â€šÃ˜Â§Ã˜Âª */
.home-programs-grid {
    margin-right: -8px;
    margin-left: -8px;
}
.home-programs-grid > [class*="col"] {
    padding-right: 8px;
    padding-left: 8px;
    margin-bottom: 16px;
}

/* Ã˜Â§Ã™â€žÃ˜Â¨Ã˜Â·Ã˜Â§Ã™â€šÃ˜Â© */
.prog-card {
    display: block;
    border-radius: var(--main-radius) !important;
    overflow: hidden;
    color: inherit;
    text-decoration: none !important;
    border: var(--main-border);
    box-shadow: var(--main-shadow);
}
.prog-card__inner {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #111;
}
.prog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .35s ease;
}
.prog-card:hover .prog-card__img {
    transform: scale(1.05);
}

/* overlay Ã˜Â´Ã˜Â±Ã™Å Ã˜Â· Ã˜Â³Ã™ÂÃ™â€žÃ™Å  Ã˜Â¨Ã˜Â¹Ã˜Â±Ã˜Â¶ Ã™Æ’Ã˜Â§Ã™â€¦Ã™â€ž Ã˜Â§Ã™â€žÃ˜Â¨Ã˜Â·Ã˜Â§Ã™â€šÃ˜Â© */
.prog-card__overlay {
    position: absolute;
    bottom: 14px;
    right: 0;
    left: 0;
    padding: 10px 14px;
    background: rgba(35, 86, 96, 0.88);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    direction: rtl;
}
.prog-card__name {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 5px;
    text-align: right;
}
.prog-card__reviewer {
    color: rgba(255, 255, 255, .88);
    font-size: 11px;
    margin: 0;
    text-align: right;
    direction: rtl;
}
.prog-card__reviewer i {
    font-size: 11px;
    opacity: .8;
    margin-left: 4px;
}

/* Ã™â€¦Ã™Ë†Ã˜Â¨Ã˜Â§Ã™Å Ã™â€ž: Ã˜Â¨Ã˜Â·Ã˜Â§Ã™â€šÃ˜Â© Ã™Ë†Ã˜Â§Ã˜Â­Ã˜Â¯Ã˜Â© Ã˜Â¨Ã˜Â§Ã™â€žÃ˜ÂµÃ™ÂÃ˜Å’ Ã˜Â§Ã˜Â±Ã˜ÂªÃ™ÂÃ˜Â§Ã˜Â¹ Ã˜Â£Ã™â€šÃ™â€ž Ã™â€šÃ™â€žÃ™Å Ã™â€žÃ˜Â§Ã™â€¹ */
@media (max-width: 767.98px) {
    .prog-card__inner {
        aspect-ratio: 16 / 7;
    }
}



/* â”€â”€ Archive Redesign â”€â”€ */
.archive-hero-section {
    box-shadow: inset 0 0 100px rgba(0,0,0,0.1);
}
.home-post-card {
    transition: all 0.3s ease;
    border: var(--main-border);
    border-radius: var(--main-radius) !important;
    box-shadow: var(--main-shadow);
    overflow: hidden;
}
.home-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}
.home-post-card__title a {
    transition: color 0.2s;
}
.home-post-card__title a:hover {
    color: #42d3f2 !important;
}
.home-post-card__meta .meta-sep {
    color: #ddd;
}

.hospital-breadcrumb {
    text-align: right;
    margin-bottom: 15px;
}
.hospital-breadcrumb p {
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    justify-content: flex-start;
    direction: rtl;
}
.hospital-breadcrumb .bc-home {
    color: #1a8ba2 !important;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
}
.hospital-breadcrumb a:not(.bc-home) {
    color: #2d3436 !important;
    text-decoration: none;
    font-size: 13px;
}
.hospital-breadcrumb .bc-sep {
    color: #b2bec3;
    margin: 0 7px;
    font-size: 12px;
}

/* â”€â”€ Custom Breadcrumb â”€â”€ */
.hospital-breadcrumb {
    text-align: right;
    margin-bottom: 15px;
}
.hospital-breadcrumb p {
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    justify-content: flex-start;
    direction: rtl;
}
.hospital-breadcrumb .bc-home {
    color: #1a8ba2 !important;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
}
.hospital-breadcrumb a:not(.bc-home) {
    color: #2d3436 !important;
    text-decoration: none;
    font-size: 13px;
}
.hospital-breadcrumb .bc-sep {
    color: #b2bec3;
    margin: 0 7px;
    font-size: 12px;
}

/* �