#primary .gh-breakthrough-single .gh-health-blog-single__main {
  border-color: rgba(14, 143, 197, 0.18);
}

#primary .gh-breakthrough-single .gh-health-blog-single__content {
  display: grid;
  gap: clamp(1.15rem, 2.4vw, 1.6rem);
}

#primary .gh-breakthrough-single .gh-health-blog-single__content > * {
  margin: 0;
}

#primary .gh-breakthrough-single__intro {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  border-left: 4px solid var(--ghrc-teal);
  border-radius: 8px;
  background: linear-gradient(
    135deg,
    rgba(41, 168, 143, 0.12),
    rgba(14, 143, 197, 0.08)
  );
  color: var(--ghrc-navy);
  padding: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
  line-height: 1.65;
}

#primary .gh-breakthrough-single__intro i {
  color: var(--ghrc-teal);
  font-size: 1.05rem;
  line-height: 1.7;
}

#primary .gh-breakthrough-single__intro p,
#primary .gh-breakthrough-single__editor > *:last-child,
#primary .gh-breakthrough-single__section-body > *:last-child {
  margin-bottom: 0;
}

#primary .gh-breakthrough-single__editor {
  color: #394356;
}

#primary .gh-breakthrough-single__section {
  border: 1px solid rgba(14, 143, 197, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(247, 252, 253, 0.9)
    ),
    #fff;
  padding: clamp(1.1rem, 2.5vw, 1.45rem);
  box-shadow: 0 16px 32px -30px rgba(22, 19, 63, 0.46);
}

#primary .gh-breakthrough-single__section-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

#primary .gh-breakthrough-single__section-icon {
  display: inline-grid;
  width: 2.45rem;
  height: 2.45rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(
    135deg,
    rgba(14, 143, 197, 0.13),
    rgba(41, 168, 143, 0.14)
  );
  color: var(--ghrc-blue);
}

#primary .gh-breakthrough-single__section-head h2 {
  margin: 0;
  color: var(--ghrc-navy);
  font-size: clamp(1.35rem, 2.1vw, 1.75rem);
  line-height: 1.25;
}

#primary .gh-breakthrough-single__section-body {
  color: #445066;
  line-height: 1.78;
}

#primary .gh-breakthrough-single__section-body p,
#primary .gh-breakthrough-single__section-body ul,
#primary .gh-breakthrough-single__section-body ol {
  margin: 0 0 1rem;
}

#primary .gh-breakthrough-single__section--media {
  background: #fff;
}

#primary .gh-breakthrough-single__gallery-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

#primary .gh-breakthrough-single__gallery-head h3 {
  margin-bottom: 0;
}

#primary .gh-breakthrough-single__gallery-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

#primary .gh-breakthrough-single__gallery-nav button {
  display: inline-grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border: 1px solid rgba(14, 143, 197, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--ghrc-navy);
  box-shadow: 0 12px 24px -20px rgba(22, 19, 63, 0.45);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    background 0.22s ease;
}

#primary .gh-breakthrough-single__gallery-nav button:hover,
#primary .gh-breakthrough-single__gallery-nav button:focus-visible {
  border-color: rgba(14, 143, 197, 0.34);
  background: rgba(14, 143, 197, 0.08);
  color: var(--ghrc-blue);
  transform: translateY(-1px);
}

#primary .gh-breakthrough-single__gallery-slider {
  margin-top: 0.2rem;
}

#primary .gh-breakthrough-single__gallery-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s ease;
  will-change: transform;
}

#primary .gh-breakthrough-single__gallery-slide {
  flex: 0 0 min(78%, 360px);
}

#primary .gh-breakthrough-single__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 0.8rem;
}

#primary .gh-breakthrough-single__gallery-item {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  background: hsl(var(--muted));
  padding: 0;
  text-decoration: none;
  cursor: pointer;
}

#primary .gh-breakthrough-single__gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

#primary .gh-breakthrough-single__gallery-item span {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  border-radius: 999px;
  background: rgba(11, 18, 38, 0.78);
  color: #fff;
  padding: 0.42rem 0.7rem;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

#primary .gh-breakthrough-single__gallery-item:hover img,
#primary .gh-breakthrough-single__gallery-item:focus-visible img {
  transform: scale(1.05);
}

#primary .gh-breakthrough-single__gallery-item:hover span,
#primary .gh-breakthrough-single__gallery-item:focus-visible span {
  opacity: 1;
  transform: translateY(0);
}

#primary .gh-breakthrough-single__video {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  background: #050914;
}

#primary .gh-breakthrough-single__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#primary .gh-breakthrough-single .gh-health-blog-single__aside-card {
  border-color: rgba(14, 143, 197, 0.16);
}

#primary .gh-breakthrough-single.ghrc-doctor-detail-content {
  align-items: start;
}

#primary .gh-breakthrough-single__feature {
  margin: 0;
  border: 1px solid rgba(14, 143, 197, 0.14);
  background: #fff;
}

#primary .gh-breakthrough-single__feature img {
  display: block;
}

#primary .gh-breakthrough-single__intro-section {
  border-left: 4px solid var(--ghrc-teal);
}

#primary .gh-breakthrough-single .ghrc-doctor-detail-copy p + p {
  margin-top: 0.85rem;
}

#primary .gh-breakthrough-single .ghrc-doctor-detail-copy ul,
#primary .gh-breakthrough-single .ghrc-doctor-detail-copy ol {
  margin: 0.85rem 0 0;
  padding-left: 1.25rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.65;
}

#primary .gh-breakthrough-single__facts {
  display: grid;
  gap: 0.85rem;
}

#primary .gh-breakthrough-single__facts > div {
  display: grid;
  gap: 0.18rem;
  border-bottom: 1px solid rgba(14, 143, 197, 0.1);
  padding-bottom: 0.85rem;
}

#primary .gh-breakthrough-single__facts > div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

#primary .gh-breakthrough-single__facts span {
  color: hsl(var(--muted-foreground));
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

#primary .gh-breakthrough-single__facts strong {
  color: hsl(var(--foreground));
  font-size: 0.95rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  #primary .gh-breakthrough-single__gallery-head {
    align-items: flex-start;
    flex-direction: column;
  }

  #primary .gh-breakthrough-single__gallery-slide {
    flex-basis: min(88%, 320px);
  }
}
