:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e6eaf2;
  --shadow: 0 10rem 25rem rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 6rem 18rem rgba(15, 23, 42, 0.07);
  --brand: #0a77c5;
  --brand-2: #2ab3b8;
  --green: #2dbb6b;
  --purple: #8a3ab9;
  --radius: 14rem;
  --radius-lg: 18rem;
  --container: 1180rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  font-size: 6.25%;
}

body {
  margin: 0;
  font-size: 16rem;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration: none;
}

[hidden] {
  display: none !important;
}

button,
input {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 36rem));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1rem;
  height: 1rem;
  padding: 0;
  margin: -1rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12rem;
  top: 12rem;
  z-index: 50;
  padding: 10rem 12rem;
  border-radius: 10rem;
  background: var(--text);
  color: #fff;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
}

.topbar {
  background: #fff;
  border-bottom: 1rem solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16rem;
  padding: 10rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12rem;
  min-width: 0;
}

.brand-logo {
  display: block;
  height: 70rem;
  width: auto;
  max-width: min(520rem, 44vw);
  object-fit: contain;
}

.brand-mark {
  color: var(--brand);
  display: inline-flex;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.2rem;
  font-size: 15rem;
}

.brand-sub {
  font-size: 12rem;
  color: var(--muted);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 14rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 8rem;
  color: var(--muted);
  font-size: 13rem;
  padding: 8rem 10rem;
  border-radius: 12rem;
  transition: background 160ms ease, color 160ms ease;
  border: 1rem solid transparent;
  background: transparent;
  cursor: pointer;
}

.topbar-link:hover {
  background: #f2f6ff;
  color: var(--text);
}

.topbar-link.button-link {
  border: 1rem solid transparent;
}

.icon {
  display: inline-flex;
  color: var(--brand);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34rem;
  padding: 0 12rem;
  border-radius: 999rem;
  border: 1rem solid var(--line);
  color: var(--text);
  background: #fff;
  font-weight: 600;
  font-size: 13rem;
}

.navwrap {
  background: #fff;
  border-bottom: 1rem solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10rem;
  border: 1rem solid var(--line);
  background: #fff;
  border-radius: 12rem;
  padding: 10rem 12rem;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav-toggle:active {
  transform: translateY(1rem);
}

.nav-toggle[aria-expanded="true"] {
  border-color: rgba(135, 23, 135, 0.26);
  background: rgba(135, 23, 135, 0.06);
}

.nav-toggle-bars {
  width: 18rem;
  height: 12rem;
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2rem;
  border-radius: 99rem;
  background: var(--text);
  transition: transform 220ms ease, top 220ms ease, bottom 220ms ease, box-shadow 220ms ease, background 160ms ease;
}

.nav-toggle-bars::before {
  top: 0;
  box-shadow: 0 5rem 0 var(--text);
}

.nav-toggle-bars::after {
  bottom: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  box-shadow: none;
  background: rgba(135, 23, 135, 0.92);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
  background: rgba(135, 23, 135, 0.92);
}

.nav-toggle-label {
  font-weight: 600;
  font-size: 13rem;
}

.mainnav {
  display: flex;
  align-items: center;
  gap: 6rem;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.nav-item {
  padding: 17rem 12rem;
  border-radius: 4rem;
  font-size: 14rem;
  color: var(--text);
  border: 1rem solid transparent;
  transition: background 160ms ease, border-color 160ms ease;
}

.nav-item:hover {
    color: #871787;
}

.nav-item.is-active {
    background: #871787;
    color: #FFF;
    font-weight: bold;
}

.nav-group {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240rem;
  padding: 10rem;
  border-radius: 14rem;
  border: 1rem solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18rem 45rem rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(12rem);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6rem);
  pointer-events: none;
  z-index: 60;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-subitem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12rem;
  padding: 10rem 10rem;
  border-radius: 12rem;
  font-size: 13rem;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.9);
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease;
}

.nav-subitem:hover {
  background: rgba(135, 23, 135, 0.1);
  color: #871787;
}

@media (hover: hover) and (pointer: fine) {
  .nav-group:hover .nav-dropdown,
  .nav-group:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900rem 400rem at 30% 25%, rgba(42, 179, 184, 0.5), transparent 60%),
    radial-gradient(800rem 380rem at 75% 40%, rgba(10, 119, 197, 0.5), transparent 62%),
    linear-gradient(120deg, #0a77c5 0%, #2ab3b8 52%, #0b5aa0 100%);
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -2rem;
  background:
    linear-gradient(to bottom, rgba(3, 12, 28, 0.08), rgba(3, 12, 28, 0.62)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 10rem, rgba(255, 255, 255, 0.02) 10rem 20rem);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  padding: 64rem 0 72rem;
}

.hero-copy {
  max-width: 640rem;
}

.hero-kicker {
  margin: 0 0 10rem;
  font-size: 13rem;
  opacity: 0.92;
  letter-spacing: 0.7rem;
  text-transform: uppercase;
}

.hero-title {
  margin: 0 0 14rem;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.4rem;
  font-size: clamp(30rem, 3.6vw, 44rem);
}

.hero-subtitle {
  margin: 0;
  font-size: 15rem;
  opacity: 0.95;
}

.hero.hero-swiper {
  background: #0b1220;
}

.hero.hero-swiper::after {
  content: none;
}

.hero-swiper .swiper {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.hero-swiper .swiper.is-dragging {
  cursor: grabbing;
}

.hero-swiper .swiper-wrapper {
  display: flex;
  transform: translate3d(0, 0, 0);
  transition: transform 520ms ease;
  will-change: transform;
}

.hero-swiper .swiper.is-dragging .swiper-wrapper {
  transition: none;
}

.hero-swiper .swiper-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: 380rem;
  background:
    radial-gradient(900rem 400rem at 30% 25%, rgba(42, 179, 184, 0.22), transparent 60%),
    radial-gradient(800rem 380rem at 75% 40%, rgba(10, 119, 197, 0.22), transparent 62%),
    linear-gradient(120deg, #0a77c5 0%, #2ab3b8 52%, #0b5aa0 100%);
}

.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--pos-x, 50%) var(--pos-y, 50%);
  filter: saturate(1.06) contrast(1.02);
  user-select: none;
  -webkit-user-drag: none;
}

.hero-slide-overlay {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  user-select: none;
}

.swiper-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40rem;
  height: 40rem;
  border-radius: 999rem;
  border: 1rem solid rgba(255, 255, 255, 0.22);
  background: rgba(3, 12, 28, 0.35);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26rem;
  line-height: 1;
  cursor: pointer;
  user-select: none;
}

.swiper-prev {
  left: 16rem;
}

.swiper-next {
  right: 16rem;
}

.swiper-nav:hover {
  background: rgba(3, 12, 28, 0.52);
}

.swiper-nav:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4rem rgba(168, 85, 247, 0.28);
  border-color: rgba(168, 85, 247, 0.55);
}

.swiper-pagination {
  position: absolute;
  left: 50%;
  bottom: 24rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8rem;
  padding: 10rem 12rem;
}

.swiper-dot {
  width: 10rem;
  height: 10rem;
  border-radius: 999rem;
  border: 1rem solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 0;
}

.swiper-dot.is-active {
  width: 26rem;
  border-color: #FFF;
  background: #FFF;
}

.cta {
  margin-top: -24rem;
  padding-bottom: 18rem;
}

.cta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14rem;
}

.cta-grid > .cta-btn {
  flex: 1 1 calc((100% - 56rem) / 5);
  min-width: 170rem;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12rem;
  padding: 16rem 18rem;
  border-radius: 16rem;
  color: #fff;
  box-shadow: var(--shadow-soft);
  border: 1rem solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8rem);
}

.cta-label {
  font-weight: 800;
  letter-spacing: 0.2rem;
}

.cta-icon {
  display: inline-flex;
  color: #fff;
}

.cta-blue {
  background: linear-gradient(135deg, #48a6ff, #0a77c5);
}

.cta-green {
  background: linear-gradient(135deg, #34d399, #14a36a);
}

.cta-purple {
  background: linear-gradient(135deg, #a855f7, #6d28d9);
}

.cta-yellow {
  background: linear-gradient(135deg, #f3e77a, #e0cd3d);
}

.cta-pink {
  background: linear-gradient(135deg, #f058b0, #d22f85);
}

.cta-cyan {
  background: linear-gradient(135deg, #27d6e8, #10b8cf);
}

.cta-teal {
  background: linear-gradient(135deg, #2aa1ae, #1d7f8a);
}

.cta-emerald {
  background: linear-gradient(135deg, #25b773, #148d55);
}

.section {
  padding: 38rem 0;
}

.section#clinical {
  padding: 0 0 38rem 0;
}

.section-muted {
  background: linear-gradient(to bottom, #f6fbff, var(--bg));
}

.section-imc {
  background: linear-gradient(to bottom, rgba(138, 58, 185, 0.14), rgba(138, 58, 185, 0.06));
}

.section-footnote {
  padding-top: 22rem;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18rem;
  margin-bottom: 16rem;
}

.section-head.center {
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 8rem;
}

.section-title {
  margin: 0;
  font-size: 20rem;
  font-weight: 800;
}

.section-sub {
  margin: 0;
  color: var(--muted);
  font-size: 13rem;
}

.section-split {
  padding-top: 18rem;
}

.section-split .panel-head {
  border-bottom-left-radius: var(--radius-lg);
}

.split-grid {
  display: flex;
  gap: 0;
  align-items: stretch;
}

.split-grid > .panel {
  min-width: 0;
}

.split-grid > .panel:first-child {
  flex: 0.8 1 0;
}

.split-grid > .panel:last-child {
  flex: 1 1 0;
}

.section-split .split-grid {
  background: var(--surface);
  border: 1rem solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.section-split .split-grid > .panel {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.panel {
  background: var(--surface);
  border: 1rem solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12rem;
  padding: 14rem 16rem;
  border: 1rem solid var(--line);
  background: linear-gradient(to bottom, #ffffff, #fbfcff);
}

.panel-title {
  margin: 0;
  font-size: 14rem;
  font-weight: 800;
}

.panel-link {
  font-size: 12rem;
  font-weight: 700;
  color: var(--brand);
}

.media {
  padding: 0;
}

.media-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 14rem;
  border: 1rem solid #e2e8f0;
  background:
    radial-gradient(900rem 250rem at 25% 10%, rgba(72, 166, 255, 0.35), transparent 55%),
    radial-gradient(720rem 260rem at 70% 55%, rgba(42, 179, 184, 0.3), transparent 60%),
    linear-gradient(135deg, #eef6ff, #f8fafc);
  overflow: hidden;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(15, 23, 42, 0.55), transparent 55%),
    radial-gradient(450rem 240rem at 65% 30%, rgba(255, 255, 255, 0.7), transparent 70%);
  pointer-events: none;
}

.media-frame--dark {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(800rem 260rem at 20% 10%, rgba(255, 255, 255, 0.18), transparent 60%),
    linear-gradient(140deg, #1f1140, #3b1554 55%, #10183f);
}

.media-frame--video {
  background: #000;
}

.media-frame--video::after {
  content: none;
}

.media-frame--video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 12, 28, 0.45);
  z-index: 1;
  opacity: 1;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.media-frame--video.is-playing::before {
  opacity: 0;
}

.media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.media-frame--video .media-play {
  z-index: 2;
}

.media-frame--slider {
  background: #0b1220;
}

.media-frame--slider::after {
  content: none;
}

.media-frame--slider .swiper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.media-frame--slider .swiper.is-dragging {
  cursor: grabbing;
}

.media-frame--slider .swiper-wrapper {
  height: 100%;
  display: flex;
  transform: translate3d(0, 0, 0);
  transition: transform 520ms ease;
  will-change: transform;
}

.media-frame--slider .swiper.is-dragging .swiper-wrapper {
  transition: none;
}

.media-frame--slider .swiper-slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
}

.media-slide-link {
  display: block;
  width: 100%;
  height: 100%;
}

.media-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.media-frame--slider .swiper-nav {
  width: 34rem;
  height: 34rem;
  font-size: 22rem;
}

.media-frame--slider .swiper-prev {
  left: 10rem;
}

.media-frame--slider .swiper-next {
  right: 10rem;
}

.media-swiper-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12rem;
  padding: 12rem 14rem;
  background: linear-gradient(to top, rgba(3, 12, 28, 0.82), rgba(3, 12, 28, 0));
}

.media-swiper-title {
  color: #fff;
  font-weight: 900;
  font-size: 14rem;
  letter-spacing: 0.2rem;
  line-height: 1.1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}

.media-frame--slider .media-swiper-pagination {
  position: static;
  left: auto;
  bottom: auto;
  transform: none;
  background: transparent;
  border: 0;
  padding: 0;
  backdrop-filter: none;
}

.media-play {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon {
  width: 54rem;
  height: 54rem;
  border-radius: 999rem;
  background: rgba(10, 119, 197, 0.95);
  box-shadow: 0 18rem 35rem rgba(2, 11, 25, 0.2);
  position: relative;
}

.play-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-42%, -50%);
  width: 0;
  height: 0;
  border-top: 10rem solid transparent;
  border-bottom: 10rem solid transparent;
  border-left: 14rem solid #fff;
}

.media-play--light .play-icon--light {
  background: rgba(255, 255, 255, 0.9);
}

.media-play--light .play-icon--light::before {
  border-left-color: #2b1149;
}

.tabs {
  display: flex;
  align-items: center;
  gap: 8rem;
}

.tab {
  border: 1rem solid transparent;
  background: transparent;
  padding: 8rem 10rem;
  border-radius: 999rem;
  font-size: 13rem;
  font-weight: 800;
  cursor: pointer;
  color: var(--muted);
}

.tab.is-active {
  background: #eef6ff;
  border-color: rgba(10, 119, 197, 0.22);
  color: #0b4d7a;
}

.tab-body {
  padding: 10rem 16rem 0;
}

.tab-content {
  display: none;
}

.tab-content.is-active {
  display: block;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10rem;
}

.list-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14rem;
  padding: 10rem 10rem;
  border-radius: 14rem;
  border: 1rem solid #eef2f7;
  background: #fbfdff;
}

.list-item a {
  font-weight: 700;
  color: #1f2a44;
  font-size: 13rem;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}

.list-item time,
.tag {
  font-size: 12rem;
  color: var(--muted);
  white-space: nowrap;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4rem 8rem;
  border-radius: 999rem;
  background: #f1f5f9;
  border: 1rem solid #e2e8f0;
  font-weight: 700;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16rem;
}

.card-grid > .card {
  flex: 1 1 calc((100% - 32rem) / 3);
  min-width: 240rem;
}

.card {
  background: var(--surface);
  border: 1rem solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.card img {
    width: 100%;
    height: auto;
}

.card:hover {
  transform: translateY(-2rem);
  box-shadow: var(--shadow);
}

.card-media {
  position: relative;
  height: 250rem;
  background: linear-gradient(135deg, #e2e8f0, #f8fafc);
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 12, 28, 0.72), rgba(3, 12, 28, 0) 62%);
  pointer-events: none;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-media.bg-blue {
  background: radial-gradient(520rem 180rem at 30% 35%, rgba(72, 166, 255, 0.75), transparent 65%), linear-gradient(135deg, #0a77c5, #2ab3b8);
}

.card-media.bg-teal {
  background: radial-gradient(520rem 180rem at 30% 35%, rgba(42, 179, 184, 0.75), transparent 65%), linear-gradient(135deg, #0ea5e9, #14b8a6);
}

.card-media.bg-amber {
  background: radial-gradient(520rem 180rem at 30% 35%, rgba(251, 191, 36, 0.7), transparent 65%), linear-gradient(135deg, #f59e0b, #fb7185);
}

.card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 16rem 16rem 16rem;
}

.card-title {
  margin: 0 0 6rem;
  font-size: 15rem;
  font-weight: 900;
  color: #fff;
}

.card-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13rem;
}

.specialty-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14rem;
}

.specialty-grid > .specialty {
  flex: 1 1 calc((100% - 42rem) / 4);
  min-width: 220rem;
}

.specialty {
  background: var(--surface);
  border: 1rem solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 16rem 16rem 18rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.specialty-icon {
  width: 44rem;
  height: 44rem;
  border-radius: 14rem;
  background: #eafffb;
  border: 1rem solid rgba(42, 179, 184, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f766e;
}

.specialty-svg {
  width: 20rem;
  height: 20rem;
  display: block;
}

.glyph {
  width: 20rem;
  height: 20rem;
  position: relative;
  display: inline-block;
}

.glyph.heart::before,
.glyph.heart::after {
  content: "";
  position: absolute;
  width: 12rem;
  height: 12rem;
  background: currentColor;
  border-radius: 999rem 999rem 0 0;
  top: 2rem;
}

.glyph.heart::before {
  left: 0;
  transform: rotate(-45deg);
  transform-origin: 100% 100%;
}

.glyph.heart::after {
  right: 0;
  transform: rotate(45deg);
  transform-origin: 0 100%;
}

.glyph.baby::before {
  content: "";
  position: absolute;
  inset: 1rem 3rem 3rem;
  border: 2rem solid currentColor;
  border-radius: 999rem;
}

.glyph.baby::after {
  content: "";
  position: absolute;
  width: 8rem;
  height: 8rem;
  border-radius: 999rem;
  background: currentColor;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  opacity: 0.35;
}

.glyph.steth::before {
  content: "";
  position: absolute;
  left: 3rem;
  top: 1rem;
  width: 14rem;
  height: 14rem;
  border: 2rem solid currentColor;
  border-radius: 8rem;
  border-bottom-color: transparent;
}

.glyph.steth::after {
  content: "";
  position: absolute;
  left: 8rem;
  bottom: 0;
  width: 4rem;
  height: 7rem;
  border-radius: 999rem;
  background: currentColor;
}

.glyph.leaf::before {
  content: "";
  position: absolute;
  inset: 2rem;
  border-radius: 999rem 0 999rem 0;
  background: currentColor;
  transform: rotate(45deg);
  opacity: 0.85;
}

.glyph.dna::before {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 2rem solid currentColor;
  border-right: 2rem solid currentColor;
  border-radius: 999rem;
  opacity: 0.9;
}

.glyph.dna::after {
  content: "";
  position: absolute;
  left: 2rem;
  right: 2rem;
  top: 8rem;
  height: 2rem;
  background: currentColor;
  box-shadow: 0 6rem 0 currentColor;
  opacity: 0.55;
}

.glyph.globe::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 2rem solid currentColor;
  border-radius: 999rem;
}

.glyph.globe::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 1rem;
  bottom: 1rem;
  width: 2rem;
  background: currentColor;
  transform: translateX(-50%);
  opacity: 0.65;
}

.specialty-title {
  margin: 0;
  font-size: 14rem;
  font-weight: 900;
}

.specialty-text {
  margin: 0;
  color: var(--muted);
  font-size: 13rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.doctor-grid {
  display: flex;
  gap: 16rem;
  align-items: stretch;
}

.doctor-grid > .doctor-photo {
  flex: 1.15 1 0;
  min-width: 0;
}

.doctor-grid > .doctor-panel {
  flex: 1 1 0;
  min-width: 0;
}

.doctor-photo {
  border-radius: var(--radius-lg);
  border: 1rem solid var(--line);
  background:
    radial-gradient(720rem 260rem at 35% 18%, rgba(72, 166, 255, 0.35), transparent 60%),
    radial-gradient(720rem 260rem at 80% 70%, rgba(34, 197, 94, 0.25), transparent 62%),
    linear-gradient(135deg, #ffffff, #edf2ff);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.doctor-photo img {
    width: 100%;
    height: 100%;
}

.doctor-panel {
  background: var(--surface);
  border: 1rem solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.doctor-tabs {
  display: flex;
  gap: 8rem;
  padding: 14rem 16rem;
  border-bottom: 1rem solid var(--line);
  background: linear-gradient(to bottom, #ffffff, #fbfcff);
}

.dept-tab {
  border: 1rem solid transparent;
  background: transparent;
  padding: 8rem 10rem;
  border-radius: 999rem;
  font-weight: 900;
  cursor: pointer;
  color: var(--muted);
  font-size: 13rem;
}

.dept-tab.is-active {
  background: #eef6ff;
  border-color: rgba(10, 119, 197, 0.22);
  color: #0b4d7a;
}

.dept-body {
  padding: 12rem 16rem 16rem;
}

.dept-list {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10rem;
}

.dept-list.is-active {
  display: flex;
  flex-wrap: wrap;
}

.dept-list li {
  width: 49%;
}

.dept-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10rem;
  padding: 10rem 12rem;
  border-radius: 14rem;
  background: #fbfdff;
  border: 1rem solid #eef2f7;
  font-weight: 800;
  font-size: 13rem;
}

.dept-list li a p {
  margin: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
}

.dept-list li a::after {
  content: "›";
  color: var(--muted);
  font-weight: 900;
}

.imc-grid {
  display: flex;
  gap: 16rem;
}

.imc-grid > .panel:first-child {
  flex: 1.35 1 0;
  min-width: 0;
}

.imc-grid > .panel:last-child {
  flex: 1 1 0;
  min-width: 0;
}

.env-head-actions {
  display: inline-flex;
  align-items: center;
  gap: 8rem;
  padding: 4rem;
  border-radius: 999rem;
  border: 1rem solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10rem 24rem rgba(8, 10, 22, 0.22);
  backdrop-filter: blur(10rem);
}

.env-nav {
  width: 28rem;
  height: 28rem;
  border-radius: 999rem;
  border: 1rem solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.env-nav:hover {
  transform: translateY(-1rem);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

.env-nav:active {
  transform: translateY(0);
}

.env-nav:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4rem rgba(168, 85, 247, 0.28);
  border-color: rgba(168, 85, 247, 0.55);
}

.env-swiper-viewport {
  padding: 12rem 0 14rem;
  overflow: hidden;
}

.env-swiper-viewport .swiper-wrapper {
  display: flex;
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.env-swiper-viewport .swiper-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.env-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10rem;
  padding: 0 12rem;
}

.env-grid > .env-tile {
  flex: 0 0 calc((100% - 10rem) / 2);
}

.env-tile {
  border-radius: 14rem;
  overflow: hidden;
  border: 1rem solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  aspect-ratio: 4 / 3;
  position: relative;
  box-shadow: 0 10rem 24rem rgba(8, 10, 22, 0.18);
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.env-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 12, 28, 0.18), transparent 60%);
  pointer-events: none;
}

.env-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 220ms ease;
}

.env-tile:hover {
  transform: translateY(-2rem);
  box-shadow: 0 16rem 36rem rgba(8, 10, 22, 0.24);
  border-color: rgba(255, 255, 255, 0.16);
}

.env-tile:hover img {
  transform: scale(1.06);
}

.imc-cards {
  padding: 14rem 16rem 16rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10rem;
}

.imc-cards > .mini-card {
  flex: 0 0 calc((100% - 10rem) / 2);
}

.mini-card {
  border-radius: 14rem;
  border: 1rem solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(240rem 140rem at 30% 30%, rgba(255, 255, 255, 0.24), transparent 70%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  padding: 12rem 12rem 12rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  color: #fff;
}

.mini-card-title {
  font-weight: 900;
  font-size: 13rem;
}

.mini-card-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12rem;
  font-weight: 600;
}

.section-imc .panel {
  background: rgba(20, 18, 42, 0.25);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14rem 40rem rgba(43, 17, 73, 0.25);
}

.section-imc .panel-head {
  background: rgba(255, 255, 255, 0.06);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.section-imc .panel-title {
  color: #fff;
  height: 37rem;
  display: flex;
  align-items: center;
}

.section-imc .panel-link {
  color: rgba(255, 255, 255, 0.92);
}

.footnote-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14rem;
}

.footnote-grid > .footnote {
  flex: 1 1 calc((100% - 14rem) / 2);
  min-width: 260rem;
}

.footnote {
  background: var(--surface);
  border: 1rem solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 16rem 16rem 18rem;
}

.footnote-title {
  margin: 0 0 6rem;
  font-size: 14rem;
  font-weight: 900;
}

.footnote-text {
  margin: 0;
  color: var(--muted);
  font-size: 13rem;
}

.site-footer {
  padding-top: 30rem;
  background: #0b1220;
  color: rgba(255, 255, 255, 0.9);
}

.footer-grid {
  display: flex;
  gap: 22rem;
  padding-bottom: 18rem;
}

.footer-grid > .footer-col:first-child {
  flex: 1.1 1 0;
  min-width: 0;
}

.footer-grid > .footer-qr {
  flex: 0.9 1 0;
  min-width: 0;
}

.footer-brand {
  font-weight: 900;
  letter-spacing: 0.3rem;
  font-size: 15rem;
  margin-bottom: 10rem;
}

.footer-text {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13rem;
}

.footer-links {
  margin-top: 12rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  font-size: 12rem;
  padding: 8rem 10rem;
  border-radius: 999rem;
  border: 1rem solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.footer-qr {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 12rem;
  flex-wrap: wrap;
}

.qr {
  width: 122rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
  align-items: center;
}

.qr-box {
  width: 110rem;
  height: 110rem;
  border-radius: 14rem;
  border: 1rem solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 6rem, transparent 6rem 12rem);
}

.qr-box img {
    width: 100%;
    height: auto;
    border-radius: 14rem;
}

.qr-label {
  font-size: 12rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  border-top: 1rem solid rgba(255, 255, 255, 0.1);
  padding: 12rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12rem;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 12rem;
  color: rgba(255, 255, 255, 0.68);
}

.footer-logos {
  display: flex;
  gap: 10rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28rem;
  padding: 0 10rem;
  border-radius: 999rem;
  border: 1rem solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
  font-size: 12rem;
  letter-spacing: 0.4rem;
}

.page-hero {
  border-bottom: 1rem solid rgba(15, 23, 42, 0.08);
}

.page-hero-inner {
  padding: 20rem 0;
}

.page-hero--detail .page-hero-inner {
  padding: 20rem 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8rem;
  font-size: 14rem;
  color: rgba(15, 23, 42, 0.7);
  font-weight: 700;
  flex-wrap: wrap;
}

.breadcrumb::before {
  content: "";
  width: 14rem;
  height: 14rem;
  flex: 0 0 14rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 21s7-5.1 7-11a7 7 0 1 0-14 0c0 5.9 7 11 7 11Z' stroke='%23111827' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M12 12.2a2.2 2.2 0 1 0 0-4.4 2.2 2.2 0 0 0 0 4.4Z' fill='%23111827' opacity='.65'/%3E%3C/svg%3E")
    no-repeat center / contain;
  opacity: 0.55;
}

.breadcrumb a {
  color: rgba(15, 23, 42, 0.82);
}

.crumb-sep {
  opacity: 0.5;
}

.page-title {
  margin: 10rem 0 6rem;
  font-size: clamp(22rem, 2.2vw, 30rem);
  font-weight: 900;
  color: var(--text);
}

.page-sub {
  margin: 0;
  color: rgba(15, 23, 42, 0.68);
  font-weight: 650;
}

.page-layout {
  display: flex;
  gap: 16rem;
  align-items: flex-start;
}

.sidebar {
  flex: 0 0 260rem;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 12rem;
}

.side-panel {
  background: var(--surface);
  border: 1rem solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 14rem;
}

.side-panel--compact {
  padding: 12rem 14rem;
}

.side-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12rem;
  margin-bottom: 10rem;
}

.side-title {
  font-weight: 900;
  font-size: 16rem;
  color: rgba(15, 23, 42, 0.92);
  text-align: center;
}

.side-panel-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40rem;
  height: 36rem;
  border-radius: 12rem;
  border: 1rem solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.96);
  cursor: pointer;
  flex: 0 0 auto;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.side-panel.is-open .side-panel-toggle {
  border-color: rgba(135, 23, 135, 0.26);
  background: rgba(135, 23, 135, 0.06);
}

.side-panel-toggle:active {
  transform: translateY(1rem);
}

.side-panel-toggle-bars {
  width: 18rem;
  height: 12rem;
  position: relative;
}

.side-panel-toggle-bars::before,
.side-panel-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2rem;
  border-radius: 99rem;
  background: rgba(15, 23, 42, 0.9);
  transition: transform 220ms ease, top 220ms ease, bottom 220ms ease, box-shadow 220ms ease, background 160ms ease;
}

.side-panel-toggle-bars::before {
  top: 0;
  box-shadow: 0 5rem 0 rgba(15, 23, 42, 0.9);
}

.side-panel-toggle-bars::after {
  bottom: 0;
}

.side-panel.is-open .side-panel-toggle-bars::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  box-shadow: none;
  background: rgba(135, 23, 135, 0.92);
}

.side-panel.is-open .side-panel-toggle-bars::after {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
  background: rgba(135, 23, 135, 0.92);
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.side-link {
  padding: 10rem 12rem;
  border-radius: 12rem;
  border: 1rem solid rgba(15, 23, 42, 0.06);
  background: #fbfcff;
  font-weight: 750;
  font-size: 13rem;
  color: rgba(15, 23, 42, 0.82);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.side-link:hover {
  border-color: rgba(135, 23, 135, 0.25);
  background: rgba(135, 23, 135, 0.06);
  color: #871787;
}

.side-link.is-active {
  border-color: rgba(135, 23, 135, 0.32);
  background: rgba(135, 23, 135, 0.1);
  color: #871787;
}

.side-group {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.side-toggle {
  width: 100%;
  padding: 10rem 12rem;
  border-radius: 12rem;
  border: 1rem solid rgba(15, 23, 42, 0.06);
  background: #fbfcff;
  font-weight: 750;
  font-size: 13rem;
  color: rgba(15, 23, 42, 0.82);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10rem;
  cursor: pointer;
  text-align: left;
}

.side-toggle:hover {
  border-color: rgba(135, 23, 135, 0.25);
  background: rgba(135, 23, 135, 0.06);
  color: #871787;
}

.side-group.is-open .side-toggle {
  border-color: rgba(135, 23, 135, 0.32);
  background: rgba(135, 23, 135, 0.1);
  color: #871787;
}

.side-toggle-icon {
  width: 22rem;
  height: 22rem;
  border-radius: 999rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1rem solid rgba(135, 23, 135, 0.18);
  background: rgba(135, 23, 135, 0.06);
  color: rgba(135, 23, 135, 0.9);
  font-weight: 950;
  line-height: 1;
  flex: 0 0 22rem;
  transition: transform 180ms ease, background 160ms ease, border-color 160ms ease;
}

.side-subnav {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  padding-left: 10rem;
  margin-left: 10rem;
  border-left: 2rem solid rgba(135, 23, 135, 0.16);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-4rem);
  transition: max-height 240ms ease, opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.side-group.is-open .side-toggle-icon {
  transform: scale(1.08);
}

.side-group.is-open .side-subnav {
  max-height: 420rem;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.side-sublink {
  padding: 9rem 12rem;
  border-radius: 12rem;
  background: rgba(15, 23, 42, 0.02);
  font-weight: 750;
  font-size: 12rem;
  color: rgba(15, 23, 42, 0.78);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.side-sublink:hover {
  border-color: rgba(135, 23, 135, 0.24);
  background: rgba(135, 23, 135, 0.06);
  color: #871787;
}

.side-sublink.is-active {
  border-color: rgba(135, 23, 135, 0.32);
  background: rgba(135, 23, 135, 0.12);
  color: #871787;
}

.content {
  flex: 1 1 auto;
  min-width: 0;
}

.content-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12rem;
  padding: 12rem 6rem 14rem;
}

.content-title {
  margin: 0;
  font-size: 18rem;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.94);
}

.content-meta {
  font-size: 12rem;
  font-weight: 750;
  color: rgba(15, 23, 42, 0.56);
}

.post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14rem;
}

.post-grid > .post-card {
  flex: 1 1 calc((100% - 28rem) / 3);
  min-width: 220rem;
}

.post-card {
  background: var(--surface);
  border: 1rem solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.post-card:hover {
  transform: translateY(-2rem);
  box-shadow: var(--shadow);
}

.post-thumb {
  position: relative;
  background: #edf2f7;
  aspect-ratio: 4 / 3;
}

.post-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-body {
  padding: 14rem 14rem 12rem;
  display: flex;
  flex-direction: column;
  gap: 10rem;
}

.post-kicker {
  font-size: 11rem;
  font-weight: 900;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: rgba(135, 23, 135, 0.92);
}

.post-title {
  margin: 0;
  font-size: 14rem;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.95);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-meta {
  color: rgba(15, 23, 42, 0.58);
  font-size: 12rem;
  font-weight: 750;
}

.dot-sep {
  opacity: 0.6;
}

.pager {
  margin-top: 18rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
}

.pager-btn {
  padding: 9rem 12rem;
  border-radius: 12rem;
  border: 1rem solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.9);
  font-size: 12rem;
  font-weight: 850;
  color: rgba(15, 23, 42, 0.78);
}

.pager-btn:hover {
  border-color: rgba(135, 23, 135, 0.24);
  color: #871787;
}

.pager-btn.current {
  border-color: rgba(135, 23, 135, 0.32);
  background: rgba(135, 23, 135, 0.1);
  color: #871787;
}

.pager-btn.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.list-panel {
  background: var(--surface);
  border: 1rem solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.list-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14rem;
  padding: 14rem 16rem;
  border-top: 1rem solid rgba(15, 23, 42, 0.06);
  transition: background 160ms ease;
}

.list-row:first-child {
  border-top: 0;
}

.list-row:hover {
  background: rgba(135, 23, 135, 0.04);
}

.list-row-title {
  font-weight: 900;
  font-size: 14rem;
  color: rgba(15, 23, 42, 0.94);
  line-height: 1.25;
}

.list-row-sub {
  margin-top: 6rem;
  color: rgba(15, 23, 42, 0.66);
  font-weight: 650;
  font-size: 13rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.list-row-time {
  font-size: 12rem;
  font-weight: 850;
  color: rgba(15, 23, 42, 0.6);
  white-space: nowrap;
}

.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 14rem;
}

.timeline-item {
  display: flex;
  gap: 3rem;
  align-items: stretch;
  border-radius: 18rem;
  border: 1rem solid rgba(15, 23, 42, 0.08);
  background: #FFF;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.timeline-media {
  flex: 0 0 168rem;
  width: 168rem;
  border-radius: 7rem;
  overflow: hidden;
  border: 1rem solid rgba(15, 23, 42, 0.08);
  background: rgba(15, 23, 42, 0.04);
  box-shadow: 0 14rem 34rem rgba(15, 23, 42, 0.12);
  transform: translateZ(0);
}

.timeline-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
  transition: transform 180ms ease;
}

.timeline-item:hover {
  transform: translateY(-2rem);
  border-color: rgba(219, 39, 119, 0.22);
  box-shadow: 0 16rem 40rem rgba(15, 23, 42, 0.12);
}

.timeline-item:hover .timeline-img {
  transform: scale(1.03);
}

.timeline-date {
  display: inline-flex;
  align-items: center;
  height: 24rem;
  padding: 0 10rem;
  border-radius: 999rem;
  border: 1rem solid rgba(135, 23, 135, 0.16);
  background: rgba(135, 23, 135, 0.06);
  color: rgba(135, 23, 135, 0.92);
  font-size: 12rem;
  font-weight: 850;
}

.timeline-meta {
  display: flex;
  align-items: center;
  gap: 10rem;
}

.timeline-main {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  min-width: 0;
  flex: 1 1 auto;
  justify-content: center;
  padding: 12rem;
}

.timeline-arrow {
  flex: 0 0 auto;
  margin-left: 8rem;
  color: rgba(135, 23, 135, 0.7);
  font-weight: 900;
  font-size: 22rem;
  line-height: 1;
}

.timeline-title {
  font-weight: 900;
  font-size: 15rem;
  color: rgba(15, 23, 42, 0.92);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.timeline-sub {
  color: rgba(15, 23, 42, 0.66);
  font-size: 13rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.timeline-arrow {
  color: rgba(219, 39, 119, 0.9);
  font-weight: 900;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 10rem;
  color: rgba(15, 23, 42, 0.62);
  font-weight: 750;
  font-size: 12rem;
  margin-top: 10rem;
}

.article-head {
  padding: 18rem 18rem 16rem;
  background: linear-gradient(to bottom, rgba(248, 250, 252, 0.98), rgba(255, 255, 255, 0.98));
  border-bottom: 1rem solid rgba(15, 23, 42, 0.08);
  box-shadow: inset 0 -1rem 0 rgba(15, 23, 42, 0.02);
  text-align: center;
}

.article-title {
  margin: 0;
  font-size: clamp(24rem, 3.2vw, 32rem);
  font-weight: 950;
  color: rgba(15, 23, 42, 0.96);
  line-height: 1.2;
}

.article-head .article-meta {
  margin-top: 12rem;
  gap: 8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.article-head .article-meta .dot-sep {
  opacity: 0.32;
}

.article-head .article-meta time,
.article-head .article-meta span:not(.dot-sep) {
  display: inline-flex;
  align-items: center;
  padding: 4rem 10rem;
  border-radius: 999rem;
  border: 1rem solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.04);
  color: rgba(15, 23, 42, 0.78);
}

.article {
  background: var(--surface);
  border: 1rem solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 100%;
}

.article-lead {
  padding: 16rem 16rem 0;
}

.article-callout {
  border-radius: 14rem;
  border: 1rem solid rgba(135, 23, 135, 0.18);
  background: rgba(135, 23, 135, 0.06);
  padding: 12rem 14rem;
  font-weight: 750;
  color: rgba(15, 23, 42, 0.82);
}

.article-body {
  padding: 18rem 16rem 10rem;
  color: rgba(15, 23, 42, 0.82);
}

.article-body a {
  color: #0004ef;
}

.article-body img {
  max-width: 100%;
}

.article-body table{
  max-width: 100%;
}

.article-body > :first-child {
  margin-top: 0;
}

.article-body h2 {
  margin: 18rem 0 10rem;
  font-size: 16rem;
  font-weight: 950;
  color: rgba(15, 23, 42, 0.94);
}

.article-body p {
  margin: 10rem 0;
  line-height: 1.7;
}

.article-body ul {
  margin: 10rem 0 0;
  padding-left: 18rem;
  line-height: 1.7;
}

.article-figure {
  margin: 14rem 0 0;
  border-radius: 14rem;
  overflow: hidden;
  border: 1rem solid rgba(15, 23, 42, 0.08);
  background: #edf2f7;
}

.article-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.article-attachments {
  margin-top: 18rem;
  padding-top: 14rem;
  border-top: 1rem solid rgba(15, 23, 42, 0.08);
}

.attachments-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12rem;
  margin-bottom: 10rem;
}

.attachments-title {
  margin: 0;
  font-size: 14rem;
  font-weight: 950;
  color: rgba(15, 23, 42, 0.92);
}

.attachments-hint {
  font-size: 12rem;
  font-weight: 750;
  color: rgba(15, 23, 42, 0.56);
}

.attachments-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10rem;
}

.attachment-link {
  display: flex;
  align-items: center;
  gap: 12rem;
  padding: 12rem 12rem;
  border-radius: 14rem;
  border: 1rem solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.attachment-link:hover {
  transform: translateY(-1rem);
  border-color: rgba(135, 23, 135, 0.22);
  box-shadow: 0 14rem 30rem rgba(15, 23, 42, 0.12);
  background: #fff;
}

.attachment-icon {
  width: 34rem;
  height: 34rem;
  border-radius: 12rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(135, 23, 135, 0.95);
  background: rgba(135, 23, 135, 0.08);
  border: 1rem solid rgba(135, 23, 135, 0.14);
  flex: 0 0 34rem;
}

.attachment-name {
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 850;
  color: rgba(15, 23, 42, 0.9);
  font-size: 13rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.attachment-meta {
  flex: 0 0 auto;
  font-size: 12rem;
  font-weight: 850;
  color: rgba(15, 23, 42, 0.56);
  border-radius: 999rem;
  padding: 4rem 10rem;
  border: 1rem solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.04);
}

.article-actions {
  padding: 12rem 16rem 16rem;
  display: flex;
  gap: 10rem;
  border-top: 1rem solid rgba(15, 23, 42, 0.06);
}

.btn-primary,
.btn-outline {
  height: 38rem;
  padding: 0 14rem;
  border-radius: 12rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13rem;
  gap: 8rem;
}

.btn-primary {
  background: #871787;
  color: #fff;
  border: 1rem solid rgba(135, 23, 135, 0.22);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.92);
  color: rgba(15, 23, 42, 0.82);
  border: 1rem solid rgba(15, 23, 42, 0.12);
}

@media (max-width: 960px) {

  .dept-list li {
      width: 100%;
  }
  
  .article-head .article-meta .dot-sep {
      display: none;
  }

  .topbar-inner {
    flex-wrap: wrap;
  }

  .topbar-actions .topbar-link {
    display: none;
  }

  .brand-logo {
    height: 58rem;
    max-width: min(520rem, 72vw);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .navwrap {
    border-bottom: 0;
  }

  .nav-inner {
    position: relative;
    padding: 0;
  }

  .mainnav {
    display: flex;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin-top: 10rem;
    padding: 10rem;
    border-radius: 18rem;
    border: 1rem solid rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22rem 48rem rgba(15, 23, 42, 0.18);
    max-height: 0;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 10rem;
    z-index: 70;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6rem) scale(0.98);
    pointer-events: none;
    transition:
      max-height 240ms ease,
      opacity 180ms ease,
      transform 180ms ease,
      visibility 0ms linear 240ms;
  }

  .mainnav.is-open {
    max-height: calc(100vh - 150rem);
    overflow: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    transition:
      max-height 240ms ease,
      opacity 180ms ease,
      transform 180ms ease,
      visibility 0ms linear 0ms;
  }

  .nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12rem 12rem;
    border-radius: 14rem;
    background: rgba(15, 23, 42, 0.035);
    border-color: rgba(15, 23, 42, 0.08);
    font-weight: 900;
  }

  .nav-item.is-active {
    background: #871787;
    border-color: rgba(135, 23, 135, 0.28);
  }

  .nav-group {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .nav-group > .nav-item {
    border-color: rgba(15, 23, 42, 0.08);
    padding: 12rem 12rem;
  }

  .nav-dropdown {
    display: none;
  }

  .nav-subitem {
    justify-content: flex-start;
    white-space: normal;
    padding: 10rem 10rem;
    border-radius: 12rem;
    border: 1rem solid rgba(15, 23, 42, 0.06);
    background: rgba(255, 255, 255, 0.96);
    font-weight: 800;
    color: rgba(15, 23, 42, 0.88);
  }

  .hero-swiper .swiper-slide {
    min-height: 320rem;
  }

  .swiper-nav {
    width: 36rem;
    height: 36rem;
    font-size: 24rem;
  }

  .cta {
    margin-top: -18rem;
  }

  .cta-grid {
    flex-direction: row;
  }

  .split-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-grid > .cta-btn {
    flex: 1 1 100%;
    min-width: 0;
  }

  .split-grid > .panel {
    flex: 0 0 auto !important;
    width: 100%;
  }

  .card-grid > .card {
    flex-basis: 100%;
    min-width: 0;
  }

  .specialty-grid > .specialty {
    flex-basis: 100%;
    min-width: 0;
  }

  .doctor-grid,
  .imc-grid,
  .footnote-grid,
  .footer-grid {
    flex-direction: column;
  }

  .doctor-grid > .doctor-photo,
  .doctor-grid > .doctor-panel,
  .imc-grid > .panel {
    flex: 0 0 auto !important;
    width: 100%;
  }

  .footnote-grid > .footnote {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
  }

  .footer-grid > .footer-col:first-child,
  .footer-grid > .footer-qr {
    flex: 0 0 auto !important;
    width: 100%;
  }

  .footer-qr {
    justify-content: center;
  }

  .page-layout {
    flex-direction: column;
  }

  .sidebar {
    flex: 0 0 auto;
    width: 100%;
  }

  .side-title {
    text-align: left;
  }

  .side-nav {
    display: flex;
    flex-direction: column;
    gap: 8rem;
  }

  .side-link {
    width: 100%;
    white-space: normal;
  }

  .side-group {
    width: 100%;
  }

  .side-toggle {
    width: 100%;
    white-space: normal;
  }

  .side-subnav {
    padding-left: 12rem;
    margin-left: 12rem;
    border-left: 2rem solid rgba(135, 23, 135, 0.16);
  }

  .side-panel-toggle {
    display: inline-flex;
  }

  .side-panel .side-nav {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6rem) scale(0.98);
    pointer-events: none;
    transition: max-height 240ms ease, opacity 180ms ease, transform 180ms ease;
  }

  .side-panel.is-open .side-nav {
    max-height: 560rem;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .post-grid {
    gap: 12rem;
  }

  .post-grid > .post-card {
    flex-basis: calc((100% - 12rem) / 2);
    min-width: 0;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 28rem));
  }

  .brand-logo {
    height: 50rem;
  }

  .tabs,
  .doctor-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tab,
  .dept-tab {
    white-space: nowrap;
  }

  .section {
    padding: 30rem 0;
  }

  .section-muted {
    padding: 12rem 0;
  }

  .section#clinical {
    padding: 0 0 30rem 0;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10rem;
  }

  .cta-grid {
    flex-direction: row;
    gap: 12rem;
  }

  .cta-grid > .cta-btn {
    flex-basis: calc((100% - 12rem) / 2);
    min-width: 0;
  }

  .cta-btn {
    padding: 14rem 14rem;
    justify-content: flex-start;
  }

  .card-grid,
  .specialty-grid,
  .post-grid {
    gap: 12rem;
  }
}

@media (max-width: 520px) {

  .section-imc .imc-video .panel-head {
    display: none;
  }
  .container {
    width: min(var(--container), calc(100% - 24rem));
  }

  .topbar-inner {
    gap: 12rem;
  }

  .topbar-actions {
    gap: 10rem;
  }

  .brand-logo {
    height: 44rem;
    max-width: 78vw;
  }

  .swiper-prev {
    left: 10rem;
  }

  .swiper-next {
    right: 10rem;
  }

  .swiper-pagination {
    bottom: 14rem;
  }

  .hero-swiper .swiper-slide {
    min-height: 250rem;
  }

  .cta-grid {
    flex-direction: row;
  }

  .cta-grid > .cta-btn {
    flex-basis: calc((100% - 12rem) / 2);
    min-width: 0;
    font-size: 13rem;
    display: flex;
    justify-content: center;
  }

  .imc-cards {
    flex-direction: row;
  }

  .imc-cards > .mini-card {
    flex-basis: 100%;
  }

  .post-grid > .post-card {
    flex-basis: 100%;
  }

  .env-grid {
    padding: 0 8rem;
    gap: 8rem;
  }

  .list-row {
    flex-direction: column;
    gap: 8rem;
  }

  .timeline-item {
    flex-direction: column;
    align-items: stretch;
    gap: 12rem;
  }

  .timeline-media {
    flex: 0 0 auto;
    width: 100%;
    border-radius: 16rem;
  }

  .timeline-arrow {
    display: none;
  }

  .article-head {
    padding: 16rem 14rem 14rem;
  }

  .article-body {
    padding: 16rem 14rem 10rem;
  }

  .qr {
    width: 112rem;
  }

  .qr-box {
    width: 102rem;
    height: 102rem;
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 961rem) {
  .nav-toggle {
    display: none;
  }

  .mainnav {
    display: flex;
    padding-top: 0;
  }

  .mainnav.is-open {
    flex-direction: row;
    align-items: center;
    gap: 6rem;
    padding-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
