:root {
  --primary: #0B3A5B;
  --secondary: #1976D2;
  --accent: #C9A646;
  --bg: #FFFFFF;
  --soft: #F6F8FA;
  --text: #374151;
  --muted: #6B7280;
  --line: #E5EAF0;
  --shadow: 0 18px 45px rgba(11, 58, 91, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

body.nav-open {
  overflow: hidden;
}

.lang-en {
  display: none !important;
}

html[data-language="en"] .lang-zh {
  display: none !important;
}

html[data-language="en"] .lang-en {
  display: revert !important;
}

html[data-language="en"] span.lang-en,
html[data-language="en"] strong.lang-en,
html[data-language="en"] small.lang-en {
  display: inline !important;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--primary);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.soft-section {
  background: var(--soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(11, 58, 91, 0.08);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  flex: 0 0 auto;
}

.brand-mark {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  flex: 0 0 auto;
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1vw, 16px);
  font-size: 13.5px;
  color: #263746;
}

.site-nav a {
  position: relative;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  width: 100%;
}

.nav-submit {
  padding: 9px 14px;
  color: #fff !important;
  background: var(--primary);
  border-radius: var(--radius);
}

.nav-submit::after {
  display: none;
}

.country-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(11, 58, 91, 0.06);
  flex: 0 0 auto;
}

.country-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.country-btn:hover {
  transform: translateY(-1px);
}

.country-btn.active {
  background: var(--soft);
  box-shadow: inset 0 0 0 1px rgba(25, 118, 210, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--primary);
}

.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, #fff 0%, #fff 52%, #f7fafc 52%, #f7fafc 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 70px;
}

.hero-grid > * {
  min-width: 0;
  overflow-wrap: break-word;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--primary);
  line-height: 1.25;
  letter-spacing: 0;
}

h1 {
  max-width: 100%;
  font-size: 28px;
  font-weight: 800;
  overflow-wrap: break-word;
}

h2 {
  font-size: 34px;
  font-weight: 800;
}

h3 {
  font-size: 20px;
  font-weight: 700;
}

p {
  margin: 0;
}

.hero-subtitle {
  margin-top: 18px;
  color: var(--primary);
  font-size: 22px;
  font-weight: 600;
}

.hero-text {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  color: #fff;
  background: var(--primary);
}

.btn-primary:hover {
  background: #082f4b;
}

.btn-secondary {
  color: var(--primary);
  background: #fff;
  border-color: var(--line);
}

.btn-small {
  min-height: 40px;
  padding: 9px 15px;
  color: #fff;
  background: var(--primary);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 560px;
  margin-top: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.hero-stats div {
  padding: 18px;
}

.hero-stats div + div {
  border-left: 1px solid var(--line);
}

.hero-stats strong {
  display: block;
  color: var(--primary);
  font-size: 18px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  min-width: 0;
}

.hero-showcase {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.showcase-window {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--soft);
  border-radius: calc(var(--radius) - 2px);
}

.showcase-window img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: showcaseFade 15s infinite;
}

.showcase-window img:nth-child(2) {
  object-position: center 18%;
  animation-delay: 5s;
}

.showcase-window img:nth-child(3) {
  animation-delay: 10s;
}

.showcase-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.showcase-meta div {
  min-width: 0;
  padding: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
}

.showcase-meta span {
  display: block;
  margin-bottom: 6px;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 800;
}

.showcase-meta strong {
  display: block;
  color: var(--primary);
  font-size: 15px;
  line-height: 1.45;
}

@keyframes showcaseFade {
  0%,
  30% {
    opacity: 1;
  }

  36%,
  100% {
    opacity: 0;
  }
}

.visual-panel {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.visual-toolbar {
  display: flex;
  gap: 8px;
}

.visual-toolbar span {
  width: 10px;
  height: 10px;
  background: var(--line);
  border-radius: 50%;
}

.tooth-graphic {
  position: relative;
  width: 190px;
  height: 220px;
  margin: 70px auto 42px;
}

.tooth-crown {
  position: absolute;
  left: 21px;
  top: 0;
  width: 148px;
  height: 120px;
  border: 10px solid #dbe9f7;
  border-bottom: 0;
  border-radius: 72px 72px 42px 42px;
  background: #fff;
}

.tooth-root {
  position: absolute;
  top: 101px;
  width: 76px;
  height: 112px;
  border: 10px solid #dbe9f7;
  border-top: 0;
  background: #fff;
}

.tooth-root.left {
  left: 27px;
  border-radius: 0 0 44px 30px;
  transform: rotate(9deg);
}

.tooth-root.right {
  right: 27px;
  border-radius: 0 0 30px 44px;
  transform: rotate(-9deg);
}

.visual-lines {
  display: grid;
  gap: 12px;
}

.visual-lines span {
  display: block;
  height: 10px;
  border-radius: 99px;
  background: #eef3f8;
}

.visual-lines span:nth-child(2) {
  width: 78%;
}

.visual-lines span:nth-child(3) {
  width: 54%;
  background: rgba(201, 166, 70, 0.22);
}

.visual-card {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(11, 58, 91, 0.1);
}

.visual-card strong {
  display: block;
  color: var(--primary);
}

.visual-card span {
  color: var(--muted);
  font-size: 13px;
}

.visual-card-bottom {
  border-left: 4px solid var(--accent);
}

.about-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.studio-band {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.studio-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 40px;
  align-items: center;
}

.studio-preview-copy p {
  margin-top: 14px;
  color: var(--muted);
}

.studio-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.studio-preview-panel {
  display: grid;
  grid-template-columns: minmax(132px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  align-items: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.studio-preview-panel img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center 14%;
  border-radius: calc(var(--radius) - 2px);
}

.studio-preview-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: center;
}

.studio-preview-list span {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 12px;
  color: var(--primary);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.studio-hero {
  background:
    linear-gradient(90deg, #fff 0%, #fff 52%, #f7fafc 52%, #f7fafc 100%);
}

.studio-hero-compact {
  min-height: auto;
}

.studio-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.58fr);
  gap: 48px;
  align-items: center;
}

.studio-portrait-card {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.studio-portrait-card img {
  display: block;
  width: 100%;
  max-width: 140px;
  height: 107px;
  object-fit: cover;
  object-position: center 12%;
  border-radius: calc(var(--radius) - 2px);
  margin: 0 auto;
}

.studio-portrait-compact {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  justify-self: end;
  max-width: 420px;
  padding: 14px;
}

.studio-portrait-compact img {
  height: 140px;
}

.studio-portrait-card div {
  margin-top: 12px;
}

.studio-portrait-compact div {
  margin-top: 0;
}

.studio-portrait-card strong,
.studio-portrait-card span {
  display: block;
}

.studio-portrait-card strong {
  color: var(--primary);
  font-size: 20px;
}

.studio-portrait-compact strong {
  font-size: 18px;
  line-height: 1.35;
}

.studio-portrait-card span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.6;
}

.studio-portrait-compact span {
  line-height: 1.5;
}

.studio-section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.studio-sticky-head {
  position: sticky;
  top: 104px;
}

.studio-sticky-head p {
  margin-top: 12px;
  color: var(--muted);
}

.profile-timeline {
  display: grid;
  gap: 14px;
}

.profile-timeline article,
.studio-card-grid article,
.studio-column-grid article,
.book-grid article,
.founder-upload-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.profile-timeline article {
  padding: 22px;
}

.profile-timeline span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent);
  font-weight: 800;
}

.profile-timeline p,
.studio-card-grid p,
.studio-column-grid p,
.book-grid p {
  margin-top: 10px;
  color: var(--muted);
}

.studio-photo-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.studio-photo-wall figure {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.studio-photo-wall img {
  display: block;
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.studio-photo-wall figure:nth-child(2) img,
.studio-photo-wall figure:nth-child(3) img,
.studio-photo-wall figure:nth-child(4) img {
  object-position: top center;
}

.studio-photo-wall figcaption {
  padding: 12px 14px;
  color: var(--primary);
  font-weight: 800;
}

.studio-card-grid,
.studio-column-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.studio-card-grid article,
.studio-column-grid article {
  padding: 24px;
}

.studio-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.studio-directory-card {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.studio-directory-card:hover {
  transform: translateY(-3px);
  border-color: rgba(25, 118, 210, 0.35);
  box-shadow: var(--shadow);
}

.studio-directory-card > span {
  color: var(--accent);
  font-weight: 800;
}

.studio-directory-card p {
  color: var(--muted);
}

.founder-card {
  border-color: rgba(201, 166, 70, 0.42);
  background: linear-gradient(180deg, #fff, #fffcf5);
}

.studio-detail-hero {
  padding: 64px 0;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.studio-detail-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.studio-detail-nav {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.studio-detail-nav a {
  padding: 10px 12px;
  color: var(--primary);
  background: var(--soft);
  border-radius: calc(var(--radius) - 2px);
  font-weight: 700;
}

.studio-detail-content {
  display: grid;
  gap: 16px;
}

.studio-detail-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.studio-detail-card p,
.studio-detail-card li {
  color: var(--muted);
}

.studio-detail-card p {
  margin-top: 10px;
}

.studio-detail-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.book-grid {
  display: grid;
  gap: 16px;
}

.book-grid article {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  align-items: center;
}

.book-grid img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
}

.founder-upload-box {
  padding: 24px;
}

.founder-lock,
.founder-upload-form {
  display: grid;
  gap: 16px;
}

.founder-lock label,
.founder-upload-form label {
  display: grid;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
}

.founder-lock input,
.founder-upload-form input,
.founder-upload-form select,
.founder-upload-form textarea {
  width: 100%;
}

.founder-lock p {
  color: var(--muted);
}

.founder-upload-form[hidden] {
  display: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 44px;
  align-items: center;
}

.profile-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  align-items: center;
}

.profile-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 4px solid rgba(201, 166, 70, 0.3);
  object-fit: cover;
  object-position: center;
  flex: 0 0 auto;
}

.profile-card p:last-child {
  margin-top: 12px;
  color: var(--muted);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud span,
.mini-tags span,
.submit-types span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  color: var(--secondary);
  background: #eef6ff;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head p {
  margin-top: 12px;
  color: var(--muted);
}

.article-hero {
  background:
    linear-gradient(90deg, #fff 0%, #fff 56%, #f7fafc 56%, #f7fafc 100%);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 44px;
  align-items: center;
}

.article-hero h1 {
  max-width: 780px;
  font-size: 46px;
}

.source-card,
.digest-nav,
.digest-article,
.article-note {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(11, 58, 91, 0.05);
}

.source-card {
  padding: 26px;
}

.source-card h2,
.digest-nav h2,
.article-note h2 {
  font-size: 22px;
}

.source-card p {
  margin: 12px 0 20px;
  color: var(--muted);
}

.digest-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.digest-nav {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 10px;
  padding: 22px;
}

.digest-nav a {
  display: block;
  padding: 10px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.digest-nav a:hover {
  color: var(--secondary);
}

.digest-list {
  display: grid;
  gap: 24px;
}

.digest-article {
  scroll-margin-top: 100px;
  padding: 32px;
}

.digest-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}

.digest-article h2 {
  font-size: 28px;
}

.lead {
  margin-top: 14px;
  color: #243746;
  font-size: 18px;
  font-weight: 600;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.insight-grid section {
  padding: 20px;
  background: var(--soft);
  border-radius: var(--radius);
}

.insight-grid h3 {
  font-size: 18px;
}

.insight-grid p,
.article-note p {
  margin-top: 10px;
  color: var(--muted);
}

.takeaway {
  margin-top: 22px;
  padding: 16px;
  color: var(--primary);
  background: rgba(25, 118, 210, 0.08);
  border-left: 4px solid var(--secondary);
  border-radius: var(--radius);
}

.article-note {
  padding: 30px;
}

.split-head {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.feature-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card,
.content-card,
.research-card,
.news-list article,
.video-card,
.doctors-box,
.case-detail,
.detail-aside,
.submit-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-card,
.content-card,
.research-card,
.news-list article {
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover,
.content-card:hover,
.research-card:hover,
.news-list article:hover {
  transform: translateY(-3px);
  border-color: rgba(25, 118, 210, 0.35);
  box-shadow: var(--shadow);
}

.case-cover {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  min-height: 160px;
  margin: -24px -24px 18px;
  padding: 18px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 58, 91, 0.88), rgba(25, 118, 210, 0.64)),
    linear-gradient(45deg, #dbe9f7, #ffffff);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}

.case-cover::before {
  content: "";
  position: absolute;
  inset: 26px 34px auto auto;
  width: 86px;
  height: 86px;
  border: 10px solid rgba(255, 255, 255, 0.32);
  border-radius: 50% 50% 36% 36%;
}

.implant-cover {
  background:
    linear-gradient(135deg, rgba(11, 58, 91, 0.88), rgba(201, 166, 70, 0.55)),
    linear-gradient(45deg, #f5efe0, #ffffff);
}

.esthetic-cover {
  background:
    linear-gradient(135deg, rgba(11, 58, 91, 0.86), rgba(68, 143, 123, 0.58)),
    linear-gradient(45deg, #e8f5f2, #ffffff);
}

.case-cover-mark,
.case-cover-plus {
  position: relative;
  z-index: 1;
}

.case-cover-mark {
  font-weight: 800;
}

.case-cover-plus {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
}

.author-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.author-avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.author-strip strong,
.author-strip small {
  display: block;
  line-height: 1.35;
}

.author-strip strong {
  color: var(--primary);
}

.author-strip small {
  color: var(--muted);
  font-size: 12px;
}

.feature-card p,
.content-card p,
.research-card p,
.news-list p {
  margin-top: 12px;
  color: var(--muted);
}

.feature-card[style*="color:#fff"] p {
  color: rgba(255,255,255,0.85);
}

.feature-card a,
.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--secondary);
  font-weight: 700;
}

.feature-card[style*="color:#fff"] h3 {
  color: #fff;
}

.feature-card[style*="color:#fff"] a {
  color: #fff;
  background: rgba(255,255,255,0.2);
  padding: 4px 12px;
  border-radius: 6px;
}

.feature-card[style*="color:#fff"] a:hover {
  background: rgba(255,255,255,0.35);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--primary);
  background: #f3f7fb;
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  font-weight: 800;
}

.feature-card[style*="color:#fff"] .icon-box {
  background: rgba(255,255,255,0.25);
  border-left-color: rgba(255,255,255,0.6);
  color: #fff;
}

.filter-row,
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn,
.tab-btn {
  min-height: 40px;
  padding: 8px 14px;
  color: var(--primary);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.filter-btn.active,
.tab-btn.active {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.pill {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 10px;
  color: var(--secondary);
  background: #eef6ff;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 800;
}

.pill.gold {
  color: #6f5a13;
  background: rgba(201, 166, 70, 0.18);
}

.meta {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.news-more {
  margin-top: 28px;
  text-align: center;
}

.news-more a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--secondary);
  font-weight: 700;
  font-size: 15px;
  transition: gap 0.2s ease;
}

.news-more a:hover {
  gap: 10px;
}

.event-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.event-card:hover {
  transform: translateY(-3px);
  border-color: rgba(25, 118, 210, 0.35);
  box-shadow: var(--shadow);
}

.event-cover {
  display: grid;
  align-content: end;
  min-height: 190px;
  padding: 22px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 58, 91, 0.92), rgba(25, 118, 210, 0.58)),
    linear-gradient(45deg, #e9f2fb, #ffffff);
}

.event-cover span,
.event-cover strong,
.event-cover em {
  display: block;
  position: relative;
  z-index: 1;
}

.event-cover span {
  font-size: 13px;
  font-weight: 800;
}

.event-cover strong {
  max-width: 280px;
  margin-top: 8px;
  font-size: 24px;
  line-height: 1.2;
}

.event-cover em {
  margin-top: 12px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.shanghai-cover,
.prague-cover {
  background:
    linear-gradient(135deg, rgba(11, 58, 91, 0.92), rgba(201, 166, 70, 0.58)),
    linear-gradient(45deg, #f5efe0, #ffffff);
}

.xian-cover,
.aapd-cover {
  background:
    linear-gradient(135deg, rgba(11, 58, 91, 0.9), rgba(68, 143, 123, 0.58)),
    linear-gradient(45deg, #e8f5f2, #ffffff);
}

.ada-cover {
  background:
    linear-gradient(135deg, rgba(11, 58, 91, 0.92), rgba(102, 119, 168, 0.62)),
    linear-gradient(45deg, #eef1fa, #ffffff);
}

.event-body {
  padding: 22px;
}

.event-body p {
  margin-top: 12px;
  color: var(--muted);
}

.event-detail-list {
  display: grid;
  gap: 24px;
}

.event-detail {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  scroll-margin-top: 100px;
}

.event-detail .event-cover {
  min-height: 220px;
}

.event-detail-body {
  padding: 28px;
}

.event-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 22px 0;
}

.event-info-box {
  padding: 18px;
  background: var(--soft);
  border-radius: var(--radius);
}

.event-info-box h3 {
  font-size: 18px;
}

.event-info-box p,
.event-detail-body p {
  margin-top: 10px;
  color: var(--muted);
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.info-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 20px;
}

.info-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.info-list dt {
  color: var(--muted);
}

.info-list dd {
  margin: 0;
  color: var(--primary);
  font-weight: 700;
  text-align: right;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.journal {
  margin-bottom: 12px;
  color: var(--accent);
  font-weight: 800;
}

.video-layout,
.doctors-box,
.submit-grid,
.detail-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: center;
}

.video-layout p,
.doctors-box p,
.submit-grid p {
  margin-top: 12px;
  color: var(--muted);
}

.doctors-intro .btn {
  margin-top: 24px;
}

.city-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.city-summary span {
  display: block;
  min-width: 0;
  padding: 12px;
  color: var(--muted);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 12px;
}

.city-summary strong {
  display: block;
  color: var(--primary);
  font-size: 20px;
  line-height: 1.1;
}

.doctors-network {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.world-map-card {
  padding: 16px;
  background: linear-gradient(180deg, #fff, #f7fafc);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-grid {
  position: relative;
  min-height: 265px;
  overflow: hidden;
  background:
    linear-gradient(rgba(25, 118, 210, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 118, 210, 0.05) 1px, transparent 1px),
    #f8fbfd;
  background-size: 36px 36px;
  border: 1px solid rgba(25, 118, 210, 0.08);
  border-radius: calc(var(--radius) - 2px);
}

.map-continent {
  position: absolute;
  display: block;
  background: rgba(11, 58, 91, 0.08);
  border: 1px solid rgba(11, 58, 91, 0.06);
}

.map-asia {
  right: 18%;
  top: 28%;
  width: 29%;
  height: 38%;
  border-radius: 48% 52% 44% 56%;
  transform: rotate(-12deg);
}

.map-europe {
  right: 42%;
  top: 24%;
  width: 15%;
  height: 22%;
  border-radius: 46% 54% 56% 44%;
  transform: rotate(14deg);
}

.map-north-america {
  left: 13%;
  top: 24%;
  width: 26%;
  height: 34%;
  border-radius: 56% 44% 48% 52%;
  transform: rotate(10deg);
}

.map-pacific {
  left: 46%;
  bottom: 16%;
  width: 10%;
  height: 14%;
  border-radius: 50%;
}

.map-pin {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.map-pin::before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--accent);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(201, 166, 70, 0.18), 0 8px 18px rgba(11, 58, 91, 0.15);
}

.pin-xian {
  right: 27%;
  top: 44%;
}

.pin-beijing {
  right: 24%;
  top: 35%;
}

.pin-shanghai {
  right: 20%;
  top: 50%;
}

.pin-seattle {
  left: 20%;
  top: 35%;
}

.map-caption {
  display: grid;
  grid-template-columns: minmax(140px, 0.38fr) minmax(0, 1fr);
  gap: 14px;
  margin-top: 14px;
  align-items: center;
}

.map-caption strong {
  color: var(--primary);
  font-size: 17px;
}

.map-caption span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.city-directory {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.city-card {
  min-width: 0;
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.city-card:hover,
.city-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(25, 118, 210, 0.28);
  box-shadow: var(--shadow);
}

.city-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.city-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 21px;
  flex: 0 0 auto;
}

.city-head strong {
  display: block;
  color: var(--primary);
  font-size: 17px;
  line-height: 1.25;
}

.city-head span,
.city-members span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.city-members {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.city-members p {
  margin: 0;
  padding: 10px 0 0;
  color: var(--primary);
}

.city-members b {
  display: block;
  color: var(--primary);
  font-size: 14px;
  line-height: 1.35;
}

.video-card {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 190px;
  padding: 28px;
}

.play-circle {
  position: relative;
  width: 88px;
  height: 88px;
  flex: 0 0 auto;
  background: var(--primary);
  border-radius: 50%;
}

.play-circle::after {
  content: "";
  position: absolute;
  left: 36px;
  top: 27px;
  width: 0;
  height: 0;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 24px solid #fff;
}

.doctors-box {
  padding: 34px;
  gap: 40px;
  align-items: start;
}

.doctors-intro {
  min-width: 0;
}

.detail-layout {
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
}

.case-detail {
  padding: 34px;
}

.article-head {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.case-detail section {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.case-detail section p {
  margin-top: 10px;
  color: var(--muted);
}

.privacy-note,
.member-gate,
.discussion-box,
.disclaimer {
  margin-top: 22px;
  padding: 16px;
  border-radius: var(--radius);
}

.member-gate {
  display: grid;
  gap: 8px;
  color: var(--primary);
  background: #fff;
  border: 1px solid rgba(25, 118, 210, 0.22);
}

.member-gate p {
  color: var(--muted);
}

.member-gate .btn {
  width: fit-content;
  min-height: 40px;
  padding: 8px 14px;
}

.privacy-note {
  color: var(--primary);
  background: #eef6ff;
  border-left: 4px solid var(--secondary);
}

.discussion-box {
  color: var(--muted);
  background: var(--soft);
}

.disclaimer {
  color: #634c08;
  background: rgba(201, 166, 70, 0.18);
  font-weight: 700;
}

.detail-aside {
  position: sticky;
  top: 100px;
  padding: 24px;
}

.detail-aside ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.submit-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.submit-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.submit-guidelines {
  margin-top: 28px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.submit-guidelines h3 {
  font-size: 20px;
}

.submit-guidelines ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.submit-guidelines li + li {
  margin-top: 8px;
}

.submit-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.submit-form label {
  display: grid;
  gap: 7px;
  color: var(--primary);
  font-weight: 700;
}

.submit-form input,
.submit-form select,
.submit-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--text);
  background: #fff;
}

.submit-form input:focus,
.submit-form select:focus,
.submit-form textarea:focus {
  outline: 3px solid rgba(25, 118, 210, 0.15);
  border-color: var(--secondary);
}

.paper-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.check-row {
  grid-template-columns: 20px 1fr !important;
  align-items: start;
  color: var(--text) !important;
  font-size: 14px;
  font-weight: 500 !important;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.upload-section {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.upload-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.upload-head h3 {
  font-size: 18px;
}

.upload-head p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.upload-head span {
  flex: 0 0 auto;
  padding: 6px 10px;
  color: var(--primary);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 800;
}

.upload-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.upload-tile {
  position: relative;
  display: grid !important;
  place-items: center;
  min-height: 142px;
  padding: 16px;
  text-align: center;
  color: var(--primary) !important;
  background: #fff;
  border: 1px dashed rgba(25, 118, 210, 0.45);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.upload-tile:hover {
  transform: translateY(-2px);
  border-color: var(--secondary);
}

.upload-tile input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-plus {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.upload-tile strong,
.upload-tile small {
  display: block;
}

.upload-tile small {
  color: var(--muted);
  font-size: 12px;
}

.upload-tile.has-file {
  background: #eef6ff;
  border-style: solid;
}

.upload-tile.has-file .upload-plus {
  background: var(--secondary);
}

.pdf-upload {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.paper-upload {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 14px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pdf-upload span,
.pdf-upload small {
  display: block;
}

.pdf-upload small {
  color: var(--muted);
  font-weight: 500;
}

.form-status {
  min-height: 24px;
  color: var(--secondary);
  font-weight: 700;
}

.submitted-card {
  position: relative;
}

.submitted-card::after {
  content: "New";
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 8px;
  color: #fff;
  background: var(--secondary);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.submitted-cover {
  background: linear-gradient(135deg, #0b3a5b, #1976d2);
}

.news-card-emoji {
  height: 100%;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: var(--primary);
  font-weight: 800;
}

.share-section {
  padding: 0 0 64px;
  background: #fff;
}

.share-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px 32px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbfd;
}

.share-panel h2 {
  margin-top: 8px;
  font-size: 26px;
}

.share-panel p {
  max-width: 620px;
  margin-top: 10px;
  color: var(--muted);
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.share-actions .btn {
  min-height: 44px;
}

.share-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: -8px 0 0;
  color: var(--secondary);
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  color: #d8e4ee;
  background: var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1.1fr;
  gap: 44px;
  padding: 54px 0 34px;
}

.footer-brand,
.footer-brand small,
.site-footer h3 {
  color: #fff;
}

.site-footer p,
.site-footer a {
  display: block;
  margin-top: 10px;
  color: #d8e4ee;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 20px 0 max(22px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #b9c8d5;
  font-size: 13px;
  line-height: 20px;
}

.footer-bottom > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #b9c8d5;
  line-height: 20px;
  min-width: 0;
  text-align: center;
}

.footer-bottom img {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  object-fit: contain;
  vertical-align: middle;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  color: #b9c8d5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #fff;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: none;
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--primary);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.back-top.show {
  display: block;
}

.studio-home .site-header {
  background: rgba(255, 255, 255, 0.9);
}

.studio-film-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  color: #fff;
  background: #0b3a5b;
}

.studio-film,
.studio-film-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-film {
  z-index: 0;
}

.studio-film-fallback {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(6, 31, 50, 0.76), rgba(6, 31, 50, 0.28)),
    url("doctors-clinics-showcase.jpg") center / cover;
}

.studio-film[src],
.studio-film:has(source) {
  z-index: 1;
}

.studio-film-overlay {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: end;
  padding: 120px 0 86px;
  background: linear-gradient(90deg, rgba(4, 21, 34, 0.76), rgba(4, 21, 34, 0.2) 58%, rgba(4, 21, 34, 0.18));
}

.studio-film-copy {
  max-width: 760px;
  margin-left: max(20px, calc((100vw - 1180px) / 2));
}

.studio-film-copy .eyebrow,
.studio-film-copy h1,
.studio-film-copy p {
  color: #fff;
}

.studio-film-copy h1 {
  max-width: 720px;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 1.08;
}

.studio-film-copy p {
  max-width: 610px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.film-play-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  margin-top: 32px;
  padding: 12px 18px;
  color: #0b3a5b;
  background: #fff;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.film-play-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.film-play-button span {
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #0b3a5b;
}

.centered-head {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered-head .eyebrow {
  justify-content: center;
}

.meet-team-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0 62px;
  background:
    linear-gradient(#4d644e 0 66%, #f7f5ee 66% 100%);
}

.meet-team-section .centered-head {
  margin-bottom: 120px;
}

.meet-team-section .eyebrow {
  display: inline-flex;
  position: relative;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.meet-team-section .eyebrow::before {
  display: none;
}

.meet-team-section .eyebrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 174px;
  height: 1px;
  background: rgba(255, 255, 255, 0.86);
  transform: translateX(-50%);
}

.meet-team-section h2 {
  font-size: 0;
}

.portrait-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
  align-items: start;
}

.portrait-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 580px;
  padding: 50px 40px 40px;
  overflow: hidden;
  color: #24282b;
  text-align: center;
  background: #fbfaf3;
  border: 1px solid rgba(77, 100, 78, 0.76);
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.portrait-tile img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 50%;
  transition: transform 0.25s ease;
}

.portrait-tile:nth-child(2) img {
  object-position: center;
}

.portrait-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(35, 50, 36, 0.16);
}

.portrait-tile div {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 430px;
  margin-top: 50px;
}

.portrait-tile h3 {
  color: #24282b;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: 0.22em;
}

.portrait-tile p {
  max-width: 350px;
  margin-top: 28px;
  color: #24282b;
  font-family: "Courier New", monospace;
  font-size: 19px;
  line-height: 1.9;
}

.portrait-tile .title-line {
  max-width: 380px;
  margin-top: 6px;
  margin-bottom: 0;
  color: #24282b;
  font-family: "Courier New", monospace;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.portrait-tile div p:first-of-type {
  margin-top: 24px;
}

.portrait-tile span {
  display: inline-flex;
  margin-top: auto;
  padding-top: 24px;
  padding-bottom: 8px;
  color: #24282b;
  border-bottom: 1px solid currentColor;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.daily-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 245px;
  gap: 16px;
}

.daily-gallery figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.daily-gallery .gallery-large {
  grid-row: span 2;
}

.daily-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.daily-gallery figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(6, 31, 50, 0.72);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.video-learning-card {
  min-width: 0;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  padding: 0;
  background: #0b3a5b;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-thumb:hover img {
  transform: scale(1.035);
  opacity: 1;
}

.video-learning-card h3 {
  margin-top: 18px;
}

.video-learning-card p {
  margin-top: 10px;
  color: var(--muted);
}

.small-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  background: rgba(11, 58, 91, 0.92);
}

.small-play::after {
  left: 27px;
  top: 20px;
  border-top-width: 12px;
  border-bottom-width: 12px;
  border-left-width: 18px;
}

.news-ticker {
  height: 360px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(11, 58, 91, 0.05);
}

.news-ticker-track {
  display: grid;
  animation: newsScroll 24s linear infinite;
}

.news-ticker:hover .news-ticker-track {
  animation-play-state: paused;
}

.news-ticker a {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
  min-height: 72px;
  padding: 0 24px;
  color: var(--primary);
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.news-ticker a:hover {
  color: var(--secondary);
  background: #f7fbfd;
}

.news-ticker span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

@keyframes newsScroll {
  0%,
  18% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-216px);
  }
}

.contact-section {
  background: linear-gradient(135deg, #0b3a5b, #315a70);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  color: #fff;
}

.contact-panel .eyebrow,
.contact-panel h2,
.contact-panel p {
  color: #fff;
}

.contact-panel p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-mail {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 12px 18px;
  color: #0b3a5b;
  background: #fff;
  border-radius: 8px;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 11px;
    font-size: 13px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .portrait-pair,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .meet-team-section {
    background:
      linear-gradient(#4d644e 0 54%, #f7f5ee 54% 100%);
  }

  .meet-team-section .centered-head {
    margin-bottom: 70px;
  }

  .portrait-pair {
    max-width: 680px;
    margin: 0 auto;
  }

  .daily-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .studio-preview,
  .studio-hero-grid {
    grid-template-columns: 1fr;
  }

  .studio-portrait-compact {
    grid-template-columns: 120px minmax(0, 1fr);
    justify-self: start;
    max-width: 520px;
  }

  .hero {
    background: #fff;
  }

  .studio-hero {
    background: #fff;
  }

  .hero-visual {
    width: min(100%, 680px);
  }
}

@media (max-width: 860px) {
  .section {
    padding: 64px 0;
  }

  .nav-toggle {
    display: block;
  }

  .country-switcher {
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    max-height: calc(100vh - 76px);
    overflow: auto;
    padding: 18px 20px 28px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
    gap: 0;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .nav-submit {
    margin-top: 12px;
    padding: 12px 14px !important;
    text-align: center;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-grid,
  .about-grid,
  .article-hero-grid,
  .studio-section-grid,
  .studio-card-grid,
  .studio-column-grid,
  .studio-directory-grid,
  .studio-detail-layout,
  .digest-layout,
  .upload-grid,
  .paper-fields,
  .paper-upload,
  .event-detail-grid,
  .feature-grid,
  .card-grid,
  .news-list,
  .research-grid,
  .video-layout,
  .doctors-box,
  .submit-grid,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .studio-film-hero,
  .studio-film-overlay {
    min-height: 720px;
  }

  .studio-film-copy {
    margin-left: auto;
  }

  .daily-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .daily-gallery .gallery-large {
    grid-row: span 1;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .split-head {
    align-items: start;
    flex-direction: column;
  }

  .profile-card {
    grid-template-columns: 1fr;
  }

  .city-directory,
  .city-summary,
  .map-caption,
  .studio-photo-wall {
    grid-template-columns: 1fr;
  }

  .studio-preview-panel {
    grid-template-columns: minmax(112px, 0.34fr) minmax(0, 1fr);
  }

  .studio-sticky-head {
    position: static;
  }

  .studio-detail-nav {
    position: static;
  }

  .map-grid {
    min-height: 230px;
  }

  .doctors-box {
    padding: 24px;
  }

  .detail-aside {
    position: static;
  }

  .digest-nav {
    position: static;
  }

  .insight-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    justify-content: center;
    gap: 8px 24px;
    font-size: 12px;
  }

}

@media (max-width: 560px) {
  .share-section {
    padding-bottom: 44px;
  }

  .share-panel {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .share-panel h2 {
    font-size: 22px;
  }

  .share-actions {
    justify-content: stretch;
  }

  .share-actions .btn {
    flex: 1 1 100%;
    width: 100%;
  }

  .footer-bottom > span {
    display: inline-flex;
    width: 100%;
    flex-wrap: wrap;
  }

  .footer-bottom {
    justify-items: center;
    white-space: normal;
    text-align: center;
    gap: 8px;
    padding-bottom: calc(26px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-wrap {
    min-height: 68px;
  }

  .site-nav {
    top: 68px;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .studio-film-hero,
  .studio-film-overlay {
    min-height: 640px;
  }

  .studio-film-overlay {
    padding: 96px 0 54px;
  }

  .studio-film-copy h1 {
    font-size: 38px;
  }

  .studio-film-copy p {
    font-size: 16px;
  }

  .portrait-tile {
    min-height: 460px;
    padding: 54px 28px 42px;
  }

  .portrait-tile img {
    width: 154px;
    height: 154px;
  }

  .portrait-tile div {
    margin-top: 42px;
  }

  .portrait-tile h3 {
    font-size: 23px;
  }

  .portrait-tile p {
    font-size: 16px;
  }

  .portrait-tile span {
    font-size: 18px;
  }

  .news-ticker {
    height: 340px;
  }

  .news-ticker a {
    grid-template-columns: 1fr;
    min-height: 68px;
    gap: 3px;
    padding: 10px 16px;
    font-size: 14px;
  }

  .hero-actions,
  .filter-row,
  .tabs {
    width: 100%;
  }

  .btn,
  .filter-btn,
  .tab-btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .showcase-meta {
    grid-template-columns: 1fr;
  }

  .studio-preview-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-preview-panel {
    grid-template-columns: 1fr;
  }

  .studio-preview-panel img {
    width: min(100%, 220px);
    height: 180px;
    justify-self: center;
  }

  .studio-portrait-card img {
    width: 100%;
    max-width: 120px;
    height: auto;
    margin: 0 auto;
  }

  .studio-portrait-compact {
    grid-template-columns: 96px minmax(0, 1fr);
    max-width: 100%;
  }

  .studio-portrait-compact img {
    width: 96px;
    height: 126px;
    justify-self: start;
  }

  .book-grid article {
    grid-template-columns: 1fr;
  }

  .book-grid img {
    height: 220px;
  }

  .city-summary {
    gap: 10px;
  }

  .world-map-card {
    padding: 12px;
  }

  .map-grid {
    min-height: 210px;
  }

  .map-pin strong {
    display: none;
  }

  .city-card {
    padding: 14px;
  }

  .tooth-graphic {
    transform: scale(0.78);
    margin: 38px auto 16px;
  }

  .case-detail,
  .submit-form {
    padding: 20px;
  }
}
\n\n/* Paper link card */\n.paper-block-link { display: block; text-decoration: none; color: inherit; }\n.paper-block-link:hover h2 { color: #0b3a5b; }
.paper-block-link p { margin-top: 10px; }\n.paper-block-link:hover { opacity: 0.85; }
