:root {
  --bg: #f6fbff;
  --bg-deep: #e6f1fb;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-soft: rgba(244, 250, 255, 0.86);
  --ink: #17354d;
  --ink-soft: #5f7387;
  --line: rgba(23, 53, 77, 0.1);
  --blue: #1568d6;
  --blue-bright: #2aa6ff;
  --green: #79cc28;
  --green-bright: #a7ea49;
  --accent: #f7c21d;
  --shadow: 0 28px 80px rgba(19, 58, 104, 0.12);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f8fcff 0%, #eef6fc 46%, #e7f0fa 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 14%, rgba(21, 104, 214, 0.13), transparent 22%),
    radial-gradient(circle at 88% 10%, rgba(121, 204, 40, 0.12), transparent 18%),
    radial-gradient(circle at 80% 62%, rgba(42, 166, 255, 0.1), transparent 24%);
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.8;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.54), transparent 72%);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 30px));
  margin: 18px auto 44px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(18, 54, 61, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand-mark,
.badge-logo {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand-mark {
  width: 64px;
  height: 64px;
}

.badge-logo {
  width: 70px;
  height: 70px;
}

.brand-mark img,
.badge-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong {
  font-size: 1rem;
  font-family: "Libre Baskerville", "Times New Roman", serif;
  letter-spacing: -0.02em;
}

.brand-text span {
  font-size: 0.82rem;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: "Source Sans 3", sans-serif;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
  box-shadow: 0 16px 28px rgba(21, 104, 214, 0.24);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
}

.button-accent {
  color: #fff;
  background: linear-gradient(135deg, #6fbd23 0%, #92db3f 100%);
  box-shadow: 0 16px 28px rgba(121, 204, 40, 0.28);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero,
.overview-grid,
.physicians-section,
.care-section,
.contact-section,
.faq-section {
  margin-bottom: 4px;
}

.hero {
  display: block;
  position: relative;
  padding: 56px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(115deg, rgba(8, 28, 50, 0.76) 0%, rgba(10, 35, 63, 0.64) 34%, rgba(16, 73, 130, 0.34) 58%, rgba(255, 255, 255, 0.1) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    url("care-photo.png") center/cover no-repeat;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 204, 40, 0.14), transparent 66%);
  transform: translate(18%, 20%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%, rgba(8, 25, 44, 0.18) 100%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 34px 36px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 251, 255, 0.76));
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: 0 18px 36px rgba(8, 27, 49, 0.1);
}

.hero-top {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 320px;
  gap: 26px;
  align-items: start;
}

.hero-side {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.79rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--blue);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Libre Baskerville", "Times New Roman", serif;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 14ch;
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
}

h2 {
  max-width: 13ch;
  font-size: clamp(1.7rem, 2.8vw, 2.7rem);
}

h3 {
  font-size: 1.28rem;
}

p {
  font-family: "Source Sans 3", sans-serif;
  line-height: 1.7;
}

.hero-text {
  max-width: 61ch;
  margin: 16px 0 0;
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.hero-subheadline {
  margin: 12px 0 0;
  max-width: 28ch;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.16rem;
  font-weight: 600;
  line-height: 1.55;
  color: #36526b;
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin: 28px 0 24px;
}

.hero-info-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(243, 249, 255, 0.82));
  box-shadow: 0 18px 36px rgba(8, 27, 49, 0.12);
  position: relative;
  z-index: 1;
  margin-top: 22px;
}

.hero-info-block {
  padding: 24px 22px;
  border-right: 1px solid rgba(23, 53, 77, 0.08);
}

.hero-info-block:last-child {
  border-right: 0;
}

.hero-hours-panel {
  padding: 22px 24px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 249, 255, 0.84));
  box-shadow: 0 18px 36px rgba(8, 27, 49, 0.12);
  backdrop-filter: blur(8px);
}

.front-label {
  margin: 0 0 10px;
  font-family: "Source Sans 3", sans-serif;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hours-kicker {
  margin: 0 0 14px;
  font-family: "Source Sans 3", sans-serif;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.front-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.front-hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(23, 53, 77, 0.08);
}

.front-hours-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.front-hours-list span {
  color: var(--ink);
  font-family: "Source Sans 3", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.front-hours-list strong {
  color: var(--ink-soft);
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hours-note {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}

.hero-info-strong {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: "Libre Baskerville", "Times New Roman", serif;
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.45;
}

.hero-info-strong a {
  color: inherit;
  text-decoration: none;
}

.hero-info-block p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.overview-panel,
.physician-card,
.care-card,
.contact-summary {
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 34px rgba(22, 54, 62, 0.06);
}

main > section {
  position: relative;
  padding-top: 34px;
  padding-bottom: 34px;
}

main > section + section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -56px;
  width: min(100%, 1180px);
  height: 124px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.96) 0%, rgba(238, 246, 252, 0.72) 40%, rgba(238, 246, 252, 0) 76%);
  filter: blur(16px);
  pointer-events: none;
}

main > section + section::after {
  content: "";
  position: absolute;
  inset: -10px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(21, 104, 214, 0), rgba(21, 104, 214, 0.08) 28%, rgba(121, 204, 40, 0.08) 72%, rgba(121, 204, 40, 0));
  pointer-events: none;
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 24px;
  align-items: start;
}

.overview-panel {
  padding: 30px 32px;
  border-radius: 28px;
}

.intro-panel p:last-child {
  color: var(--ink-soft);
}

.intro-panel {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(244, 250, 255, 0.52));
}

.values-panel {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-content: center;
  margin-top: -2px;
  padding-top: 18px;
  padding-bottom: 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  background:
    linear-gradient(180deg, rgba(21, 104, 214, 0.03), rgba(121, 204, 40, 0.05));
}

.overview-photo-panel {
  margin: 0;
  overflow: hidden;
  border-radius: 34px 34px 26px 26px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 48px rgba(18, 52, 71, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(234, 243, 250, 0.8));
  align-self: stretch;
  padding: 14px;
}

.overview-photo-panel img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 52%;
  border-radius: 24px;
  background: #eef5fb;
}

.value-row {
  padding: 16px 20px 16px 18px;
  border-bottom: 0;
  position: relative;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
}

.value-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-bright) 100%);
}

.value-row:last-child {
  padding-bottom: 0;
}

.value-row strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Libre Baskerville", "Times New Roman", serif;
  font-size: 1.02rem;
}

.value-row span {
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink-soft);
}

.physician-label,
.contact-lead {
  margin: 0 0 10px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.physician-label {
  color: var(--blue);
}

.physicians-section,
.contact-section,
.care-section,
.faq-section {
  padding-left: 0;
  padding-right: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.care-section {
  padding: 30px 28px;
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.8) 0%, rgba(246, 251, 255, 0.68) 34%, rgba(234, 244, 251, 0.5) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.44) 42%, rgba(255, 255, 255, 0.12) 100%),
    url("doctor-1.png") center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 36px rgba(16, 47, 79, 0.07);
}

.contact-section#visit {
  padding: 30px 28px;
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.82) 0%, rgba(247, 251, 255, 0.72) 38%, rgba(236, 245, 252, 0.52) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.48) 42%, rgba(255, 255, 255, 0.16) 100%),
    url("doctor.png") center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 36px rgba(16, 47, 79, 0.07);
}

.section-heading,
.contact-intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 26px;
}

.section-heading.compact {
  margin-bottom: 22px;
}

.media-heading {
  align-items: center;
}

.heading-copy {
  flex: 1 1 auto;
}

.section-copy {
  max-width: 40ch;
  margin: 0;
  color: var(--ink-soft);
}

.physician-grid {
  display: grid;
  gap: 20px;
}

.doctors-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.physician-card {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 22px;
  padding: 24px;
  border-radius: 30px;
  height: 100%;
}

.doctor-card {
  grid-template-columns: 1fr;
  gap: 16px;
  background:
    linear-gradient(155deg, rgba(21, 104, 214, 0.04), rgba(121, 204, 40, 0.04)),
    rgba(255, 255, 255, 0.8);
  align-items: stretch;
}

.physician-frame {
  display: grid;
  place-items: end center;
  border-radius: 26px;
  background:
    linear-gradient(160deg, rgba(21, 104, 214, 0.12), rgba(121, 204, 40, 0.18)),
    #f6fbfc;
  border: 1px solid rgba(21, 104, 214, 0.12);
}

.portrait-frame {
  aspect-ratio: 4 / 5;
  min-height: 100%;
  padding: 20px;
}

.doctor-photo-slot {
  display: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(244, 249, 255, 0.78)),
    #eef5fb;
  border: 1px solid rgba(23, 53, 77, 0.06);
}

.support-team {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(23, 53, 77, 0.09);
}

.support-team-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 16px;
}

.support-team-heading .eyebrow {
  margin-bottom: 6px;
}

.support-team-copy {
  max-width: 44ch;
  margin: 0;
  color: var(--ink-soft);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.staff-card {
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  padding: 22px 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(244, 250, 255, 0.88));
}

.physician-specialties {
  margin: 10px 0 12px;
  font-family: "Source Sans 3", sans-serif;
  color: var(--green);
  font-weight: 800;
}

.support-grid .physician-label,
.support-grid .physician-specialties {
  color: var(--green);
}

.physician-copy {
  display: grid;
  align-content: start;
}

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

.compact-care-cards {
  max-width: 940px;
}

.care-card {
  padding: 18px 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(243, 250, 245, 0.68));
  border-left: 4px solid rgba(121, 204, 40, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.34),
    0 16px 34px rgba(22, 54, 62, 0.06);
}


.care-card p,
.contact-summary p {
  color: var(--ink-soft);
}

.contact-layout {
  display: block;
}

.section-photo-panel {
  margin: 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(236, 245, 252, 0.74));
  box-shadow: 0 16px 34px rgba(22, 54, 62, 0.06);
  min-height: 220px;
  overflow: hidden;
}

.section-photo-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
}

.contact-summary {
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 251, 255, 0.82));
}

.contact-summary {
  border-top: 4px solid var(--green);
}


.visit-checklist {
  padding-top: 20px;
  padding-bottom: 20px;
}

.care-section {
  margin-bottom: 28px;
}

.contact-section#visit {
  margin-top: 12px;
}

.contact-intro {
  margin-bottom: 18px;
}

.contact-intro h2 {
  max-width: 14ch;
}

.compact-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.compact-checklist li {
  display: grid;
  gap: 2px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(23, 53, 77, 0.08);
}

.compact-checklist strong {
  font-family: "Libre Baskerville", "Times New Roman", serif;
  font-size: 0.98rem;
  color: var(--ink);
}

.compact-checklist span {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

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

.faq-item {
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(21, 104, 214, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.94));
  box-shadow: 0 12px 30px rgba(19, 58, 104, 0.05);
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--green) 100%);
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.faq-item p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.site-header,
.hero,
.overview-grid,
.physicians-section,
.care-section,
.contact-section,
.faq-section {
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-reveal="soft"] {
  transform: translateY(24px);
  transition-duration: 620ms;
}

.overview-panel,
.physician-card,
.care-card,
.contact-summary,
.faq-item,
.hero-copy,
.hero-hours-panel,
.hero-info-panel {
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.overview-panel:hover,
.physician-card:hover,
.care-card:hover,
.contact-summary:hover,
.faq-item:hover,
.hero-copy:hover,
.hero-hours-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(16, 47, 79, 0.12);
}

@media (max-width: 1080px) {
  .site-header,
  .section-heading,
  .contact-intro,
  .support-team-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero,
  .overview-grid,
  .contact-layout,
  .hero-top,
  .care-cards,
  .hero-info-panel,
  .compact-checklist,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .values-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-grid,
  .doctors-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 16px, 100%);
    margin: 10px auto 24px;
  }

  .site-header,
  .hero,
  .overview-panel {
    padding-left: 18px;
    padding-right: 18px;
  }

  .care-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-section#visit {
    padding-left: 18px;
    padding-right: 18px;
  }

  .overview-photo-panel {
    padding: 10px;
  }

  .values-panel {
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .site-header {
    border-radius: 28px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-info-block {
    border-right: 0;
    border-bottom: 1px solid rgba(23, 53, 77, 0.08);
  }

  .hero-info-block:last-child {
    border-bottom: 0;
  }

  .physician-card,
  .staff-card {
    grid-template-columns: 1fr;
  }

  .physician-frame {
    min-height: 112px;
  }

  .portrait-frame {
    aspect-ratio: 16 / 10;
    min-height: 112px;
  }
}
