/* ===========================================
   PROMO SECTION
   =========================================== */
.promo { background: var(--bg-soft); }
.promo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.promo__left {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.promo__doc-wrap { position: relative; flex-shrink: 0; }
.promo__doc-img {
  width: 230px;
  height: 330px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.promo__doc-tag {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--teal);
  color: #fff;
  padding: 13px 14px;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  font-size: 14.5px;
  font-weight: 600;
  text-align: center;
  line-height: 1.45;
}
.promo__cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  flex: 1;
}
.promo__card-img-wrap {
  background: #fff;
  border-radius: var(--r-md);
  padding: 10px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
}
.promo__card-img-wrap img {
  width: 100%;
  border-radius: var(--r-sm);
}
.promo__right h2 {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 900;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 30px;
}

/* ===========================================
   TRUSTED / CASE MANAGER / TRACK
   =========================================== */
.trusted__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: start;
}
.trusted__intro h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 900;
  color: #000000;
  line-height: 1.22;
  margin-bottom: 14px;
}
.trusted__intro p {
  font-size: 20px;
  color: #000000;
  line-height: 1.72;
  margin-bottom: 24px;
}
.case-card {
  background: var(--teal);
  border-radius: var(--r-lg);
  padding: 24px;
  color: #fff;
}
.case-card__title {
  font-size: 23px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
}
.case-card__sub {
  font-size: 20.5px;
  opacity: .9;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 18px;
}
.case-card__img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: var(--r-md);
}
.track-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.track-card__title {
  font-size: 19px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 6px;
}
.track-card__sub {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
}
.track-steps {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4px;
}
.track-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.track-step__icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.track-step__bar {
  width: 26px;
  border-radius: 4px 4px 0 0;
}
.track-step__label {
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
  font-weight: 600;
  line-height: 1.3;
}
.track-arrow {
  color: #000000;
  font-size: 19px;
  margin-bottom: 42px;
  flex-shrink: 0;
}

/* ===========================================
   STATS
   =========================================== */
.stats {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
}
.stat-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.stat-card__icon {
  width: 54px; height: 54px;
  background: var(--teal-light);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  color: var(--teal);
}
/* Rotate accent colors per card so the row reads as three distinct
   stats rather than one repeated template. */
.stat-card:nth-child(2) .stat-card__icon { background: var(--green-light); color: var(--green-dark); }
.stat-card:nth-child(2) { border-color: rgba(111,185,143,.25); }
.stat-card:nth-child(3) .stat-card__icon { background: #fdf1e8; color: var(--orange-dark); }
.stat-card:nth-child(3) { border-color: rgba(240,151,94,.25); }
.stat-card__icon img {
  width: 34px; height: 34px;
  object-fit: contain;
}
.stat-card__icon svg { width: 28px; height: 28px; }
.stat-card__num {
  font-size: 28px;
  font-weight: 900;
  color: #000000;
  line-height: 1;
}
.stat-card__label {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===========================================
   PODCASTS
   =========================================== */
.podcasts { background: linear-gradient(180deg, #f4f9fd 0%, #fff 100%); }

/* Intro block — badge, title, sub */
.podcasts__intro {
  text-align: left;
  max-width: 720px;
  margin: 0 0 32px;
}

.podcasts__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 5px 14px;
  font-size: 20px;
  font-weight: 700;
  color: var(--teal);
  margin: 0 0 16px;
  position: static;
  left: auto;
  transform: none;
}

.podcasts__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
}

.podcasts__intro .sec-title {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.podcasts__intro .sec-sub {
  text-align: justify;
  text-justify: inter-word;
  margin-left: 0;
  margin-right: 0;
  max-width: 640px;
  line-height: 1.7;
}


/* Patient-journey infographic — sits below the intro text, above the cards */
.podcasts__journey {
  margin: 0 0 40px;
}

.podcasts__journey-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}


/* Podcast cards */
.podcasts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.pod-card {
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform var(--t), box-shadow var(--t);
}
.pod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pod-card__thumb { position: relative; overflow: hidden; }
.pod-card__thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .3s;
}
.pod-card:hover .pod-card__thumb img { transform: scale(1.04); }
.pod-card__duration {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(0,0,0,.72);
  color: #fff;
  font-size: 14px; font-weight: 700;
  padding: 3px 9px;
  border-radius: 5px;
}
.pod-card__play {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--t);
}
.pod-card:hover .pod-card__play { opacity: 1; }
.pod-card__play-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  color: var(--teal);
  box-shadow: var(--shadow-sm);
}
.pod-card__body { padding: 16px; }
.pod-card__tags { display: flex; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.pod-tag {
  font-size: 13px; font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid #ddd;
  color: #000000;
}
.pod-tag--onco   { border-color: #d85454; color: #d85454; }
.pod-tag--ortho  { border-color: #2f6fcc; color: #2f6fcc; }
.pod-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  line-height: 1.45;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pod-card__icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--teal-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pod-card__icon svg { width: 14px; height: 14px; }
.pod-card__text {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 8px;
}
.podcasts__cta { text-align: center; margin-top: 36px; }
.podcasts__cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  padding: 13px 34px;
  border-radius: var(--r-xl);
  font-size: 16.5px;
  font-weight: 700;
  transition: background var(--t);
}
.podcasts__cta a:hover { background: var(--teal-dark); }

@media (max-width: 860px) {
  .podcasts__intro { max-width: 100%; }
  .podcasts__intro .sec-sub { max-width: 100%; }
}

/* ===========================================
   PACKAGES
   =========================================== */
.packages { background: #fff; }
.packages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.pkg-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  overflow: hidden;
  scroll-margin-top: 90px;
  transition: transform var(--t), box-shadow var(--t);
  cursor: pointer;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pkg-card:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
.pkg-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.pkg-card__category {
  background: var(--teal);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 4px 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.5;
}
.pkg-card__body { padding: 14px; }
.pkg-card__title {
  font-size: 15.5px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 3px;
  line-height: 1.4;
}
.pkg-card__hospital {
  font-size: 14px;
  color: #000000;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.pkg-card__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.pkg-card__meta span {
  font-size: 13.5px;
  color: #000000;
  display: flex; align-items: center; gap: 3px;
}
.pkg-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}
.pkg-card__from   { font-size: 13px; color: #000000; }
.pkg-card__price  { font-size: 20px; font-weight: 900; color: var(--teal); }
.pkg-card__btn {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 8px 13px;
  border-radius: var(--r-xl);
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  transition: background var(--t);
}
.pkg-card__btn:hover { background: var(--teal-dark); }

/* Carousel controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}
.carousel-arrow {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  cursor: pointer;
  color: #000000;
  transition: all var(--t);
}
.carousel-arrow:hover { border-color: var(--teal); color: var(--teal); }
.carousel-dots { display: flex; gap: 6px; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background var(--t);
  border: none;
}
.carousel-dot.is-active { background: var(--teal); }
.packages__cta { text-align: center; margin-top: 32px; }

/* ===========================================
   DOCTORS
   =========================================== */
.doctors { background: var(--bg-soft); }
.doctors__filters {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.doctors__filter {
  padding: 10px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 15.5px;
  color: #000000;
  background: #fff;
  cursor: pointer;
  min-width: 170px;
  transition: border-color var(--t);
}
.doctors__filter:focus { border-color: var(--teal); }
.doctors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.doc-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 22px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.doc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-mid); }
.doc-card__top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
  flex: 1;
}
.doc-card__avatar {
  width: 58px; height: 58px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--green-light) 100%);
  color: var(--teal);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--border-light);
}
.doc-card__avatar svg { width: 28px; height: 28px; }
.doc-card__name   { font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 2px; font-family: 'Plus Jakarta Sans','Inter',sans-serif; }
.doc-card__spec   { font-size: 14.5px; color: var(--teal); font-weight: 700; text-transform: uppercase; letter-spacing: .3px; margin-bottom: 5px; }
.doc-card__designation { font-size: 14.5px; color: var(--text-muted); line-height: 1.5; margin-bottom: 7px; }
.doc-card__meta   { font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; margin-top: 2px; }
.doc-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: var(--r-xl);
  font-size: 15px;
  font-weight: 700;
  transition: background var(--t);
}
.doc-card__btn:hover { background: var(--teal-dark); }
.doc-card__btn .ic svg { width: 12px; height: 12px; }
.doctors__cta { text-align: center; margin-top: 30px; }

/* ===========================================
   AWARDS
   =========================================== */
.awards { background: #fff; overflow: hidden; }
.awards__track-wrap {
  margin-top: 36px;
  overflow: hidden;
  position: relative;
}
.awards__track-wrap::before,
.awards__track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.awards__track-wrap::before { left: 0;  background: linear-gradient(to right, #fff, transparent); }
.awards__track-wrap::after  { right: 0; background: linear-gradient(to left,  #fff, transparent); }
.awards__track {
  display: flex;
  gap: 18px;
  animation: scrollAwards 30s linear infinite;
  width: max-content;
}
.awards__track:hover,
.awards__track.is-paused { animation-play-state: paused; }
@keyframes scrollAwards {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.award-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 14px;
  width: 170px;
  flex-shrink: 0;
  text-align: center;
  box-shadow: var(--shadow-xs);
}
.award-card img {
  width: 100%;
  height: 110px;
  object-fit: contain;
}

/* ===========================================
   HOSPITAL IMAGE CAROUSEL (running strip, below Hero)
   =========================================== */
.hosp-carousel { background: #fff; overflow: hidden; padding-top: 48px; padding-bottom: 48px; }
.hosp-carousel__track-wrap {
  margin-top: 30px;
  overflow: hidden;
  position: relative;
}
.hosp-carousel__track-wrap::before,
.hosp-carousel__track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.hosp-carousel__track-wrap::before { left: 0;  background: linear-gradient(to right, #fff, transparent); }
.hosp-carousel__track-wrap::after  { right: 0; background: linear-gradient(to left,  #fff, transparent); }
.hosp-carousel__track {
  display: flex;
  gap: 20px;
  animation: scrollHospCarousel 36s linear infinite;
  width: max-content;
}
.hosp-carousel__track:hover { animation-play-state: paused; }
@keyframes scrollHospCarousel {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.hosp-carousel__card {
  position: relative;
  display: block;
  width: 280px;
  height: 190px;
  flex-shrink: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}
.hosp-carousel__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t);
}
.hosp-carousel__card:hover img { transform: scale(1.06); }
.hosp-carousel__label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 14px 9px;
  background: linear-gradient(to top, rgba(0,0,0,.72), transparent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

/* Desktop fade effect */
.hosp-carousel__track-wrap::before,
.hosp-carousel__track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.hosp-carousel__track-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.hosp-carousel__track-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}


/* Mobile - remove fade/blur effect */
@media (max-width: 700px) {
  .hosp-carousel__track-wrap::before,
  .hosp-carousel__track-wrap::after {
    display: none;
  }
}

/* ===========================================
   REVIEWS
   =========================================== */
.reviews { background: var(--bg-soft); }
.reviews__google-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}
.g-logo {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}
.g-b { color: #4285F4; }
.g-r { color: #EA4335; }
.g-y { color: #FBBC04; }
.g-g { color: #34A853; }
.reviews__stars { color: #f4b942; font-size: 18px; letter-spacing: 1px; }
.reviews__count { font-size: 15.5px; color: #000000; font-weight: 600; }
.reviews__link  { font-size: 15.5px; color: var(--teal); font-weight: 700; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.rev-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t), transform var(--t);
}
.rev-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.rev-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.rev-card__stars { color: #f4b942; font-size: 14.5px; }
.rev-card__check { color: var(--teal); font-size: 14px; font-weight: 700; }
.rev-card__g     { font-size: 17px; font-weight: 900; color: #4285F4; }
.rev-card__text  {
  font-size: 14.5px; color: #000000; line-height: 1.65; margin-bottom: 8px;
  max-height: 4.95em; /* ~3 lines at 1.65 line-height */
  overflow: hidden;
  transition: max-height .35s ease;
}
.rev-card__text.is-expanded { max-height: 40em; }
.rev-card__more  { font-size: 14.5px; color: var(--teal); font-weight: 700; cursor: pointer; }
.rev-card__foot  {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #eee;
  padding-top: 12px;
  margin-top: 12px;
}
.rev-card__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15.5px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.rev-card__name { font-size: 15px; font-weight: 700; color: #000000; }
.rev-card__date { font-size: 14px; color: #000000; }
.rev-card__gi   { margin-left: auto; }

/* ===========================================
   FAQ
   =========================================== */
   
.faq { background: #fff; }
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.faq__title {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  color: #000000;
  margin-bottom: 24px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 18px;
  font-size: 15.5px;
  font-weight: 700;
  color: #000000;
  cursor: pointer;
  background: #fff;
  transition: background var(--t);
  gap: 12px;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-item__q:hover { background: var(--teal-light); }
.faq-item.is-open .faq-item__q { background: var(--teal-light); color: var(--teal); }
.faq-item__chevron {
  font-size: 15.5px;
  flex-shrink: 0;
  color: #000000;
  transition: transform var(--t);
}
.faq-item.is-open .faq-item__chevron { transform: rotate(180deg); color: var(--teal); }
.faq-item__a {
  display: none;
  padding: 14px 18px;
  font-size: 15px;
  color: #000000;
  line-height: 1.75;
  background: var(--bg-lighter);
  border-top: 1px solid var(--border);
}
.faq-item.is-open .faq-item__a { display: block; }


.faq__video-title {
  font-size: 22px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 20px;
}

.faq__video-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(18, 52, 91, 0.12);
}

.faq__video-box img {
  width: 100%;
  display: block;
}
.faq__video-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.faq__video-link img {
  width: 100%;
  display: block;
}

/* ===========================================
   FAQ VIDEO
   =========================================== */
/* ===========================================
   FAQ SECTION
   =========================================== */

.faq {
  background: #fff;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}

/* Left FAQ column */
.faq__grid > div:first-child {
  display: flex;
  flex-direction: column;
}

.faq__title {
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 800;
  color: #000;
  margin-bottom: 24px;
}

/* FAQ items */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 18px;
  font-size: 15.5px;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  background: #fff;
  transition: background var(--t);
  gap: 12px;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-item__q:hover {
  background: var(--teal-light);
}

.faq-item.is-open .faq-item__q {
  background: var(--teal-light);
  color: var(--teal);
}

.faq-item__chevron {
  font-size: 15.5px;
  flex-shrink: 0;
  color: #000;
  transition: transform var(--t);
}

.faq-item.is-open .faq-item__chevron {
  transform: rotate(180deg);
  color: var(--teal);
}

.faq-item__a {
  display: none;
  padding: 14px 18px;
  font-size: 15px;
  color: #000;
  line-height: 1.75;
  background: var(--bg-lighter);
  border-top: 1px solid var(--border);
}

.faq-item.is-open .faq-item__a {
  display: block;
}


/* ===========================================
   FAQ VIDEO
   =========================================== */

.faq__video-link {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 500px;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(18, 52, 91, 0.12);
  background: #f4f7f9;
}

.faq__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}


/* ===========================================
   RESPONSIVE
   =========================================== */

@media (max-width: 900px) {

  .faq__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq__video-link {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 480px) {

  .faq__title {
    font-size: 24px;
  }

  .faq__video-link {
    border-radius: 12px;
  }
}
/* ===========================================
   FOOTER FORM
   =========================================== */
.footer-form { background: var(--teal); padding: 64px 0; }
.footer-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.footer-form__heading {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.footer-form__sub {
  font-size: 15.5px;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
}
.footer-form__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.footer-stat .n {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
}
.footer-stat .l {
  font-size: 13.5px;
  color: rgba(255,255,255,.72);
  line-height: 1.3;
}

/* Redesigned footer form — white card on the teal background for
   contrast, grouped rows, inline labels + validation states. */
.footer-form__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-lg);
  padding: 26px 24px;
}
.footer-form__field { margin-bottom: 15px; }
.footer-form__field label {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin-bottom: 6px;
}
.footer-form__optional { font-weight: 400; color: rgba(255,255,255,.55); }
.footer-form__field input,
.footer-form__field select,
.footer-form__field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(255,255,255,.28);
  border-radius: var(--r-md);
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 15.5px;
  transition: border-color var(--t), background var(--t);
}
.footer-form__field input::placeholder,
.footer-form__field textarea::placeholder { color: rgba(255,255,255,.55); }
.footer-form__field input:focus,
.footer-form__field select:focus { border-color: rgba(255,255,255,.7); outline: none; }
.footer-form__field select { cursor: pointer; }
.footer-form__field select option { color: #000000; background: #fff; }
.footer-form__field textarea { resize: vertical; min-height: 90px; }

.footer-form__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.footer-form__phone {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 8px;
}
.footer-form__phone select { padding-left: 8px; padding-right: 4px; font-size: 14.5px; }

/* Validation states */
.footer-form__error {
  display: none;
  font-size: 13.5px;
  color: #ffd4c4;
  margin-top: 5px;
}
.footer-form__field.is-invalid input,
.footer-form__field.is-invalid select {
  border-color: #ff9d7a;
  background: rgba(255,120,80,.12);
}
.footer-form__field.is-invalid .footer-form__error { display: block; }

.footer-form__submit {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: var(--r-xl);
  font-size: 16.5px;
  font-weight: 800;
  cursor: pointer;
  transition: background var(--t);
}
.footer-form__submit:hover { background: var(--orange-dark); }
.footer-form__conf {
  font-size: 14px;
  color: rgba(255,255,255,.68);
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ===========================================
   FOOTER
   =========================================== */
.site-footer { background: #08203a; padding: 60px 0 0; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.site-footer__brand .brand-name {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
}
.site-footer__brand .brand-name .teal   { color: var(--teal); }
.site-footer__brand .brand-name .orange { color: var(--orange); }
.site-footer__brand .brand-sub {
  font-size: 12.5px;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
  display: block;
  letter-spacing: .3px;
}
.site-footer__brand p {
  font-size: 14.5px;
  color: rgba(255,255,255,.62);
  line-height: 1.75;
  max-width: 320px;
}
.site-footer__brand .razorpay {
  margin-top: 16px;
  height: 28px;
  opacity: .75;
}
.site-footer__col h4 {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.site-footer__col a {
  display: block;
  font-size: 14.5px;
  color: rgba(255,255,255,.6);
  margin-bottom: 11px;
  transition: color var(--t), transform var(--t);
}
.site-footer__col a:hover { color: #fff; transform: translateX(2px); }
.site-footer__sep { border: none; border-top: 1px solid rgba(255,255,255,.1); }
.site-footer__bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.site-footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
.site-footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  transition: color var(--t);
}
.site-footer__links a:hover { color: #fff; }
.site-footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,.42);
  text-align: center;
  order: 3;
  width: 100%;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  justify-content: center;
}
.site-footer__social { display: flex; gap: 10px; }
.site-footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 14.5px;
  font-weight: 800;
  transition: all var(--t);
}
.site-footer__social a:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }

/* ===========================================
   WHATSAPP FLOAT
   =========================================== */
.wa-float {
  position: fixed;
  bottom: max(24px, env(safe-area-inset-bottom) + 16px);
  right: max(24px, env(safe-area-inset-right) + 16px);
  z-index: 9999;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.5);
  transition: transform var(--t);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* The FAB is fixed to the viewport, so once the user scrolls to the very
   bottom of the page it sits directly over whatever is in the footer's
   bottom-right corner. Reserve a clear lane the same width as the button
   (54px + margin) so the social icons/copyright row never sit under it. */
.site-footer__bottom { padding-right: 84px; }
@media (max-width: 900px) {
  /* .site-footer__bottom already stacks and centers below this width,
     so the reserved lane is no longer needed. */
  .site-footer__bottom { padding-right: 0; }
}

/* ===========================================
   WHATSAPP QR POPUP
   Shown on desktop/PC clicks of any .wa-qr-trigger
   element (floating icon, popup form QR, hero form QR).
   =========================================== */
.wa-qr-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 9500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity .2s ease;
}
.wa-qr-overlay.is-open {
  display: flex;
  opacity: 1;
}
.wa-qr-modal {
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 320px;
  padding: 28px 24px 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  animation: slideUp .25s ease;
}
.wa-qr-close {
  position: absolute;
  top: 10px; right: 10px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #eee;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #000000;
  transition: background .2s, color .2s;
}
.wa-qr-close svg { width: 14px; height: 14px; }
.wa-qr-close:hover { background: #333; color: #fff; }
.wa-qr-modal__icon {
  width: 50px; height: 50px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.wa-qr-modal__icon svg { width: 26px; height: 26px; fill: #fff; }
.wa-qr-modal h3 {
  font-size: 18px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 8px;
}
.wa-qr-modal p {
  font-size: 14.5px;
  color: #000000;
  line-height: 1.55;
  margin-bottom: 18px;
  text-align: center;
}
.wa-qr-modal__img-wrap {
  width: 190px;
  height: 190px;
  margin: 0 auto 16px;
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.wa-qr-modal__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.wa-qr-modal__fallback {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border-radius: 8px;
  font-size: 14.5px;
  color: var(--text-muted);
  text-align: center;
  padding: 10px;
}
.wa-qr-modal__link {
  display: inline-block;
  font-size: 14.5px;
  font-weight: 700;
  color: #25d366;
}
.wa-qr-modal__link:hover { text-decoration: underline; }

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1100px) {
  .packages__grid     { grid-template-columns: repeat(2, 1fr); }
  .doctors__grid      { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid      { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid  { grid-template-columns: repeat(4, 1fr); }
  .trusted__grid      { grid-template-columns: 1fr; }
  .trusted__intro     { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .promo__grid         { grid-template-columns: 1fr; }
  .stats__grid         { grid-template-columns: 1fr; }
  .podcasts__grid      { grid-template-columns: repeat(2, 1fr); }
  .faq__grid           { grid-template-columns: 1fr; }
  .footer-form__grid      { grid-template-columns: 1fr; }
  .footer-form__stats     { grid-template-columns: repeat(2, 1fr); }
  .footer-form__field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-form__phone     { grid-template-columns: 92px 1fr; }
}
@media (max-width: 768px) {
  .section             { padding: 44px 0; }
  .packages__grid      { grid-template-columns: 1fr; }
  .doctors__grid       { grid-template-columns: 1fr; }
  .reviews__grid       { grid-template-columns: 1fr; }
  .podcasts__grid      { grid-template-columns: 1fr; }
  .site-footer__grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .site-footer__grid   { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; text-align: center; }
}


/* ===========================================
   PROMO SECTION — FIXED (matches image 2)
   =========================================== */
.promo { background: var(--bg-soft); }
.promo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.promo__left-col { position: relative; }
.promo__doctor-block {
  position: relative;
  display: inline-block;
}
.promo__doctor-img {
  width: 100%;
  max-width: 420px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.12));
}
.promo__teal-tag {
  position: absolute;
  top: 38%;
  left: 44%;
  background: var(--teal);
  color: #fff;
  padding: 18px 22px;
  border-radius: var(--r-md);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.55;
  max-width: 230px;
  box-shadow: var(--shadow-md);
}
.promo__right-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.promo__cards-stack {
  position: relative;
  width: 100%;
  max-width: 380px;
}
.promo__stack-card {
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 14px 16px;
  border: 1px solid var(--border-light);
  width: 100%;
}
.promo__stack-card--back {
  position: absolute;
  top: 20px;
  right: -20px;
  opacity: .65;
  transform: rotate(2deg);
  z-index: 1;
}
.promo__stack-card--front {
  position: relative;
  z-index: 2;
}
.promo__stack-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}
.promo__card-icon { display: inline-flex; color: var(--teal); }
.promo__card-icon svg { width: 18px; height: 18px; }
.promo__card-title { font-size: 15.5px; font-weight: 700; color: #000000; }
.promo__hotel-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}
.promo__hotel-item:last-child { border-bottom: none; }
.promo__hotel-item img {
  width: 80px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}
.promo__hotel-info { flex: 1; }
.promo__hotel-name { font-size: 14.5px; font-weight: 700; color: #000000; margin-bottom: 2px; }
.promo__hotel-stars { font-size: 13px; color: #f4b942; margin-bottom: 4px; }
.promo__hotel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.promo__old-price {
  font-size: 14.5px;
  color: #000000;
  text-decoration: line-through;
}
.promo__book-btn {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.promo__book-btn:hover { background: var(--teal-dark); }

/* .nav-item / .nav-dropdown styles live in navbar.css (loaded on every page) — removed duplicate copy here */

@media (max-width: 900px) {
  .promo__grid { grid-template-columns: 1fr; }
  .promo__right-col { min-height: 300px; }
  .promo__teal-tag { max-width: 190px; font-size: 14.5px; }
}


/* ===========================================
   ABOUT US / MISSION / VISION / WHY CHOOSE US
   =========================================== */

.about-us {
  background: #fff;
}

.about-us__intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.about-us__logo {
  height: 56px;
  width: auto;
  margin: 0 auto 18px;
  object-fit: contain;
}

/* Updated for only Mission & Vision */
.about-us__pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 450px));
  justify-content: center;
  gap: 30px;
  margin-bottom: 56px;
}

.about-pillar-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
}

.about-pillar-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin: 0 auto 16px;
}
.about-pillar-card__icon svg { width: 26px; height: 26px; }

.about-pillar-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 10px;
}

.about-pillar-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.about-us__why {
  margin-top: 8px;
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why-us-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
}

.why-us-card__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.why-us-card__icon svg { width: 20px; height: 20px; }

.why-us-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 4px;
}

.why-us-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 860px) {
  .about-us__pillars {
    grid-template-columns: 1fr;
  }

  .why-us__grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================================
   FOOTER — BALANCED CONTENT STRUCTURE
=========================================== */

.site-footer {
    background: #08203a;
    padding: 52px 0 0;
    color: #fff;
}

/* Main footer */
.site-footer__grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1.15fr 1fr;
    gap: 50px;

    margin-bottom: 40px;
    align-items: start;
}

/* ===========================================
   BRAND / CONTACT COLUMN
=========================================== */

.site-footer__brand {
    padding-right: 15px;
}

.site-footer__brand .brand-name {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 4px;
}

.site-footer__brand .brand-name .teal {
    color: var(--teal);
}

.site-footer__brand .brand-name .orange {
    color: var(--orange);
}

.site-footer__brand .brand-sub {
    display: block;

    font-size: 12px;
    color: rgba(255,255,255,.5);

    margin-bottom: 20px;

    letter-spacing: .4px;
}

/* Contact details */
.site-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.site-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;

    font-size: 14.5px;
    color: rgba(255,255,255,.72);

    line-height: 1.5;
}

.site-footer__contact-item svg {
    width: 17px;
    height: 17px;

    flex-shrink: 0;

    color: #2daeea;
    fill: none;
    stroke: currentColor;

    margin-top: 2px;
}

.site-footer__contact-item a {
    color: rgba(255,255,255,.72);
    text-decoration: none;

    transition: color .2s ease;
}

.site-footer__contact-item a:hover {
    color: #fff;
}

/* ===========================================
   FOOTER COLUMNS
=========================================== */

.site-footer__col {
    min-width: 0;
}

.site-footer__col h4 {
    font-size: 14px;
    font-weight: 800;

    color: #fff;

    margin: 0 0 17px;
    padding-bottom: 10px;

    text-transform: uppercase;
    letter-spacing: .6px;

    border-bottom: 1px solid rgba(255,255,255,.13);
}

/* Footer links */
.site-footer__col a {
    display: block;

    font-size: 14.5px;
    color: rgba(255,255,255,.62);

    margin-bottom: 11px;

    text-decoration: none;

    line-height: 1.35;

    transition:
        color .2s ease,
        transform .2s ease;
}

.site-footer__col a:hover {
    color: #fff;
    transform: translateX(3px);
}

/* ===========================================
   HOSPITAL LINKS
=========================================== */

.site-footer__col--hospitals a {
    margin-bottom: 9px;
}

/* ===========================================
   SERVICES LINKS
=========================================== */

.site-footer__col--services a {
    margin-bottom: 11px;
}

/* ===========================================
   DIVIDER
=========================================== */

.site-footer__sep {
    border: none;

    border-top: 1px solid rgba(255,255,255,.1);

    margin: 0;
}

/* ===========================================
   BOTTOM ROW
=========================================== */

.site-footer__bottom {
    min-height: 78px;

    padding: 18px 0;

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 20px;
}

/* Terms / privacy / sitemap */
.site-footer__links {
    display: flex;

    align-items: center;

    gap: 22px;

    flex-wrap: wrap;
}

.site-footer__links a {
    font-size: 13px;

    color: rgba(255,255,255,.52);

    text-decoration: none;

    transition: color .2s ease;
}

.site-footer__links a:hover {
    color: #fff;
}

/* ===========================================
   SOCIAL ICONS
=========================================== */

.site-footer__social {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 10px;
}

.site-footer__social a {
    width: 38px;
    height: 38px;

    margin: 0;

    border-radius: 50%;

    background: rgba(255,255,255,.09);

    display: flex;
    align-items: center;
    justify-content: center;

    color: rgba(255,255,255,.7);

    font-size: 14px;
    font-weight: 800;

    text-decoration: none;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.site-footer__social a:hover {
    background: var(--teal);
    color: #fff;

    transform: translateY(-2px);
}

/* ===========================================
   COPYRIGHT
=========================================== */

.site-footer__copy {
    grid-column: 1 / -1;

    width: 100%;

    padding-top: 15px;

    border-top: 1px solid rgba(255,255,255,.08);

    font-size: 13px;

    color: rgba(255,255,255,.42);

    text-align: center;

    line-height: 1.5;
}

/* ===========================================
   FOOTER MOBILE
=========================================== */

@media (max-width: 1100px) {

    .site-footer__grid {
        grid-template-columns:
            1.2fr
            1fr
            1.1fr
            1fr;

        gap: 30px;
    }
}

@media (max-width: 900px) {

    .site-footer {
        padding-top: 45px;
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 36px 30px;

        margin-bottom: 32px;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }

    .site-footer__bottom {
        grid-template-columns: 1fr;

        justify-items: center;

        text-align: center;

        gap: 16px;
    }

    .site-footer__links {
        justify-content: center;
    }

    .site-footer__social {
        justify-content: center;
    }

    .site-footer__copy {
        grid-column: 1;
    }
}

@media (max-width: 600px) {

    .site-footer {
        padding-top: 38px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;

        gap: 30px 22px;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }

    .site-footer__brand .brand-name {
        font-size: 22px;
    }

    .site-footer__col h4 {
        font-size: 13px;
    }

    .site-footer__col a {
        font-size: 13.5px;
        margin-bottom: 9px;
    }

    .site-footer__contact-item {
        font-size: 13.5px;
    }
}

@media (max-width: 480px) {

    .site-footer {
        padding-top: 35px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .site-footer__brand {
        grid-column: auto;
    }

    .site-footer__bottom {
        padding: 18px 0;
    }

    .site-footer__links {
        gap: 12px 18px;
        justify-content: center;
    }

    .site-footer__social a {
        width: 36px;
        height: 36px;
    }

    .site-footer__copy {
        font-size: 12px;
    }
}


/* ===========================================
   JOURNEY VIDEO CAROUSEL
   Replaces the old single .podcasts__journey-img video.
   You can delete the old .podcasts__journey-img rule in
   sections.css — it's no longer used.
   =========================================== */

.podcasts__journey {
  margin: 0 0 40px;
}

.journey-carousel {
  position: relative;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  background: #000;
}

.journey-carousel__track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform .6s ease;
  width: 100%;
}

.journey-carousel__slide {
  position: relative;
  flex: 0 0 100%;
  max-width: 100%;
  overflow: hidden; /* clip this slide's own video so it can never bleed into neighbours */
  aspect-ratio: 16 / 9; /* change to 9 / 16 if your videos are vertical/portrait */
}

.journey-carousel__video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.journey-carousel__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 18px 12px;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
}

/* Prev / next arrows */
.journey-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.85);
  color: #000;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background var(--t);
}
.journey-carousel__arrow:hover { background: #fff; }
.journey-carousel__arrow--prev { left: 12px; }
.journey-carousel__arrow--next { right: 12px; }

/* Dots */
.journey-carousel__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.journey-carousel__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255,255,255,.55);
  cursor: pointer;
  transition: background var(--t), transform var(--t);
}
.journey-carousel__dot.is-active {
  background: #fff;
  transform: scale(1.3);
}

@media (max-width: 600px) {
  .journey-carousel__arrow { width: 34px; height: 34px; font-size: 17px; }
}


@media (max-width: 700px) {

  /* Our Services heading */
  .services-heading {
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
  }

  .services-heading .podcasts__badge,
  .services-heading .sec-title,
  .services-heading .sec-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* Center service cards */
  .podcasts__grid {
    justify-content: center;
    align-items: center;
  }

  /* Center Explore Services button */
  .podcasts__cta {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .podcasts__cta a {
    margin-left: auto;
    margin-right: auto;
  }
}


/* ===========================================
   HOSPITAL DETAIL PAGE
   Professional + Responsive UI
   =========================================== */


/* ===========================================
   STATS
   =========================================== */

.hosp-stats__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;

  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 18px;

  padding: 0;

  overflow: hidden;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.hosp-stat {
  position: relative;
  text-align: center;
  padding: 24px 18px;
}

.hosp-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 0;
  width: 1px;
  height: calc(100% - 44px);
  background: var(--border-light);
}

.hosp-stat__val {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--teal-dark);
}

.hosp-stat__label {
  margin-top: 7px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-muted);
  font-weight: 500;
}


/* ===========================================
   COMMON CONTENT SECTIONS
   =========================================== */

.hosp-detail-section {
  padding: 55px 0;
}

.hosp-detail-section--soft {
  background: var(--bg-soft);
}

.hosp-detail-heading {
  margin-bottom: 25px;
}

.hosp-detail-heading__badge {
  display: inline-flex;
  align-items: center;

  padding: 6px 13px;

  border-radius: 999px;

  background: var(--teal-light);
  border: 1px solid var(--teal-mid);

  color: var(--teal-dark);

  font-size: 12px;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 0.6px;

  margin-bottom: 10px;
}

.hosp-detail-heading h2 {
  margin: 0;
  color: #111;
  font-size: 27px;
  line-height: 1.25;
  font-weight: 800;
}

.hosp-detail-heading p {
  max-width: 760px;
  margin: 10px 0 0;

  color: var(--text-muted);

  font-size: 15px;
  line-height: 1.7;
}


/* ===========================================
   ABOUT
   =========================================== */

.hosp-about-card {
  max-width: 950px;

  background: #fff;

  border: 1px solid var(--border-light);
  border-left: 4px solid var(--teal);

  border-radius: 16px;

  padding: 28px 30px;

  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.045);
}

.hosp-about-card p {
  margin: 0;

  color: var(--text-mid);

  font-size: 15.5px;
  line-height: 1.8;
}


/* ===========================================
   PROGRAMMES & TECHNOLOGY
   =========================================== */

.hosp-programmes {
  list-style: none;

  padding: 0;
  margin: 0;

  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 14px;
}

.hosp-programmes li {
  display: flex;
  align-items: flex-start;

  gap: 12px;

  padding: 16px 18px;

  background: #fff;

  border: 1px solid var(--border-light);
  border-radius: 13px;

  color: var(--text-mid);

  font-size: 14.5px;
  line-height: 1.6;

  transition:
    transform var(--t),
    box-shadow var(--t),
    border-color var(--t);
}

.hosp-programmes li:hover {
  transform: translateY(-2px);

  border-color: var(--teal-mid);

  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.hosp-programmes li .ic {
  flex-shrink: 0;

  width: 22px;
  height: 22px;

  margin-top: 1px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--teal-light);
}


/* ===========================================
   SPECIALITIES
   =========================================== */

.hosp-chips {
  display: flex;
  flex-wrap: wrap;

  gap: 10px;
}

.hosp-chip {
  display: inline-flex;
  align-items: center;

  min-height: 40px;

  padding: 8px 16px;

  border-radius: 999px;

  background: #fff;

  color: var(--teal-dark);

  font-size: 14px;
  font-weight: 600;

  border: 1px solid var(--teal-mid);

  text-decoration: none;

  transition:
    background var(--t),
    color var(--t),
    transform var(--t),
    box-shadow var(--t);
}

.hosp-chip:hover {
  background: var(--teal);
  color: #fff;

  transform: translateY(-2px);

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}


/* ===========================================
   DOCTORS
   =========================================== */

.hosp-doctors__grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(280px, 1fr));

  gap: 18px;
}

.hosp-doctor-card {
  position: relative;

  display: flex;

  gap: 15px;

  padding: 20px;

  background: #fff;

  border: 1px solid var(--border-light);

  border-radius: 16px;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.035);

  transition:
    transform var(--t),
    box-shadow var(--t),
    border-color var(--t);
}

.hosp-doctor-card:hover {
  transform: translateY(-3px);

  border-color: var(--teal-mid);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.hosp-doctor-card__icon {
  width: 48px;
  height: 48px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background:
    linear-gradient(
      135deg,
      var(--teal-light),
      var(--green-light)
    );

  color: var(--teal);
}

.hosp-doctor-card__icon svg {
  width: 23px;
  height: 23px;
}

.hosp-doctor-card__name {
  font-size: 16px;
  font-weight: 800;

  line-height: 1.35;

  color: #111;
}

.hosp-doctor-card__spec {
  margin-top: 4px;

  color: var(--teal-dark);

  font-size: 13.5px;
  font-weight: 700;

  line-height: 1.4;
}

.hosp-doctor-card__notes {
  margin-top: 7px;

  color: var(--text-muted);

  font-size: 13.5px;
  line-height: 1.55;
}


/* ===========================================
   DOCTOR BUTTON
   =========================================== */

.hosp-doctors__cta {
  display: flex;

  justify-content: center;

  margin-top: 28px;
}


/* ===========================================
   CTA
   =========================================== */

.hosp-cta {
  position: relative;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  padding: 34px 38px;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      var(--navy),
      var(--teal-dark)
    );

  border-radius: 20px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.hosp-cta::after {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  right: -80px;
  bottom: -120px;

  border-radius: 50%;

  border: 35px solid rgba(255, 255, 255, 0.06);

  pointer-events: none;
}

.hosp-cta > div {
  position: relative;
  z-index: 1;
}

.hosp-cta h3 {
  margin: 0 0 8px;

  color: #fff;

  font-size: 22px;
  line-height: 1.3;

  font-weight: 800;
}

.hosp-cta p {
  margin: 0;

  max-width: 650px;

  color: rgba(255, 255, 255, 0.78);

  font-size: 14.5px;
  line-height: 1.6;
}

.hosp-cta .btn {
  position: relative;
  z-index: 2;

  flex-shrink: 0;

  white-space: nowrap;
}


/* ===========================================
   HOSPITAL HERO
   =========================================== */

.hosp-group-hero {
  position: relative;

  background-size: cover;
  background-position: center;

  min-height: 330px;

  display: flex;
  align-items: center;
}

.hosp-group-hero .container {
  width: 100%;
}

.hosp-group-hero h1 {
  max-width: 850px;

  margin: 12px auto 10px;

  color: #fff;

  font-size: clamp(30px, 4vw, 48px);

  line-height: 1.12;

  font-weight: 800;

  text-align: center;
}

.hosp-group-hero > .container > p {
  margin: 0 auto;

  color: rgba(255,255,255,.85);

  font-size: 16px;

  text-align: center;
}

.hosp-group-hero__meta {
  display: flex;

  justify-content: center;

  gap: 12px 25px;

  margin-top: 20px;

  flex-wrap: wrap;
}

.hosp-group-hero__meta span {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  padding: 8px 13px;

  border-radius: 999px;

  background: rgba(255,255,255,.10);

  border: 1px solid rgba(255,255,255,.18);

  backdrop-filter: blur(4px);

  font-size: 13.5px;

  color: rgba(255,255,255,.94);
}


/* ===========================================
   BREADCRUMB
   =========================================== */

.hosp-group-hero .page-hero__crumb {
  text-align: center;

  color: rgba(255,255,255,.75);

  font-size: 13px;
}

.hosp-group-hero .page-hero__crumb a {
  color: rgba(255,255,255,.88);
}


/* ===========================================
   TABLET
   =========================================== */

@media (max-width: 900px) {

  .hosp-stats__strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .hosp-stat:nth-child(2)::after {
    display: none;
  }

  .hosp-stat:nth-child(-n+2) {
    border-bottom: 1px solid var(--border-light);
  }

  .hosp-programmes {
    grid-template-columns: 1fr;
  }

  .hosp-cta {
    padding: 30px;
  }

}


/* ===========================================
   MOBILE
   =========================================== */

@media (max-width: 600px) {

  /* General sections */

  .hosp-detail-section {
    padding: 38px 0;
  }


  /* Stats */

  .hosp-stats__strip {
    grid-template-columns: repeat(2, 1fr);

    border-radius: 15px;
  }

  .hosp-stat {
    padding: 18px 10px;
  }

  .hosp-stat:nth-child(odd)::after {
    display: block;
  }

  .hosp-stat:nth-child(even)::after {
    display: none;
  }

  .hosp-stat:nth-child(-n+2) {
    border-bottom: 1px solid var(--border-light);
  }

  .hosp-stat__val {
    font-size: 20px;
  }

  .hosp-stat__label {
    font-size: 12px;
  }


  /* Section headings */

  .hosp-detail-heading {
    text-align: center;
  }

  .hosp-detail-heading h2 {
    font-size: 23px;
  }

  .hosp-detail-heading p {
    font-size: 14px;
  }


  /* About */

  .hosp-about-card {
    padding: 20px;

    border-left: 3px solid var(--teal);
  }

  .hosp-about-card p {
    font-size: 14.5px;
    line-height: 1.7;
  }


  /* Programmes */

  .hosp-programmes {
    grid-template-columns: 1fr;

    gap: 10px;
  }

  .hosp-programmes li {
    padding: 14px;

    font-size: 14px;
  }


  /* Specialities */

  .hosp-chips {
    justify-content: center;
  }

  .hosp-chip {
    min-height: 38px;

    padding: 7px 13px;

    font-size: 13px;
  }


  /* Doctors */

  .hosp-doctors__grid {
    grid-template-columns: 1fr;

    gap: 12px;
  }

  .hosp-doctor-card {
    padding: 16px;

    border-radius: 14px;
  }

  .hosp-doctor-card__icon {
    width: 44px;
    height: 44px;
  }

  .hosp-doctor-card__name {
    font-size: 15px;
  }

  .hosp-doctor-card__spec {
    font-size: 13px;
  }

  .hosp-doctor-card__notes {
    font-size: 13px;
  }


  /* Doctor button */

  .hosp-doctors__cta .btn {
    width: 100%;
    max-width: 320px;

    justify-content: center;
  }


  /* CTA */

  .hosp-cta {
    flex-direction: column;

    text-align: center;

    padding: 27px 20px;

    gap: 20px;

    border-radius: 16px;
  }

  .hosp-cta h3 {
    font-size: 19px;
  }

  .hosp-cta p {
    font-size: 13.5px;
  }

  .hosp-cta .btn {
    width: 100%;
    max-width: 280px;

    justify-content: center;
  }


  /* Hero */

  .hosp-group-hero {
    min-height: 360px;

    padding: 45px 0;
  }

  .hosp-group-hero h1 {
    font-size: 29px;

    line-height: 1.2;
  }

  .hosp-group-hero > .container > p {
    font-size: 14px;
  }

  .hosp-group-hero__meta {
    gap: 8px;

    margin-top: 18px;
  }

  .hosp-group-hero__meta span {
    font-size: 12.5px;

    padding: 7px 10px;
  }

}


/* ===========================================
   SMALL MOBILE
   =========================================== */

@media (max-width: 400px) {

  .hosp-stats__strip {
    grid-template-columns: 1fr 1fr;
  }

  .hosp-stat {
    padding: 15px 7px;
  }

  .hosp-stat__val {
    font-size: 18px;
  }

  .hosp-stat__label {
    font-size: 11.5px;
  }

  .hosp-group-hero {
    min-height: 390px;
  }

  .hosp-group-hero h1 {
    font-size: 26px;
  }

  .hosp-group-hero__meta span {
    width: 100%;
    justify-content: center;
  }

}

/* ===========================================
   HOSPITAL STATS - MODERN RESPONSIVE UI
   =========================================== */

.hosp-stats__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;

  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;

  box-shadow: none;
}

.hosp-stat {
  min-width: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  min-height: 120px;
  padding: 20px 14px;

  background: #fff;

  border: 1px solid var(--border-light);
  border-radius: 16px;

  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.045);

  transition:
    transform var(--t),
    box-shadow var(--t),
    border-color var(--t);
}

.hosp-stat:hover {
  transform: translateY(-3px);

  border-color: var(--teal-mid);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.hosp-stat__val {
  font-size: 24px;
  line-height: 1.2;

  font-weight: 800;

  color: var(--teal);

  overflow-wrap: anywhere;
}

.hosp-stat__label {
  margin-top: 7px;

  font-size: 13.5px;
  line-height: 1.4;

  font-weight: 600;

  color: var(--text-muted);
}


/* ===========================================
   TABLET
   =========================================== */

@media (max-width: 900px) {

  .hosp-stats__strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .hosp-stat {
    min-height: 115px;
  }

}


/* ===========================================
   MOBILE
   =========================================== */

@media (max-width: 600px) {

  .hosp-stats__strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .hosp-stat {
    min-height: 105px;

    padding: 16px 10px;

    border-radius: 14px;
  }

  .hosp-stat__val {
    font-size: 21px;
    line-height: 1.25;
  }

  .hosp-stat__label {
    font-size: 12.5px;
    margin-top: 5px;
  }

}


/* ===========================================
   SMALL MOBILE
   =========================================== */

@media (max-width: 400px) {

  .hosp-stats__strip {
    gap: 8px;
  }

  .hosp-stat {
    min-height: 100px;
    padding: 14px 8px;
  }

  .hosp-stat__val {
    font-size: 19px;
  }

  .hosp-stat__label {
    font-size: 12px;
  }

}

@media (max-width: 600px) {
  .hosp-stat:last-child {
    grid-column: 1 / -1;
  }
}
/* ===========================================
   HOSPITAL HERO META - RESPONSIVE
   =========================================== */

.hosp-group-hero__meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;

  margin-top: 22px;

  flex-wrap: wrap;
  width: 100%;
}

.hosp-group-hero__meta > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 7px;

  min-height: 42px;

  padding: 9px 18px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.14);

  border: 1px solid rgba(255, 255, 255, 0.25);

  color: rgba(255, 255, 255, 0.95);

  font-size: 14px;
  font-weight: 600;

  line-height: 1.4;

  white-space: normal;

  text-align: center;

  box-sizing: border-box;
}


/* ===========================================
   MOBILE
   =========================================== */

@media (max-width: 600px) {

  .hosp-group-hero {
    min-height: auto;
    padding: 42px 16px 48px;
  }

  .hosp-group-hero__meta {
    flex-direction: column;

    align-items: stretch;

    width: 100%;

    gap: 10px;

    margin-top: 20px;
  }

  .hosp-group-hero__meta > span {
    width: 100%;

    min-height: 44px;

    padding: 10px 14px;

    border-radius: 14px;

    font-size: 13px;

    white-space: normal;

    text-align: center;

    overflow-wrap: break-word;
  }

}


/* ===========================================
   SMALL MOBILE
   =========================================== */

@media (max-width: 400px) {

  .hosp-group-hero {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hosp-group-hero__meta {
    gap: 8px;
  }

  .hosp-group-hero__meta > span {
    font-size: 12.5px;

    padding: 9px 12px;

    min-height: 42px;
  }

}

/* ===========================================
   FINAL OVERRIDE: FIX MOBILE HERO META ICON
   =========================================== */

@media (max-width: 600px) {

  /* Keep only the actual meta items full width */
  .hosp-group-hero__meta > span {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  /* Prevent the nested icon span from inheriting width:100% */
  .hosp-group-hero__meta > span > .ic {
    width: auto !important;
    min-width: 16px;
    max-width: 16px;
    flex: 0 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

}

@media (max-width: 400px) {

  .hosp-group-hero__meta > span > .ic {
    width: auto !important;
    min-width: 16px;
    max-width: 16px;
    flex: 0 0 16px;
  }

}


/* ===========================================
   HOSPITAL HERO META - FINAL ICON FIX
   =========================================== */

.hosp-group-hero__meta .hosp-meta-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  padding: 8px 13px;

  border-radius: 999px;

  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);

  backdrop-filter: blur(4px);

  font-size: 13.5px;
  color: rgba(255,255,255,.94);

  box-sizing: border-box;
}

.hosp-group-hero__meta .hosp-meta-icon {
  width: 16px !important;
  height: 16px !important;

  min-width: 16px !important;
  max-width: 16px !important;

  padding: 0 !important;
  margin: 0 !important;

  border: 0 !important;
  border-radius: 0 !important;

  background: transparent !important;

  display: inline-flex !important;
  align-items: center;
  justify-content: center;

  flex: 0 0 16px;
}

.hosp-group-hero__meta .hosp-meta-icon .ic {
  width: 16px !important;
  height: 16px !important;

  min-width: 16px !important;
  max-width: 16px !important;

  padding: 0 !important;
  margin: 0 !important;

  border: 0 !important;
  border-radius: 0 !important;

  background: transparent !important;

  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

.hosp-group-hero__meta .hosp-meta-icon svg {
  width: 16px !important;
  height: 16px !important;

  display: block !important;
}

.hosp-group-hero__meta .hosp-meta-text {
  width: auto !important;

  padding: 0 !important;
  margin: 0 !important;

  border: 0 !important;
  border-radius: 0 !important;

  background: transparent !important;

  display: inline !important;

  color: inherit;
}


/* ===========================================
   MOBILE
   =========================================== */

@media (max-width: 600px) {

  .hosp-group-hero__meta {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hosp-group-hero__meta .hosp-meta-item {
    width: 100%;
    max-width: 100%;

    min-height: 44px;

    padding: 10px 14px;

    font-size: 13px;

    white-space: normal;
    text-align: center;

    overflow-wrap: anywhere;
  }

  .hosp-group-hero__meta .hosp-meta-icon {
    flex: 0 0 16px;
  }

}


/* ===========================================
   SMALL MOBILE
   =========================================== */

@media (max-width: 400px) {

  .hosp-group-hero__meta .hosp-meta-item {
    font-size: 12.5px;
    padding: 9px 12px;
  }

}

