:root {
  --color-teal: #008080;
  --color-steel: #71797e;
  --color-gold: #b8964e;
  --teal: var(--color-teal);
  --teal-mid: #006060;
  --teal-dark: #004040;
  --teal-pale: #e8f4f4;
  --gold: var(--color-gold);
  --ink: #0f1f1f;
  --mid: #4a5c5c;
  --muted: #7a9090;
  --border: rgba(0, 128, 128, 0.14);
  --display: 'Cormorant Garamond', Georgia, serif;
  --body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --radius: 14px;
  --shadow-sm: 0 2px 16px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.1);
  --off-white: #f7fafa;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--body), system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--surface, #fff);
  line-height: 1.5;
}

main#content {
  min-height: 40vh;
  padding: 1.5rem clamp(1rem, 4vw, 2.5rem);
}

.page-intro h1 {
  margin: 0 0 0.5rem;
  color: var(--color-teal);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
}

.page-intro p {
  margin: 0;
  max-width: 42rem;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid rgba(113, 121, 126, 0.25);
}

.site-nav {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
}

.site-brand {
  font-weight: 600;
  color: var(--color-teal);
  text-decoration: none;
}

.site-brand:hover,
.site-brand:focus-visible {
  color: var(--color-gold);
}

@keyframes pulse-gold {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(184, 150, 78, 0.3);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(184, 150, 78, 0);
  }
}

.site-footer {
  margin-top: auto;
  padding: 1.5rem clamp(1rem, 4vw, 2.5rem);
  background: #fff;
  border-top: 1px solid rgba(113, 121, 126, 0.25);
  font-size: 0.9rem;
}

/* ── Injected /components/header.html + footer.html (booking, doctor pages) ── */
.util-bar {
  background: var(--teal-dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12.5px;
  padding: 9px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.util-bar a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}
.util-right {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
  overflow: visible;
}

/* When util-bar exists above, JS sets --mn-utilbar-h + inline top */
.util-bar {
  position: sticky;
  top: 0;
  z-index: 950;
}

.mn-header-spacer {
  width: 100%;
  pointer-events: none;
  flex-shrink: 0;
}

.mn-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9650;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(184, 150, 78, 0.35);
  background: rgba(0, 64, 64, 0.92);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.mn-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mn-to-top:hover {
  background: rgba(0, 96, 96, 0.95);
}

.mn-to-top:focus-visible {
  outline: 3px solid rgba(184, 150, 78, 0.45);
  outline-offset: 3px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 64px;
  overflow: visible;
}
.logo {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  max-width: min(320px, min(42vw, 100%));
}
.main-nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.nav-link:hover {
  background: var(--teal-pale);
  color: var(--teal);
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
  padding: 8px 0;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--mid);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a:hover {
  background: var(--teal-pale);
  color: var(--teal);
}

/* Mega menu (About / Specialities / Patient Info) — same pattern as homepage */
.main-nav {
  align-items: center;
  gap: 6px;
  overflow: visible;
}
.nav-item {
  position: relative;
}
/* Invisible bridge so moving the pointer into the dropdown does not drop :hover */
.nav-item:has(.dropdown)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
  z-index: 998;
}
.nav-item > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  white-space: nowrap;
}
.nav-item > .nav-link > span:first-child {
  flex: 0 1 auto;
  min-width: 0;
}
.nav-chevron {
  flex-shrink: 0;
  width: 0.9em;
  font-size: 0.72em;
  line-height: 1;
  opacity: 0.55;
  transition: transform 0.2s ease-in-out;
  margin-left: 0.05em;
}
.nav-item:hover .nav-chevron {
  transform: rotate(180deg);
}
.dropdown {
  display: block;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 10px 8px;
  min-width: 248px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition:
    opacity 0.2s ease-in-out,
    transform 0.2s ease-in-out,
    visibility 0.2s ease-in-out;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown a {
  display: block;
  padding: 11px 16px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--mid);
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s ease-in-out, color 0.15s ease-in-out;
  line-height: 1.35;
}
.dropdown a:hover {
  background: var(--teal-pale);
  color: var(--teal);
}
.dropdown--wide {
  min-width: min(520px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 8px;
  padding: 12px 10px;
}
@media (max-width: 1100px) {
  .dropdown--wide {
    grid-template-columns: 1fr;
    min-width: 280px;
  }
}

.mn-mobile-header-tools {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .mn-mobile-header-tools {
    display: flex;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-book {
  background: var(--teal);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.mn-ask-ai-btn {
  border: 1.5px solid var(--teal);
  color: var(--teal);
  background: transparent;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

footer {
  background: var(--ink);
  padding: 56px 40px 32px;
  color: rgba(255, 255, 255, 0.45);
}
.footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-about {
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.45);
  margin: 16px 0;
}
.footer-contact {
  font-size: 13px;
  margin-bottom: 8px;
}
.footer-contact a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13.5px;
}
.footer-col a:hover {
  color: #fff;
}
.footer-book {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 24px;
}
.footer-book h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 12px;
}
.footer-book p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}
.footer-book-btn {
  display: block;
  text-align: center;
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--radius);
  background: var(--teal);
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 10px;
  box-sizing: border-box;
}
.footer-book-btn:hover {
  filter: brightness(1.05);
}
.footer-bottom {
  max-width: 1320px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.trust-badge-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 20px 24px 28px;
  background: #f0f4f4;
  border-top: 1px solid var(--border);
}
.trust-badge {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--teal-mid);
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
}
.site-logo-img--footer {
  max-width: 240px;
  height: auto;
}

/* =============================================================================
   Homepage hub — symmetrical feed cards (News, Media & Research)
   Loaded with index.html
   ============================================================================= */

.feed-card {
  height: 420px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.feed-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feed-card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
  font-weight: 700;
  font-size: 14px;
  color: var(--teal-dark);
  flex-shrink: 0;
  margin: 0;
  font-family: var(--body), system-ui, sans-serif;
}

.feed-card-body {
  flex: 1;
  overflow-y: auto;
  position: relative;
  min-height: 0;
}

.feed-card-body--fb {
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.feed-card-body--fb iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: none;
  margin: 0;
}

.feed-card-body--youtube {
  padding: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.feed-card-body--youtube .mn-hub-feed {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.feed-card-body--youtube .mn-yt-link--hub {
  flex: 1;
}

.feed-card-body--pubmed-stack {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.feed-card-pubmed-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feed-card-pubmed-footer {
  margin-top: auto;
  padding: 16px 20px 20px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--surface-card, #ffffff);
}

.mn-hub-feed {
  min-height: 0;
  position: relative;
  flex: 1;
}

.mn-hub-feed--loading .mn-skeleton {
  animation: mn-skeleton-pulse 1.2s ease-in-out infinite;
}

@keyframes mn-skeleton-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

.mn-skeleton-thumb {
  width: 100%;
  border-radius: 0;
  background: linear-gradient(90deg, var(--teal-pale) 0%, #ddeeee 50%, var(--teal-pale) 100%);
  background-size: 200% 100%;
  margin-bottom: 14px;
}

.mn-skeleton-thumb--hub {
  height: 200px;
  margin-bottom: 12px;
}

.mn-skeleton-line {
  height: 14px;
  border-radius: 6px;
  background: var(--teal-pale);
  width: 92%;
}

.mn-skeleton-line.short {
  width: 55%;
  margin-top: 10px;
}

.mn-yt-link--hub {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.feed-card .mn-yt-link--hub:hover {
  transform: none;
  box-shadow: none;
}

.mn-yt-thumb-wrap--hub {
  position: relative;
  background: #0a1a1a;
  overflow: hidden;
}

.mn-yt-thumb-wrap--hub img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.mn-yt-play--hub {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.38);
  transition: background 0.2s;
  pointer-events: none;
}

.mn-yt-play--hub span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #c00;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.mn-yt-link--hub:hover .mn-yt-play--hub {
  background: rgba(0, 0, 0, 0.48);
}

.mn-yt-title--hub {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
  padding: 20px;
  margin: 0;
}

.mn-hub-fallback {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.feed-card-body--youtube .mn-hub-fallback {
  padding: 20px;
}

.mn-pub-card {
  display: block;
  padding: 14px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0, 122, 122, 0.14);
  background: var(--off-white);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.mn-pub-card:hover {
  border-color: rgba(0, 128, 128, 0.38);
  box-shadow: 0 4px 20px rgba(0, 95, 95, 0.1);
  background: var(--surface-elevated, #fff);
}

.mn-pub-meta {
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 6px;
}

.mn-pub-journal {
  color: #008080;
  font-weight: 700;
}

.mn-pub-year {
  color: var(--mid);
  font-weight: 600;
  margin-left: 6px;
}

.mn-pub-year::before {
  content: '·';
  margin-right: 6px;
  color: var(--muted);
  font-weight: 400;
}

.mn-pub-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
  display: block;
}

.mn-pub-all {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-mid);
  text-decoration: none;
}

.mn-pub-all:hover {
  text-decoration: underline;
}

.mn-media-hub {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 72px 24px 80px;
  width: 100%;
}

.mn-media-hub-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.mn-media-hub-title {
  font-family: var(--display), Georgia, serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}

.mn-media-hub-lead {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.mn-media-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.mn-media-hub-social {
  margin-top: 2.5rem;
  text-align: center;
}

.mn-media-hub-social-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.mn-media-hub-social .social-row {
  margin-top: 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.mn-media-hub-social .soc-link {
  background: var(--teal-pale);
  border: 1px solid rgba(0, 122, 122, 0.22);
}

.mn-media-hub-social .soc-link svg {
  fill: var(--teal-mid);
}

/* PubMed (NIH-style accent); inherits .soc-link transition + lift from index footer rules */
.soc-link.pubmed-ic:hover {
  background: #2a71b0;
  border-color: #2a71b0;
}

.soc-link.pubmed-ic:hover svg {
  fill: #fff;
}

@media (max-width: 1024px) and (min-width: 601px) {
  .mn-media-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .mn-media-hub-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .mn-media-hub {
    padding: 56px 20px 64px;
  }
}

/* ── Homepage: full-width announcement hero slider (below main hero — mid-fold) ── */
.announcement-hero-slider {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  min-height: 580px;
  height: auto;
  overflow: hidden;
  background: var(--teal-dark);
}

.announcement-hero-slider:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.announcement-hero-slider__viewport {
  position: relative;
  width: 100%;
  min-height: 580px;
}

.announcement-hero-slider__track {
  position: relative;
  width: 100%;
  min-height: 580px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 44px 56px 72px;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  color: #fff;
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
  z-index: 0;
}

.hero-slide--active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 1;
}

.announcement-hero-slider--reduced-motion .hero-slide {
  transform: none;
  transition: opacity 0.22s ease;
}

.hero-slide__inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

/* Centred informative block (CombiLASER, default) */
.hero-slide__inner--informative {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.hero-slide__inner--informative .hero-slide__title {
  font-size: clamp(1.65rem, 3.8vw, 2.65rem);
}

.hero-slide__inner--informative .hero-slide__summary {
  max-width: 46rem;
}

.hero-slide__highlights {
  list-style: none;
  margin: 0 auto 22px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  max-width: 52rem;
}

.hero-slide__highlight {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.18);
}

.hero-slide__inner--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 320px);
  gap: 48px;
  align-items: center;
  text-align: left;
  max-width: 1200px;
}

.hero-slide__inner--split-rich {
  grid-template-columns: minmax(280px, 1fr) minmax(220px, 380px);
  align-items: center;
  gap: 40px 56px;
  max-width: 1240px;
}

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

.hero-slide__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide__media img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-slide__media--dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-content: center;
  max-width: 360px;
}

.hero-slide__media--dual img {
  max-width: none;
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.hero-slide__inner--split-rich .hero-slide__highlights {
  justify-content: flex-start;
}

.hero-slide__inner--split-rich .hero-slide__summary {
  font-size: 1rem;
  line-height: 1.68;
}

.hero-slide__badge {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.88;
}

.hero-slide__title {
  margin: 0 0 20px;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.hero-slide__summary {
  margin: 0 0 28px;
  font-size: 1.0625rem;
  line-height: 1.75;
  font-weight: 400;
  opacity: 0.92;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-slide__inner--split .hero-slide__summary {
  margin-left: 0;
  margin-right: 0;
}

.hero-slide__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.hero-slide__inner--split .hero-slide__cta-row {
  justify-content: flex-start;
}

.hero-slide__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.hero-slide__btn:hover {
  transform: translateY(-1px);
}

.hero-slide__btn--primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 6px 28px rgba(184, 150, 78, 0.35);
}

.hero-slide__btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

/* Zeiss / laser — clinical-tech */
.hero-slide--theme-tech {
  background: linear-gradient(135deg, #002a2a 0%, #004d4d 42%, var(--teal) 100%);
}

.hero-slide--theme-tech::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.hero-slide--theme-tech::after {
  content: '';
  position: absolute;
  inset: -40% -20% auto auto;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(0, 255, 240, 0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-slide--theme-tech .hero-slide__inner {
  position: relative;
  z-index: 1;
}

.hero-slide--theme-tech .hero-slide__badge {
  color: #7fe8e0;
  text-shadow: 0 0 24px rgba(0, 255, 240, 0.35);
}

.hero-slide--theme-tech .hero-slide__title {
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
}

.hero-slide--theme-tech .hero-slide__btn--primary {
  background: linear-gradient(135deg, #00a8a8, #00cfcf);
  box-shadow: 0 8px 32px rgba(0, 200, 200, 0.35);
}

.hero-slide--theme-tech .hero-slide__btn--ghost {
  border-color: rgba(0, 255, 240, 0.45);
  background: rgba(0, 40, 40, 0.45);
}

.hero-slide--theme-tech .hero-slide__highlight {
  border-color: rgba(0, 255, 240, 0.35);
  background: rgba(0, 30, 30, 0.45);
}

/* Endoscopic DCR — premium lacrimal */
.hero-slide--theme-dcr {
  background: linear-gradient(135deg, #1a0d28 0%, #2d1f45 42%, #0f1f2e 100%);
}

.hero-slide--theme-dcr::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 150, 78, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 150, 78, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.hero-slide--theme-dcr .hero-slide__inner {
  position: relative;
  z-index: 1;
}

.hero-slide--theme-dcr .hero-slide__badge {
  color: #e8d5a8;
}

.hero-slide--theme-dcr .hero-slide__title {
  font-size: clamp(1.5rem, 3.2vw, 2.35rem);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.4);
}

.hero-slide--theme-dcr .hero-slide__highlight {
  border-color: rgba(184, 150, 78, 0.45);
  background: rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.95);
}

.hero-slide--theme-dcr .hero-slide__btn--primary {
  background: linear-gradient(135deg, #9a7a3d, #c9a45a);
  color: #1a1208;
  box-shadow: 0 8px 28px rgba(184, 150, 78, 0.35);
}

.hero-slide--theme-dcr .hero-slide__btn--ghost {
  border-color: rgba(232, 213, 168, 0.4);
  color: #faf6ef;
  background: rgba(30, 22, 45, 0.5);
}

/* Lens Logic — academic / literary */
.hero-slide--theme-academic {
  background: linear-gradient(135deg, #1c1814 0%, #2d2620 50%, #1a1612 100%);
  color: #f4efe6;
}

.hero-slide--theme-academic .hero-slide__badge {
  color: #c9a45a;
  letter-spacing: 0.22em;
}

.hero-slide--theme-academic .hero-slide__title {
  font-family: var(--display), Georgia, serif;
  font-weight: 700;
  font-size: 2.75rem;
  color: #faf6ef;
}

.hero-slide--theme-academic .hero-slide__summary {
  color: rgba(244, 239, 230, 0.88);
  font-weight: 300;
}

.hero-slide--theme-academic .hero-slide__btn--primary {
  background: linear-gradient(135deg, #8a6e3a, #c9a45a);
  color: #1a140e;
  box-shadow: 0 8px 28px rgba(201, 164, 90, 0.35);
}

.hero-slide--theme-academic .hero-slide__btn--ghost {
  color: #f4efe6;
  border-color: rgba(201, 164, 90, 0.55);
  background: rgba(40, 34, 28, 0.6);
}

.announcement-hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 12;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.announcement-hero-slider__arrow:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.45);
}

.announcement-hero-slider__arrow:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.announcement-hero-slider__arrow--prev {
  left: 16px;
}

.announcement-hero-slider__arrow--next {
  right: 16px;
}

.announcement-hero-slider__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  display: flex;
  gap: 10px;
  align-items: center;
}

.announcement-hero-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.2);
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.announcement-hero-slider__dot[aria-selected='true'] {
  background: #fff;
  transform: scale(1.15);
}

.announcement-hero-slider__dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Rich announcement (JSON: layout rich, featureCards, profileCard) */
.hero-slide--layout-rich {
  align-items: flex-start;
  padding-top: 48px;
  padding-bottom: 64px;
  min-height: 720px;
  height: auto;
}

.announcement-hero-slider--has-rich .announcement-hero-slider__viewport,
.announcement-hero-slider--has-rich .announcement-hero-slider__track {
  min-height: 720px;
  height: auto;
}

.hero-slide__inner--rich {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(240px, 360px);
  gap: 40px 48px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  align-items: start;
}

.hero-slide__inner--rich--solo {
  grid-template-columns: minmax(0, 1fr);
  max-width: 920px;
}

.hero-slide__inner--rich--media {
  grid-template-columns: minmax(0, 1.12fr) minmax(240px, 420px);
  max-width: 1280px;
}

.hero-slide__inner--rich--media .hero-slide__media {
  align-self: center;
  width: 100%;
}

.hero-slide__inner--rich--media .hero-slide__media img {
  max-width: 100%;
  width: 100%;
  max-height: min(480px, 52vh);
  object-fit: contain;
  object-position: center;
}

.hero-slide__inner--rich--media .hero-slide__media--dual {
  max-width: none;
}

.hero-slide__inner--rich--media .hero-slide__media--dual img {
  max-height: 200px;
  object-fit: cover;
}

.hero-slide__badge--pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 20px;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1.5px solid rgba(184, 150, 78, 0.45);
  background: rgba(184, 150, 78, 0.12);
  color: #e8d5a8;
}

.hero-slide--theme-tech .hero-slide__badge--pill {
  border-color: rgba(0, 255, 240, 0.35);
  background: rgba(0, 40, 40, 0.45);
  color: #7fe8e0;
}

.hero-slide--theme-academic .hero-slide__badge--pill {
  border-color: rgba(201, 164, 90, 0.45);
  background: rgba(40, 34, 28, 0.55);
  color: #c9a45a;
}

.hero-slide__badge-icon {
  font-size: 14px;
  line-height: 1;
}

.hero-slide__rich-main .hero-slide__title {
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-slide__rich-main .hero-slide__summary {
  margin-left: 0;
  margin-right: 0;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.72;
}

.hero-slide__feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 24px;
  max-width: 520px;
}

.hero-slide__feature-card {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.hero-slide--theme-tech .hero-slide__feature-card {
  border-color: rgba(0, 255, 240, 0.15);
  background: rgba(0, 30, 30, 0.35);
}

.hero-slide--theme-academic .hero-slide__feature-card {
  border-color: rgba(201, 164, 90, 0.2);
  background: rgba(40, 34, 28, 0.45);
}

.hero-slide__feature-emoji {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1.2;
}

.hero-slide__feature-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
  line-height: 1.35;
}

.hero-slide__feature-sub {
  font-size: 11.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.45);
}

.hero-slide__rich-main .hero-slide__media--rich.hero-slide__media--dual {
  max-width: 520px;
  margin-bottom: 8px;
}

.hero-slide__rich-main .hero-slide__media--rich.hero-slide__media--dual img {
  max-height: 160px;
  width: 100%;
  object-fit: cover;
}

.hero-slide__rich-main .hero-slide__media--rich.hero-slide__media--single {
  max-width: 280px;
  margin-bottom: 8px;
}

.hero-slide__inner--rich .hero-slide__cta-row {
  justify-content: flex-start;
  margin-top: 8px;
}

/* Profile / author sidebar */
.hero-slide__profile-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-slide--theme-tech .hero-slide__profile-card {
  background: rgba(0, 25, 25, 0.5);
  border-color: rgba(0, 255, 240, 0.12);
}

.hero-slide--theme-academic .hero-slide__profile-card {
  background: rgba(40, 34, 28, 0.55);
  border-color: rgba(201, 164, 90, 0.2);
}

.hero-slide__profile-photo-wrap {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide__profile-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.hero-slide__profile-head {
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-slide__profile-kicker {
  margin: 0 0 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e8d5a8;
}

.hero-slide--theme-tech .hero-slide__profile-kicker {
  color: #7fe8e0;
}

.hero-slide--theme-academic .hero-slide__profile-kicker {
  color: #c9a45a;
}

.hero-slide__profile-name {
  margin: 0 0 4px;
  font-family: var(--display), 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.hero-slide__profile-subtitle {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.hero-slide__profile-affiliation {
  margin: 6px 0 0;
  font-size: 12.5px;
  font-weight: 600;
  color: #b8964e;
}

.hero-slide--theme-tech .hero-slide__profile-affiliation {
  color: #5ee0d6;
}

.hero-slide__profile-exp-h {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 12px;
}

.hero-slide__profile-exp-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
}

.hero-slide__profile-exp-icon {
  flex-shrink: 0;
  font-size: 14px;
}

.hero-slide__profile-quote {
  margin: 0;
  padding: 16px;
  border-radius: 10px;
  background: rgba(0, 122, 122, 0.15);
  border: 1px solid rgba(0, 200, 200, 0.2);
}

.hero-slide--theme-academic .hero-slide__profile-quote {
  background: rgba(30, 26, 22, 0.65);
  border-color: rgba(201, 164, 90, 0.25);
}

.hero-slide__profile-quote p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  font-style: italic;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 900px) {
  .hero-slide__inner--rich {
    grid-template-columns: 1fr;
  }

  .hero-slide__inner--rich--solo {
    max-width: 100%;
  }

  .hero-slide__inner--rich--media .hero-slide__media {
    order: -1;
    max-width: min(280px, 88vw);
    margin: 0 auto 20px;
  }

  .hero-slide__inner--rich--media .hero-slide__media img {
    max-height: 220px;
  }

  .hero-slide__feature-grid {
    max-width: none;
  }

  .hero-slide--layout-rich {
    min-height: 0;
  }

  .hero-slide__inner--split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-slide__inner--split-rich {
    grid-template-columns: 1fr;
  }

  .hero-slide__inner--split .hero-slide__cta-row {
    justify-content: center;
  }

  .hero-slide__inner--split-rich .hero-slide__highlights {
    justify-content: center;
  }

  .hero-slide__media {
    order: -1;
  }

  .hero-slide__media img {
    max-width: 200px;
  }

  .hero-slide__media--dual {
    max-width: 280px;
    margin: 0 auto;
  }

  .hero-slide__media--dual img {
    max-height: 140px;
  }
}

@media (max-width: 600px) {
  .hero-slide__feature-grid {
    grid-template-columns: 1fr;
  }

  .announcement-hero-slider,
  .announcement-hero-slider__viewport,
  .announcement-hero-slider__track {
    min-height: 480px;
  }

  .announcement-hero-slider--has-rich .announcement-hero-slider__viewport,
  .announcement-hero-slider--has-rich .announcement-hero-slider__track {
    min-height: 560px;
  }

  .hero-slide {
    padding: 28px 18px 60px;
  }

  .hero-slide__title {
    font-size: 2rem;
  }

  .hero-slide--theme-academic .hero-slide__title {
    font-size: 1.85rem;
  }

  .announcement-hero-slider__arrow {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  .announcement-hero-slider__arrow--prev {
    left: 8px;
  }

  .announcement-hero-slider__arrow--next {
    right: 8px;
  }
}

/* ── Doctor profile pages (/dr-*/ ) ── */
.doctor-profile-hero {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-mid));
  padding: 56px 40px 64px;
  color: #fff;
}
.doctor-profile-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}
.doctor-profile-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  background: rgba(0, 0, 0, 0.15);
}
.doctor-profile-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.doctor-profile-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.doctor-profile-name {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 10px;
}
.doctor-profile-role {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 20px;
  font-weight: 500;
}
.doctor-profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.doctor-profile-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}
.doctor-profile-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.doctor-profile-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--teal-dark);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.15s, box-shadow 0.15s;
}
.doctor-profile-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.doctor-profile-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.doctor-profile-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.doctor-profile-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 40px 96px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.doctor-profile-main h2 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 16px;
}
.doctor-profile-main p {
  font-size: 16px;
  line-height: 1.82;
  color: var(--mid);
  margin: 0 0 18px;
}
.doctor-profile-quote {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--teal-pale);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.doctor-profile-quote p {
  font-family: var(--display);
  font-size: 20px;
  font-style: italic;
  color: var(--teal-dark);
  margin: 0 0 8px;
  line-height: 1.45;
}
.doctor-profile-quote cite {
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
}
.doctor-profile-spec-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.doctor-profile-spec-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-mid);
  transition: background 0.15s, border-color 0.15s;
}
.doctor-profile-spec-list a:hover {
  background: var(--teal-pale);
  border-color: rgba(0, 122, 122, 0.3);
}
.doctor-profile-aside-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.doctor-profile-aside-card h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 14px;
}
.doctor-profile-aside-card p,
.doctor-profile-aside-card li {
  font-size: 14px;
  line-height: 1.65;
  color: var(--mid);
}
.doctor-profile-aside-card ul {
  margin: 0;
  padding-left: 18px;
}
.doctor-profile-aside-card a {
  color: var(--teal);
  font-weight: 600;
}
.doctor-profile-colleague {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.doctor-profile-colleague img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.doctor-profile-colleague strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
}
.doctor-profile-colleague span {
  font-size: 12px;
  color: var(--muted);
}
@media (max-width: 900px) {
  .doctor-profile-hero-inner,
  .doctor-profile-body {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }
  .doctor-profile-photo {
    max-width: 260px;
    margin: 0 auto;
  }
  .doctor-profile-hero {
    padding: 40px 20px 48px;
  }
  .doctor-profile-body {
    padding: 40px 20px 72px;
  }
}

/* ── Subspecialty pages: keep feature grids top-aligned ── */
.de-grid,
.silent-grid,
.intro-grid,
.op-grid,
.no-dil-inner,
.screen-inner,
.cxl-inner,
.lens-intro,
.tech-intro,
.ped-grid,
.understanding-grid {
  align-items: start !important;
}
