/* ============================================
   PROVIDER HERO
   ============================================ */
.provider-hero {
  background: linear-gradient(135deg, #00476b 0%, #477080 100%);
  padding: 118px 0 0; /* 94px navbar + compact breathing room */
  overflow: hidden;
}

.provider-hero-inner {
  display: flex;
  align-items: flex-end;
  min-height: 382px;
  gap: 44px;
}

.provider-hero-text {
  flex: 1;
  padding-bottom: 36px;
}

.provider-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.32px;
  margin-bottom: 24px;
  transition: opacity 0.2s;
}

.provider-breadcrumb:hover {
  color: #fff;
}

.provider-breadcrumb .material-symbols-rounded {
  font-size: 18px;
}

.provider-name {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.026em;
  color: #fff;
  margin-bottom: 12px;
}

.provider-specialty {
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.32px;
  margin-bottom: 16px;
}

.provider-languages {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.4px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}

.provider-languages .material-symbols-rounded {
  font-size: 20px;
}

.provider-hero-actions {
  display: flex;
  gap: 12px;
}

.btn--outline-dark {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 19px 29px;
}

.btn--outline-dark:hover {
  background: rgba(255, 255, 255, 0.1);
}

.provider-hero-photo {
  flex: 0 0 360px;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 382px;
  overflow: visible;
}

.provider-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 20px 24px rgba(0, 25, 38, 0.2));
}

/* Softens any legacy one-sided crop that does not require a full AI outpaint. */
.provider-hero-photo:not(.provider-hero-photo--leader):not(.provider-hero-photo--expanded) img {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.provider-hero-photo--leader img {
  object-fit: contain;
  object-position: center bottom;
  border-radius: 0;
}

/* Leadership biographies have their own editorial composition: the knockout
   portrait and title read as one hero, while the biography sits in a raised
   paper-like panel instead of floating in a wide, empty page. */
.leadership-detail .provider-hero {
  position: relative;
  background:
    radial-gradient(circle at 79% 51%, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0) 31%),
    linear-gradient(125deg, #00476b 0%, #246b87 58%, #6791a3 100%);
}

.leadership-detail .provider-hero-inner,
.leadership-detail .provider-details-inner {
  max-width: 1200px;
  padding-left: 48px;
  padding-right: 48px;
}

.leadership-detail .provider-hero-inner {
  min-height: 450px;
  gap: 52px;
}

.leadership-detail .provider-hero-text {
  max-width: 570px;
  padding-bottom: 82px;
  position: relative;
  z-index: 2;
}

.leadership-detail .provider-breadcrumb {
  margin-bottom: 30px;
}

.leadership-detail .provider-name {
  font-size: clamp(56px, 5vw, 76px);
  line-height: 0.98;
  margin-bottom: 18px;
}

.leadership-detail .provider-specialty {
  max-width: 520px;
  font-size: 19px;
  line-height: 1.5;
  margin-bottom: 0;
}

.leadership-detail .provider-hero-photo--leader {
  flex: 0 0 480px;
  min-height: 450px;
  position: relative;
  z-index: 5;
  transform: translateY(-44px);
}

.leadership-detail .provider-hero-photo--leader img {
  filter: none;
}

.leadership-detail .provider-details {
  position: relative;
  z-index: 3;
  background: #f2f6f8;
  padding: 0 0 96px;
}

.leadership-detail .provider-details-inner {
  display: block;
  transform: translateY(-44px);
  margin-bottom: -44px;
}

.leadership-detail .provider-main {
  max-width: none;
  background: #fff;
  border-top: 0;
  padding: 68px 72px 76px;
  box-shadow: none;
}

.leadership-detail .provider-section {
  display: block;
  max-width: 840px;
  margin: 0 auto;
  padding: 0;
  border: 0;
}

.leadership-detail .provider-section-title {
  font-size: 38px;
  line-height: 1.12;
  margin: 0 0 34px;
}

.leadership-detail .provider-section-title::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 24px;
  background: #477080;
}

.leadership-detail .provider-bio {
  font-size: 17px;
  line-height: 1.78;
  letter-spacing: -0.22px;
  margin: 0;
}

.leadership-detail .provider-bio + .provider-bio {
  margin-top: 22px;
}

/* ============================================
   PROVIDER DETAILS
   ============================================ */
.provider-details {
  padding: 60px 0 80px;
}

.provider-details-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
}

.provider-main {
  min-width: 0;
}

.provider-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e8e4e0;
  scroll-margin-top: 180px;
}

.provider-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.provider-section-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.026em;
  color: #00476b;
  margin-bottom: 20px;
}

.provider-bio {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: -0.32px;
  color: #333333;
}

.provider-bio + .provider-bio {
  margin-top: 22px;
}

/* Credentials */
.provider-credentials {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.credential {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.credential-icon {
  flex: 0 0 44px;
  height: 44px;
  background: #f0f4f8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.credential-icon .material-symbols-rounded {
  font-size: 22px;
  color: #477080;
}

.credential-content {
  flex: 1;
}

.credential-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.32px;
  color: #00476b;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.credential-content p {
  font-size: 15px;
  line-height: 24px;
  color: #333333;
  letter-spacing: -0.32px;
}

/* Lists */
.provider-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.provider-list li {
  font-size: 15px;
  line-height: 24px;
  color: #333333;
  letter-spacing: -0.32px;
  padding-left: 20px;
  position: relative;
}

.provider-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #477080;
}

/* Specialties Tags */
.provider-specialties-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.specialty-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #f0f4f8;
  border-radius: var(--radius-btn);
  font-size: 14.4px;
  color: #00476b;
  letter-spacing: -0.32px;
  border: 1px solid #e0e6ec;
}

.specialty-tag .material-symbols-rounded {
  font-size: 20px;
  color: #477080;
}

/* ============================================
   SIDEBAR
   ============================================ */
.provider-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e8e4e0;
}

.sidebar-card-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.025em;
  color: #00476b;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-card-title .material-symbols-rounded {
  font-size: 24px;
  color: #477080;
}

.sidebar-location {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e4e0;
}

.sidebar-location:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.location-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: #00476b;
  margin-bottom: 2px;
}

.location-sublabel {
  font-size: 13px;
  color: #333333;
  opacity: 0.6;
  margin-bottom: 8px;
}

.location-address {
  font-size: 14px;
  line-height: 22px;
  color: #333333;
  letter-spacing: -0.32px;
  margin-bottom: 10px;
}

.location-directions {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #477080;
  font-weight: 500;
  transition: opacity 0.2s;
}

.location-directions:hover {
  opacity: 0.7;
}

.location-directions .material-symbols-rounded {
  font-size: 16px;
}

.sidebar-contact-item {
  font-size: 14.5px;
  line-height: 22px;
  color: #333333;
  margin-bottom: 8px;
  letter-spacing: -0.32px;
}

.sidebar-contact-item a {
  color: #477080;
}

.btn--full {
  width: 100%;
  justify-content: center;
  margin-top: 16px;
}

/* ============================================
   PROVIDERS INDEX PAGE
   ============================================ */
.providers-hero {
  background: linear-gradient(135deg, #00476b 0%, #477080 100%);
  padding: 154px 0 60px; /* 94px navbar + 60px spacing */
}

.providers-hero-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 72px;
  line-height: 1.05;
  letter-spacing: -0.029em;
  color: #fff;
  margin-bottom: 16px;
}

.providers-hero-desc {
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  letter-spacing: -0.32px;
}

/* Category Filters */
.providers-filters {
  padding: 32px 0;
  border-bottom: 1px solid #e8e4e0;
  position: sticky;
  top: 94px;
  background: #fff;
  z-index: 10;
}

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

.filter-tab {
  padding: 10px 24px;
  border-radius: var(--radius-btn);
  border: 1px solid #d6d1cc;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  color: #333333;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.filter-tab:hover {
  border-color: #477080;
  color: #477080;
}

.filter-tab.active {
  background: #477080;
  color: #fff;
  border-color: #477080;
}

/* Provider Grid */
.providers-grid-section {
  padding: 48px 0 80px;
}

.provider-category-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 36px;
  letter-spacing: -0.027em;
  color: #00476b;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #477080;
  display: inline-block;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.provider-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8e4e0;
  transition: box-shadow 0.3s, transform 0.2s;
  background: #fff;
}

.provider-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.provider-card-photo {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f0f4f8;
}

.provider-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.provider-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0bec5;
}

.provider-card-placeholder .material-symbols-rounded {
  font-size: 64px;
}

.provider-card-info {
  padding: 16px 20px 20px;
}

.provider-card-name {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.019em;
  color: #00476b;
  margin-bottom: 4px;
}

.provider-card-dept {
  font-size: 13px;
  line-height: 18px;
  color: #477080;
  letter-spacing: -0.2px;
}

/* ============================================
   SIDEBAR DARK CARD
   ============================================ */
.sidebar-card--dark {
  background: #477080;
  border-color: #477080;
}

.sidebar-card--dark .sidebar-card-title {
  color: #fff;
}

.sidebar-card--dark .sidebar-card-title .material-symbols-rounded {
  color: rgba(255, 255, 255, 0.7);
}

.sidebar-card-desc {
  font-size: 14px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.32px;
}

/* ============================================
   PROVIDER LOCATIONS SECTION
   ============================================ */
.provider-locations {
  padding: 60px 0 80px;
  background: #f8f9fa;
  border-top: 1px solid #e8e4e0;
  scroll-margin-top: 180px;
}

.provider-locations .provider-section-title {
  margin-bottom: 32px;
}

.provider-locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.location-card {
  background: #fff;
  border: 1px solid #e8e4e0;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 20px;
}

.location-card-icon {
  flex: 0 0 48px;
  height: 48px;
  background: #f0f4f8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-card-icon .material-symbols-rounded {
  font-size: 24px;
  color: #477080;
}

.location-card-content {
  flex: 1;
}

.location-card-name {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.017em;
  color: #00476b;
  margin-bottom: 2px;
}

.location-card-sublabel {
  font-size: 13px;
  color: #333333;
  opacity: 0.6;
  margin-bottom: 10px;
}

.location-card-address {
  font-size: 14.5px;
  line-height: 22px;
  color: #333333;
  letter-spacing: -0.32px;
  margin-bottom: 14px;
}

.location-card-actions {
  display: flex;
  gap: 20px;
}

.location-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13.5px;
  font-weight: 500;
  color: #477080;
  transition: opacity 0.2s;
}

.location-card-link:hover {
  opacity: 0.7;
}

.location-card-link .material-symbols-rounded {
  font-size: 18px;
}

/* ============================================
   PROVIDER PAGE TABS
   ============================================ */
.provider-tabs {
  background: #fff;
  border-bottom: 1px solid #e8e4e0;
  position: sticky;
  top: 94px;
  z-index: 10;
}

.provider-tabs-inner {
  display: flex;
  gap: 0;
}

.provider-tab {
  padding: 18px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #333333;
  opacity: 0.6;
  border-bottom: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s, color 0.2s;
  text-decoration: none;
}

.provider-tab:hover {
  opacity: 1;
  color: #477080;
}

.provider-tab.active {
  opacity: 1;
  color: #477080;
  border-bottom-color: #477080;
  font-weight: 500;
}

/* ============================================
   PROVIDER NEWS / IN THE MEDIA
   ============================================ */
.provider-news {
  padding: 60px 0 80px;
  scroll-margin-top: 180px;
}

.provider-news .provider-section-title {
  margin-bottom: 32px;
}

.provider-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8e4e0;
  transition: box-shadow 0.3s, transform 0.2s;
  background: #fff;
}

.news-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.news-card-video {
  width: 100%;
  aspect-ratio: 16/9;
  background: #00476b;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.news-card-video .material-symbols-rounded {
  font-size: 48px;
  color: #fff;
  opacity: 0.8;
}

.news-card-info {
  padding: 16px 20px 20px;
}

.news-card-source {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #477080;
  margin-bottom: 6px;
}

.news-card-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: -0.016em;
  color: #00476b;
  line-height: 1.35;
  margin-bottom: 6px;
}

.news-card-date {
  font-size: 12.5px;
  color: #333333;
  opacity: 0.5;
}

/* ============================================
   SPECIALTIES INDEX - SIDEBAR LAYOUT
   ============================================ */
.spec-layout {
  padding: 48px 0 0;
}

.spec-layout-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.spec-sidebar-sticky {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 48px;
}

/* Search */
.spec-search {
  position: relative;
}

.spec-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #9ca3af;
  pointer-events: none;
}

.spec-search-input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 1px solid #d6d1cc;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #00476b;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.spec-search-input::placeholder {
  color: #9ca3af;
}

.spec-search-input:focus {
  border-color: #477080;
}

/* Filter Groups */
.spec-filter-group {
  border-top: 1px solid #e8e4e0;
  padding-top: 20px;
}

.spec-filter-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #666666;
  opacity: 1;
  margin-bottom: 12px;
}

.spec-filter-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spec-filter-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 9px 12px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #333333;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s, color 0.15s;
}

.spec-filter-btn:hover {
  background: #f0f4f8;
}

.spec-filter-btn.active {
  background: #477080;
  color: #fff;
}

.spec-filter-count {
  font-size: 12px;
  color: #666666;
  opacity: 1;
  font-weight: 500;
}

.spec-filter-btn.active .spec-filter-count {
  color: #fff;
  opacity: 1;
}

/* Quick links */
.spec-filter-list--links a {
  display: block;
  padding: 7px 12px;
  font-size: 13.5px;
  color: #477080;
  border-radius: 6px;
  transition: background 0.15s;
}

.spec-filter-list--links a:hover {
  background: #f0f4f8;
}

/* Sidebar CTA */
.spec-sidebar-cta {
  background: #f0f4f8;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e0e6ec;
}

.spec-sidebar-cta > .material-symbols-rounded {
  font-size: 28px;
  color: #477080;
  margin-bottom: 8px;
  display: block;
}

.spec-sidebar-cta h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  letter-spacing: -0.016em;
  color: #00476b;
  margin-bottom: 6px;
}

.spec-sidebar-cta p {
  font-size: 13px;
  line-height: 20px;
  color: #333333;
  opacity: 0.7;
  margin-bottom: 14px;
}

.btn--sm {
  padding: 12px 20px;
  font-size: 13px;
}

/* Right Content Area */
.spec-content {
  min-width: 0;
  padding-bottom: 60px;
}

.spec-results-bar {
  font-size: 13px;
  color: #595959;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8e4e0;
}

.spec-category {
  margin-bottom: 48px;
  scroll-margin-top: 120px;
}

.spec-category-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.025em;
  color: #00476b;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #477080;
  display: inline-block;
}

.spec-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Specialty Card - horizontal list style */
.spec-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid #e8e4e0;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.15s, border-color 0.2s;
  text-decoration: none;
  color: inherit;
}

.spec-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  transform: translateX(4px);
  border-color: #477080;
}

.spec-card-icon {
  flex: 0 0 44px;
  height: 44px;
  background: #00476b;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spec-card-icon .material-symbols-rounded {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.7);
}

.spec-card-text {
  flex: 1;
  min-width: 0;
}

.spec-card-text h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: -0.016em;
  color: #00476b;
  margin-bottom: 2px;
}

.spec-card-text p {
  font-size: 13px;
  line-height: 19px;
  color: #333333;
  opacity: 0.6;
  letter-spacing: -0.2px;
}

/* ============================================
   RESPONSIVE - SUBPAGES (TABLET)
   ============================================ */
@media (max-width: 1024px) {

  /* Providers Hero */
  .providers-hero {
    padding: 120px 0 48px;
  }

  .providers-hero-title {
    font-size: 48px;
  }

  /* Provider Detail Hero */
  .provider-hero {
    padding: 104px 0 0;
  }

  .provider-hero-inner {
    flex-direction: column-reverse;
    align-items: center;
    gap: 24px;
  }

  .provider-hero-text {
    padding-bottom: 32px;
    text-align: center;
    align-items: center;
  }

  .provider-hero-actions {
    justify-content: center;
  }

  .provider-breadcrumb {
    justify-content: center;
  }

  .provider-name {
    font-size: 44px;
  }

  .provider-hero-photo {
    flex: none;
    align-self: center; /* base rule stretches, which left-aligns once stacked */
    width: min(330px, 72vw);
    height: 350px;
    min-height: 0;
  }

  /* Provider Tabs */
  .provider-tabs-inner {
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .provider-tab {
    white-space: nowrap;
    padding: 16px 18px;
    font-size: 13px;
  }

  /* Provider Details Grid */
  .provider-details-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .provider-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .sidebar-card {
    flex: 1 1 280px;
  }

  /* Provider Locations */
  .provider-locations-grid {
    grid-template-columns: 1fr;
  }

  /* Provider News */
  .provider-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Providers Index Grid */
  .providers-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .providers-filters {
    top: 72px;
  }

  .filter-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .filter-tab {
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Specialties Sidebar Layout */
  .spec-layout-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .spec-sidebar {
    order: -1;
  }

  .spec-sidebar-sticky {
    position: relative;
    top: auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e8e4e0;
    margin-bottom: 32px;
  }

  .spec-search {
    flex: 1 1 100%;
  }

  .spec-filter-group {
    flex: 1 1 200px;
    border-top: none;
    padding-top: 0;
  }

  .spec-sidebar-cta {
    flex: 1 1 100%;
  }
}

/* ============================================
   RESPONSIVE - SUBPAGES (MOBILE)
   ============================================ */
@media (max-width: 768px) {

  .providers-hero {
    padding: 110px 0 40px;
  }

  .providers-hero-title {
    font-size: 36px;
    letter-spacing: -1.5px;
  }

  .providers-hero-desc {
    font-size: 15px;
  }

  /* Provider Detail */
  .provider-name {
    font-size: 34px;
    letter-spacing: -1.2px;
  }

  .provider-hero-photo {
    width: min(270px, 74vw);
    height: 300px;
  }

  .provider-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .provider-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .provider-section-title {
    font-size: 26px;
  }

  /* Provider Tabs scroll */
  .provider-tabs {
    top: 72px;
  }

  .provider-tabs-inner {
    padding-right: 24px;
  }

  /* Sidebar cards stack */
  .provider-sidebar {
    flex-direction: column;
  }

  .sidebar-card {
    flex: none;
  }

  /* News */
  .provider-news-grid {
    grid-template-columns: 1fr;
  }

  /* Providers Index Grid */
  .providers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .provider-category-title {
    font-size: 28px;
  }

  /* Specialty sidebar collapses */
  .spec-sidebar-sticky {
    flex-direction: column;
  }

  .spec-filter-group {
    flex: none;
  }

  .spec-category-title {
    font-size: 24px;
  }
}

/* ============================================
   RESPONSIVE - SUBPAGES (SMALL MOBILE)
   ============================================ */
@media (max-width: 480px) {

  .providers-hero-title {
    font-size: 30px;
  }

  .provider-name {
    font-size: 28px;
  }

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

  .provider-hero-photo {
    width: min(230px, 78vw);
    height: 250px;
  }

  .provider-section-title {
    font-size: 22px;
  }

  .spec-card {
    padding: 12px 14px;
  }

  .spec-card-text h3 {
    font-size: 15px;
  }

  .spec-card-text p {
    display: none;
  }
}

@media (max-width: 1024px) {
  .leadership-detail .provider-hero-inner,
  .leadership-detail .provider-details-inner {
    max-width: 920px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .leadership-detail .provider-hero-inner {
    flex-direction: row;
    align-items: flex-end;
    min-height: 420px;
    gap: 24px;
    padding-top: 0;
  }

  .leadership-detail .provider-hero-text {
    max-width: none;
    padding-bottom: 64px;
    text-align: left;
  }

  .leadership-detail .provider-breadcrumb {
    justify-content: flex-start;
  }

  .leadership-detail .provider-name {
    font-size: clamp(48px, 6.5vw, 64px);
  }

  .leadership-detail .provider-hero-photo--leader {
    flex: 0 0 360px;
    align-self: flex-end;
    width: auto;
    height: 420px;
    min-height: 420px;
    aspect-ratio: auto;
  }

  .leadership-detail .provider-main {
    padding: 56px 52px 64px;
  }

}

@media (max-width: 768px) {
  .leadership-detail .provider-hero-inner,
  .leadership-detail .provider-details-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .leadership-detail .provider-hero-inner {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding-top: 34px;
  }

  .leadership-detail .provider-hero-text {
    width: 100%;
    padding-bottom: 28px;
    text-align: center;
  }

  .leadership-detail .provider-breadcrumb {
    justify-content: center;
    margin-bottom: 22px;
  }

  .leadership-detail .provider-name {
    font-size: clamp(42px, 12vw, 58px);
  }

  .leadership-detail .provider-specialty {
    margin-left: auto;
    margin-right: auto;
    font-size: 17px;
  }

  .leadership-detail .provider-hero-photo--leader {
    flex: none;
    align-self: center;
    width: min(370px, 86vw);
    height: 350px;
    min-height: 350px;
    transform: translateY(-24px);
  }

  .leadership-detail .provider-details {
    padding-bottom: 72px;
  }

  .leadership-detail .provider-details-inner {
    padding-left: 20px;
    padding-right: 20px;
    transform: translateY(-24px);
    margin-bottom: -24px;
  }

  .leadership-detail .provider-main {
    padding: 40px 30px 48px;
  }

  .leadership-detail .provider-section-title {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .leadership-detail .provider-bio {
    font-size: 16px;
    line-height: 1.75;
  }

  .leadership-detail .provider-bio + .provider-bio {
    margin-top: 22px;
  }
}

@media (max-width: 480px) {
  .leadership-detail .provider-hero-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .leadership-detail .provider-hero-photo--leader {
    width: min(320px, 88vw);
    height: 310px;
    min-height: 310px;
  }

  .leadership-detail .provider-details-inner {
    padding-left: 14px;
    padding-right: 14px;
  }

  .leadership-detail .provider-main {
    padding: 34px 24px 42px;
  }
}

/* ============================================
   PROVIDER PHOTO PLACEHOLDER (for generated pages)
   ============================================ */
.provider-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #333333 0%, #00476b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.provider-photo-placeholder .material-symbols-rounded {
  font-size: 140px;
  color: rgba(255, 255, 255, 0.25);
}

/* ============================================
   LOCATIONS INDEX
   ============================================ */
.loc-stats {
  background: #00476b;
  padding: 40px 0;
}

.loc-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.loc-stat {
  text-align: center;
  color: #fff;
}

.loc-stat-num {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 48px;
  letter-spacing: -0.023em;
  line-height: 1;
  margin-bottom: 8px;
}

.loc-stat-label {
  font-size: 13px;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.providers-hero--compact {
  padding: 134px 0 40px;
}

.providers-hero--compact .providers-hero-title {
  margin-bottom: 0;
}

.loc-map-section {
  background: #00476b;
  padding: 0;
}

.loc-map-wrap {
  position: relative;
  background: #eaf1f5;
}

.loc-map-wrap .locations-map {
  width: 100%;
  height: 520px;
  display: block;
}

.loc-map-wrap .locations-map-fallback {
  padding: 60px 24px;
  text-align: center;
  color: #00476b;
  background: #eaf1f5;
}

.loc-map-wrap .locations-map-fallback code {
  background: #fff;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 13px;
  color: #00476b;
}

.loc-filters {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.loc-filter {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #d6dee4;
  border-radius: 999px;
  padding: 0 18px;
  height: 48px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.loc-filter:focus-within {
  border-color: #477080;
  box-shadow: 0 0 0 3px rgba(94, 139, 158, 0.12);
}

.loc-filter--search {
  flex: 1 1 320px;
  max-width: 480px;
}

.loc-filter--county {
  flex: 0 0 auto;
}

.loc-filter-icon {
  font-size: 20px !important;
  color: #477080;
  margin-right: 10px;
}

.loc-filter-caret {
  font-size: 20px !important;
  color: #00476b;
  margin-left: 6px;
  pointer-events: none;
}

.loc-filter-input {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  color: #00476b;
  flex: 1 1 auto;
  min-width: 0;
}

.loc-filter-input::placeholder {
  color: rgba(0, 71, 107, 0.5);
}

.loc-filter--county .loc-filter-input {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 4px;
  cursor: pointer;
}

.loc-filter-count {
  font-family: var(--font-label);
  font-size: 13px;
  color: rgba(0, 71, 107, 0.65);
  margin-left: auto;
  white-space: nowrap;
}

.loc-empty {
  text-align: center;
  color: rgba(0, 71, 107, 0.7);
  padding: 40px 16px;
  font-size: 15px;
}

.loc-grid-section {
  padding: 64px 0 100px;
  background: #fafafa;
}

.loc-section-header {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.loc-section-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 40px;
  letter-spacing: -0.024em;
  color: #00476b;
  margin-bottom: 12px;
}

.loc-section-desc {
  font-size: 16px;
  line-height: 26px;
  color: #333333;
  opacity: 0.7;
}

/* Region tabs — Utah / Idaho & Wyoming */
.loc-tabs {
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid #e4e8ea;
  margin-bottom: 36px;
}

.loc-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: 36px;
  padding: 0 2px 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.025em;
  color: rgba(0, 71, 107, 0.42);
  transition: color 0.2s;
}

.loc-tab:last-child {
  margin-right: 0;
}

.loc-tab::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #477080;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.loc-tab:hover {
  color: #00476b;
}

.loc-tab.is-active {
  color: #00476b;
}

.loc-tab.is-active::after {
  transform: scaleX(1);
}

.loc-tab:focus-visible {
  outline: 2px solid #477080;
  outline-offset: 4px;
  border-radius: 4px;
}

.loc-tab-count {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.4px;
  line-height: 1;
  color: rgba(0, 71, 107, 0.55);
  background: #eef2f4;
  border-radius: 999px;
  padding: 5px 10px;
  transition: background 0.2s, color 0.2s;
}

.loc-tab.is-active .loc-tab-count {
  background: #477080;
  color: #fff;
}

.loc-panel[hidden] {
  display: none;
}

/* Regions side-by-side: Utah (wider) on the left, Idaho & Wyoming on the right */
/* Each tab panel is full width, so both regions share one 3-up grid */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.loc-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8e4e0;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s, transform 0.2s, border-color 0.25s;
}

.loc-card:hover {
  box-shadow: 0 12px 40px rgba(0, 71, 107, 0.12);
  transform: translateY(-3px);
  border-color: #477080;
}

.loc-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #00476b;
}

.loc-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s;
}

.loc-card:hover .loc-card-image img {
  transform: scale(1.04);
}

.loc-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: #477080;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.loc-card-body {
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.loc-card-name {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.025em;
  color: #00476b;
  margin-bottom: 2px;
}

.loc-card-sub {
  font-size: 13px;
  color: #477080;
  opacity: 1;
  margin-bottom: 14px;
}

.loc-card-address {
  display: flex;
  gap: 8px;
  font-size: 14px;
  line-height: 21px;
  color: #333333;
  opacity: 0.85;
  margin-bottom: 10px;
}

.loc-card-address .material-symbols-rounded {
  font-size: 18px;
  color: #477080;
  flex-shrink: 0;
  margin-top: 2px;
}

.loc-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666666;
  opacity: 1;
  margin-bottom: 18px;
}

.loc-card-meta .material-symbols-rounded {
  font-size: 17px;
  color: #477080;
}

.loc-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f0ece8;
}

.loc-card-phone {
  font-size: 14px;
  font-weight: 500;
  color: #00476b;
}

.loc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: #477080;
}

.loc-card-link .material-symbols-rounded {
  font-size: 16px;
  transition: transform 0.2s;
}

.loc-card:hover .loc-card-link .material-symbols-rounded {
  transform: translateX(3px);
}

/* ============================================
   LOCATION DETAIL PAGE
   ============================================ */
.loc-hero {
  position: relative;
  padding: 180px 0 80px;
  color: #fff;
  overflow: hidden;
}

.loc-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.loc-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 71, 107, 0.92) 0%, rgba(94, 139, 158, 0.75) 100%);
}

.loc-hero-inner {
  position: relative;
  z-index: 1;
}
.loc-hero-inner > * {
  max-width: 780px;
}

.loc-hero-inner .provider-breadcrumb {
  justify-content: flex-start;
}

.loc-hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.loc-hero-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 58px;
  line-height: 1.05;
  letter-spacing: -0.024em;
  color: #fff;
  margin-bottom: 12px;
}

.loc-hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.loc-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.loc-hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.loc-hero-meta-item .material-symbols-rounded {
  font-size: 20px;
  opacity: 0.7;
}

.loc-hero-actions {
  display: flex;
  gap: 12px;
}

.loc-detail {
  padding: 60px 0;
  background: #fff;
}

.loc-detail-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}

.loc-detail-main .provider-section {
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid #e8e4e0;
}

.loc-detail-main .provider-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.loc-hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.loc-hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f0ece8;
  font-size: 14px;
  color: #333333;
}

.loc-hours-list li:last-child {
  border-bottom: none;
}

.loc-hours-list li span:first-child {
  font-weight: 500;
  color: #00476b;
}

.loc-hours-closed {
  color: #333333;
  opacity: 0.5;
}

.loc-providers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.loc-provider-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid #e8e4e0;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.loc-provider-card:hover {
  box-shadow: 0 4px 16px rgba(0, 71, 107, 0.08);
  border-color: #477080;
  transform: translateY(-2px);
}

.loc-provider-photo {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  background: #00476b;
}

.loc-provider-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.loc-provider-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loc-provider-photo-placeholder .material-symbols-rounded {
  font-size: 30px;
  color: rgba(255, 255, 255, 0.35);
}

.loc-provider-info h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.015em;
  color: #00476b;
  margin-bottom: 2px;
  line-height: 1.25;
}

.loc-provider-info p {
  font-size: 12px;
  color: #333333;
  opacity: 0.6;
}

.loc-providers-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 500;
  color: #477080;
}

.loc-providers-more .material-symbols-rounded {
  font-size: 18px;
  transition: transform 0.2s;
}

.loc-providers-more:hover .material-symbols-rounded {
  transform: translateX(3px);
}

.loc-map-section {
  padding: 0;
}

.loc-map-placeholder {
  height: 360px;
  background: #e8eef2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #477080;
}

.loc-map-placeholder .material-symbols-rounded {
  font-size: 56px;
  opacity: 0.5;
}

.loc-map-placeholder p {
  font-size: 14px;
  opacity: 0.7;
}

/* ============================================
   SPECIALTY DETAIL PAGE
   ============================================ */
.sd-hero {
  position: relative;
  padding: 180px 0 80px;
  color: #fff;
  overflow: hidden;
}

.sd-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sd-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 71, 107, 0.9) 0%, rgba(94, 139, 158, 0.7) 100%);
}

.sd-hero-inner {
  position: relative;
  z-index: 1;
}
.sd-hero-inner > * {
  max-width: 820px;
}

.sd-hero-inner .provider-breadcrumb {
  justify-content: flex-start;
}

.sd-hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.sd-hero-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.024em;
  color: #fff;
  margin-bottom: 20px;
}

.sd-hero-sub {
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 640px;
}

.sd-hero-actions {
  display: flex;
  gap: 12px;
}

.sd-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding: 28px;
  background: #f0f4f8;
  border-radius: 16px;
  border: 1px solid #e0e9ef;
}

.sd-stat {
  text-align: center;
}

.sd-stat-num {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.023em;
  color: #477080;
  margin-bottom: 8px;
}

.sd-stat-label {
  font-size: 13px;
  line-height: 18px;
  color: #333333;
  opacity: 0.75;
}

.sd-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sd-faq-item {
  background: #fafafa;
  border: 1px solid #e8e4e0;
  border-radius: 12px;
  padding: 0;
  transition: border-color 0.2s, background 0.2s;
}

.sd-faq-item[open] {
  background: #fff;
  border-color: #477080;
}

.sd-faq-item summary {
  padding: 18px 22px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  color: #00476b;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.sd-faq-item summary::-webkit-details-marker {
  display: none;
}

.sd-faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: #477080;
  transition: transform 0.2s;
}

.sd-faq-item[open] summary::after {
  content: '–';
}

.sd-faq-item p {
  padding: 0 22px 20px;
  font-size: 14.5px;
  line-height: 24px;
  color: #333333;
  opacity: 0.85;
}

.sd-related {
  padding: 60px 0 80px;
  background: #f8f9fa;
  border-top: 1px solid #e8e4e0;
}

.sd-related .provider-section-title {
  margin-bottom: 32px;
}

/* ============================================
   RESPONSIVE - LOCATIONS & SPECIALTY DETAIL
   ============================================ */
@media (max-width: 1024px) {
  .loc-stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .loc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .loc-tab {
    font-size: 24px;
    margin-right: 28px;
  }
  .loc-card--featured {
    grid-column: span 1;
  }
  .loc-detail-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .loc-hero-title {
    font-size: 44px;
  }
  .sd-hero-title {
    font-size: 48px;
  }
  .loc-providers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sd-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .loc-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .loc-stat-num {
    font-size: 36px;
  }
  .loc-grid {
    grid-template-columns: 1fr;
  }
  .loc-tab {
    font-size: 20px;
    margin-right: 20px;
    gap: 8px;
  }
  .loc-card--featured {
    grid-column: span 1;
  }
  .loc-section-title {
    font-size: 30px;
  }
  .loc-hero {
    padding: 140px 0 60px;
  }
  .loc-hero-title {
    font-size: 34px;
    letter-spacing: -1.2px;
  }
  .loc-hero-actions {
    flex-direction: column;
  }
  .loc-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .loc-providers-grid {
    grid-template-columns: 1fr;
  }
  .sd-hero {
    padding: 140px 0 60px;
  }
  .sd-hero-title {
    font-size: 34px;
    letter-spacing: -1.2px;
  }
  .sd-hero-sub {
    font-size: 15px;
  }
  .sd-hero-actions {
    flex-direction: column;
  }
  .sd-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .sd-faq-item summary {
    font-size: 15px;
    padding: 16px 18px;
  }
}

/* ============================================
   PROVIDER MEDIA CAROUSEL
   ============================================ */
.provider-media {
  padding: 60px 0 80px;
  background: #fff;
  border-top: 1px solid #e8e4e0;
  scroll-margin-top: 180px;
}

.provider-media .provider-section-title {
  margin-bottom: 10px;
}

.provider-media-intro {
  font-size: 15px;
  line-height: 22px;
  color: #333333;
  opacity: 0.7;
  max-width: 640px;
  margin-bottom: 32px;
}

.media-carousel {
  position: relative;
}

.media-carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 8px;
  scrollbar-width: none;
}

.media-carousel-track::-webkit-scrollbar {
  display: none;
}

.media-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 8px;
  right: 0;
  width: 120px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #fff 70%);
  pointer-events: none;
  z-index: 1;
}

.media-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #e8e4e0;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.2s;
}

.media-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.media-card-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #00476b 0%, #477080 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-card-play {
  font-size: 56px !important;
  color: #fff;
  opacity: 0.9;
}

.media-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: #477080;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.media-card-info {
  padding: 16px 20px 20px;
}

.media-card-source {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #477080;
  margin-bottom: 6px;
}

.media-card-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: -0.016em;
  color: #00476b;
  line-height: 1.35;
  margin-bottom: 6px;
}

.media-card-date {
  font-size: 12.5px;
  color: #333333;
  opacity: 0.5;
}

.media-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e8e4e0;
  background: #fff;
  color: #477080;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  z-index: 2;
}

.media-carousel-btn--prev {
  left: -56px;
}

.media-carousel-btn--next {
  right: -56px;
}

.media-carousel-btn:hover {
  background: #477080;
  border-color: #477080;
  color: #fff;
}

.media-carousel-btn .material-symbols-rounded {
  font-size: 24px;
}

@media (max-width: 1024px) {
  .media-carousel-btn--prev {
    left: -16px;
  }
  .media-carousel-btn--next {
    right: -16px;
  }
}

@media (max-width: 768px) {
  .media-card {
    flex: 0 0 280px;
  }
  .media-carousel-btn {
    display: none;
  }
  .media-carousel::after {
    display: none;
  }
}

/* ============================================
   EVENTS - SHARED CATEGORY PILLS
   ============================================ */
.event-category {
  display: inline-block;
  align-self: flex-start;
  width: fit-content;
  max-width: max-content;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 1;
}

.event-category--education {
  background: #e6f0f6;
  color: #477080;
}

.event-category--support {
  background: #f0ede8;
  color: #6b4f3a;
}

.event-category--community {
  background: #e8f1ec;
  color: #2d6a4f;
}

.event-category--fundraiser {
  background: #fce8e6;
  color: #b04025;
}

/* ============================================
   EVENTS INDEX - HERO
   ============================================ */
.events-hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, #00476b 0%, #477080 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.events-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 60px;
  align-items: center;
}

.events-hero-eyebrow {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
  display: block;
}

.events-hero-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 72px;
  line-height: 1.02;
  letter-spacing: -0.023em;
  color: #fff;
  margin-bottom: 22px;
}

.events-hero-desc {
  font-size: 17px;
  line-height: 27px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin-bottom: 36px;
}

.events-hero-stats {
  display: flex;
  gap: 56px;
}

.events-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.events-stat-num {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 38px;
  line-height: 1;
  color: #fff;
}

.events-stat-label {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* Decorative calendar tiles in hero */
.events-hero-calendar {
  position: relative;
  width: 360px;
  height: 320px;
}

.calendar-tile {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: #00476b;
  transition: transform 0.3s;
}

.calendar-tile:hover {
  transform: translateY(-4px);
}

.calendar-tile--lg {
  width: 220px;
  height: 240px;
  top: 30px;
  right: 40px;
  z-index: 3;
  transform: rotate(3deg);
}

.calendar-tile--md {
  width: 150px;
  height: 168px;
  top: 80px;
  left: 0;
  z-index: 2;
  transform: rotate(-6deg);
  background: #f0e6d6;
}

.calendar-tile--sm {
  width: 110px;
  height: 124px;
  bottom: 0;
  right: 90px;
  z-index: 1;
  transform: rotate(8deg);
  background: #d6e6e0;
}

.calendar-month {
  font-family: var(--font-label);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #b04025;
}

.calendar-tile--lg .calendar-month {
  font-size: 16px;
  margin-bottom: 4px;
}

.calendar-tile--md .calendar-month,
.calendar-tile--sm .calendar-month {
  font-size: 12px;
}

.calendar-day {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: -0.013em;
  color: #00476b;
  line-height: 1;
}

.calendar-tile--lg .calendar-day {
  font-size: 110px;
}

.calendar-tile--md .calendar-day {
  font-size: 64px;
}

.calendar-tile--sm .calendar-day {
  font-size: 48px;
}

.calendar-year {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(0, 71, 107, 0.55);
  margin-top: 4px;
}

/* ============================================
   FEATURED EVENT CARD (index)
   ============================================ */
.featured-event {
  padding: 70px 0 30px;
  background: #fff;
}

.featured-event-card {
  display: grid;
  grid-template-columns: 460px 1fr;
  background: #fff;
  border-radius: 22px;
  border: 1px solid #e8e4e0;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 71, 107, 0.07);
}

.featured-event-img {
  position: relative;
  background: linear-gradient(135deg, #00476b 0%, #477080 60%, #477080 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  overflow: hidden;
}

.featured-event-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-event-img-placeholder {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-event-img-placeholder .material-symbols-rounded {
  font-size: 56px;
  color: #fff;
  opacity: 0.85;
}

.featured-event-pin {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fff;
  color: #b04025;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  z-index: 2;
}

.featured-event-body {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-event-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -0.026em;
  color: #00476b;
  margin: 14px 0 12px;
}

.featured-event-tagline {
  font-size: 16px;
  line-height: 26px;
  color: #333333;
  opacity: 0.78;
  margin-bottom: 24px;
  max-width: 540px;
}

.featured-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-bottom: 28px;
}

.featured-event-meta .event-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333333;
}

.featured-event-meta .event-meta-item .material-symbols-rounded {
  font-size: 20px;
  color: #477080;
}

.featured-event-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================
   EVENTS LIST + GRID (index)
   ============================================ */
.events-list {
  padding: 60px 0 80px;
  background: #fff;
}

.events-list-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.events-list-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.021em;
  color: #00476b;
  margin-top: 8px;
}

.events-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.event-filter {
  padding: 9px 16px;
  border: 1px solid #d6d1cc;
  border-radius: 999px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #333333;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.event-filter:hover {
  border-color: #477080;
  color: #477080;
}

.event-filter.active {
  background: #00476b;
  border-color: #00476b;
  color: #fff;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.event-card {
  display: flex;
  gap: 0;
  background: #fff;
  border: 1px solid #e8e4e0;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.3s, transform 0.2s, border-color 0.2s;
}

.event-card:hover {
  box-shadow: 0 16px 40px rgba(0, 71, 107, 0.1);
  transform: translateY(-2px);
  border-color: #d0c9c2;
}

.event-card-media {
  flex: 0 0 132px;
  position: relative;
  overflow: hidden;
  background: #dfe8ec;
}

.event-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.event-card:hover .event-card-media img {
  transform: scale(1.04);
}

.event-card-date {
  flex: 0 0 116px;
  background: #00476b;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 12px;
  gap: 2px;
}

.event-card-month {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.event-card-day {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}

.event-card-year {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

.event-card-body {
  flex: 1;
  padding: 22px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-card-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.014em;
  color: #00476b;
  margin: 6px 0 0;
}

.event-card-desc {
  font-size: 14px;
  line-height: 21px;
  color: #333333;
  opacity: 0.78;
}

.event-card-meta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12.5px;
  color: #333333;
  opacity: 0.7;
  margin-top: auto;
}

.event-card-meta .material-symbols-rounded {
  font-size: 16px;
  color: #477080;
  opacity: 0.85;
}

.event-card-meta-dot {
  margin: 0 4px;
  opacity: 0.5;
}

.events-empty {
  text-align: center;
  padding: 60px 0;
  color: #333333;
  opacity: 0.6;
}

.events-empty .material-symbols-rounded {
  font-size: 48px;
  display: block;
  margin: 0 auto 12px;
  color: #477080;
  opacity: 0.5;
}

/* ============================================
   PAST EVENTS
   ============================================ */
.past-events {
  padding: 60px 0 80px;
  background: #f8f9fa;
  border-top: 1px solid #e8e4e0;
}

.past-events-header {
  margin-bottom: 32px;
}

.past-events-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.022em;
  color: #00476b;
  margin-top: 8px;
}

.past-events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.past-event-card {
  background: #fff;
  border: 1px solid #e8e4e0;
  border-radius: 12px;
  padding: 22px;
}

.past-event-date {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #477080;
  display: block;
  margin-bottom: 8px;
}

.past-event-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.016em;
  color: #00476b;
  margin-bottom: 8px;
}

.past-event-desc {
  font-size: 13px;
  line-height: 20px;
  color: #333333;
  opacity: 0.7;
}

/* ============================================
   EVENTS NEWSLETTER STRIP
   ============================================ */
.events-newsletter {
  padding: 60px 0;
  background: #00476b;
  color: #fff;
}

.events-newsletter-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.events-newsletter-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.022em;
  color: #fff;
  margin-bottom: 8px;
}

.events-newsletter-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
}

.events-newsletter-form {
  display: flex;
  gap: 8px;
  flex: 1;
  max-width: 460px;
}

.events-newsletter-form input {
  flex: 1;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
}

.events-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.events-newsletter-form input:focus {
  border-color: #fff;
}

/* ============================================
   EVENT DETAIL HERO
   ============================================ */
.event-detail-hero {
  padding: 60px 0 50px;
  background: linear-gradient(180deg, #00476b 0%, #477080 100%);
  color: #fff;
}

.event-detail-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 60px;
  align-items: center;
}

.event-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-family: var(--font-label);
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  transition: color 0.2s;
}

.event-breadcrumb:hover {
  color: #fff;
}

.event-breadcrumb .material-symbols-rounded {
  font-size: 18px;
}

.event-detail-hero-text .event-category {
  margin-bottom: 18px;
}

.event-detail-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 60px;
  line-height: 1.04;
  letter-spacing: -0.023em;
  color: #fff;
  margin-bottom: 18px;
}

.event-detail-tagline {
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin-bottom: 32px;
}

.event-detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Ticket-style date display in hero */
.event-ticket {
  background: #fff;
  border-radius: 18px;
  width: 280px;
  color: #00476b;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.event-ticket-top {
  padding: 30px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.event-ticket-month {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1.4px;
  color: #b04025;
  margin-bottom: 4px;
}

.event-ticket-day {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 124px;
  line-height: 1;
  letter-spacing: -0.017em;
  color: #00476b;
}

.event-ticket-year {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(0, 71, 107, 0.55);
  margin-top: 6px;
}

.event-ticket-perf {
  height: 12px;
  background: #00476b;
  position: relative;
  margin: 0 -1px;
}

.event-ticket-perf::before,
.event-ticket-perf::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 24px;
  background: #477080;
  border-radius: 50%;
  transform: translateY(-50%);
}

.event-ticket-perf::before {
  left: -12px;
}

.event-ticket-perf::after {
  right: -12px;
}

.event-ticket-bottom {
  padding: 18px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-ticket-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.event-ticket-label {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(0, 71, 107, 0.55);
}

.event-ticket-value {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #00476b;
}

/* ============================================
   EVENT DETAIL META BAR
   ============================================ */
.event-meta-bar {
  background: #fff;
  border-bottom: 1px solid #e8e4e0;
  padding: 22px 0;
  position: sticky;
  top: 94px;
  z-index: 9;
}

.event-meta-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.event-meta-pill {
  display: flex;
  align-items: center;
  gap: 12px;
}

.event-meta-pill .material-symbols-rounded {
  flex: 0 0 38px;
  height: 38px;
  width: 38px;
  background: #f0f4f8;
  color: #477080;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.event-meta-pill div {
  display: flex;
  flex-direction: column;
}

.event-meta-label {
  font-family: var(--font-label);
  font-size: 10.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #333333;
  opacity: 0.55;
}

.event-meta-value {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #00476b;
}

/* ============================================
   EVENT DETAIL CONTENT
   ============================================ */
.event-detail-content {
  padding: 70px 0 80px;
  background: #fff;
}

.event-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 64px;
  align-items: start;
}

.event-detail-main {
  min-width: 0;
}

.event-section {
  margin-bottom: 56px;
  scroll-margin-top: 200px;
}

.event-section-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: #00476b;
  margin-bottom: 20px;
}

.event-section-lede {
  font-size: 18px;
  line-height: 28px;
  color: #00476b;
  margin-bottom: 18px;
  font-weight: 500;
  max-width: 720px;
}

.event-section p {
  font-size: 15.5px;
  line-height: 26px;
  color: #333333;
  opacity: 0.85;
  margin-bottom: 16px;
  max-width: 720px;
}

.event-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
  max-width: 720px;
}

.event-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  line-height: 24px;
  color: #333333;
}

.event-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 18px;
  height: 6px;
  border-radius: 999px;
  background: #477080;
  opacity: 0.85;
}

.event-list strong {
  color: #00476b;
  font-weight: 600;
}

.event-schedule {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid #e8e4e0;
  margin-left: 12px;
  max-width: 720px;
}

.event-schedule-item {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 18px 0 18px 26px;
}

.event-schedule-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 28px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #477080;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #477080;
}

.event-schedule-time {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #477080;
  padding-top: 2px;
}

.event-schedule-body h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: -0.015em;
  color: #00476b;
  margin-bottom: 4px;
}

.event-schedule-body p {
  font-size: 14.5px;
  line-height: 22px;
  color: #333333;
  opacity: 0.78;
  margin: 0;
}

.event-faq {
  border: 1px solid #e8e4e0;
  border-radius: 12px;
  margin-bottom: 10px;
  background: #fff;
  max-width: 720px;
}

.event-faq summary {
  list-style: none;
  padding: 16px 50px 16px 22px;
  font-family: var(--font-heading);
  font-size: 17px;
  color: #00476b;
  cursor: pointer;
  position: relative;
}

.event-faq summary::-webkit-details-marker {
  display: none;
}

.event-faq summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #477080;
  font-weight: 300;
  transition: transform 0.2s;
}

.event-faq[open] summary::after {
  content: '\2212';
}

.event-faq p {
  padding: 0 22px 18px;
  font-size: 14.5px;
  line-height: 23px;
  color: #333333;
  margin: 0;
}

/* ============================================
   EVENT DETAIL SIDEBAR
   ============================================ */
.event-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 200px;
}

.event-detail-sidebar .sidebar-card {
  background: #fff;
  border: 1px solid #e8e4e0;
  border-radius: 14px;
  padding: 22px;
}

.event-detail-sidebar .sidebar-card--cta {
  background: #00476b;
  color: #fff;
  border-color: #00476b;
}

.event-detail-sidebar .sidebar-card--cta .sidebar-card-title {
  color: #fff;
}

.event-detail-sidebar .sidebar-card--cta .sidebar-card-desc {
  color: rgba(255, 255, 255, 0.78);
}

.event-detail-sidebar .sidebar-card-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: -0.012em;
  color: #00476b;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-detail-sidebar .sidebar-card-title .material-symbols-rounded {
  font-size: 20px;
  color: #477080;
}

.event-detail-sidebar .sidebar-card--cta .sidebar-card-title .material-symbols-rounded {
  color: #fff;
}

.sidebar-card-desc {
  font-size: 13.5px;
  line-height: 21px;
  color: #333333;
  opacity: 0.78;
  margin-bottom: 14px;
}

/* Dark card keeps light text regardless of rule order above */
.sidebar-card--dark .sidebar-card-desc {
  color: #ffffff;
  opacity: 1;
}

.sidebar-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.sidebar-card:not(.sidebar-card--cta) .sidebar-card-link {
  color: #477080;
}

.sidebar-card-link .material-symbols-rounded {
  font-size: 16px;
}

.sidebar-card-link:hover {
  text-decoration: underline;
}

.sidebar-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-facts li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13.5px;
  color: #333333;
  border-bottom: 1px solid #f0ece8;
  padding-bottom: 10px;
}

.sidebar-facts li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-facts span {
  opacity: 0.6;
}

.sidebar-facts strong {
  font-weight: 600;
  color: #00476b;
  text-align: right;
}

.sidebar-map-placeholder {
  background: linear-gradient(135deg, #e6f0f6 0%, #d6e6e0 100%);
  border-radius: 10px;
  padding: 24px 18px;
  text-align: center;
  margin-bottom: 12px;
}

.sidebar-map-placeholder .material-symbols-rounded {
  font-size: 36px;
  color: #477080;
  margin-bottom: 8px;
}

.sidebar-map-placeholder p {
  font-size: 13.5px;
  line-height: 19px;
  color: #00476b;
  margin: 0;
}

.event-share {
  display: flex;
  gap: 10px;
}

.event-share a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f0f4f8;
  color: #477080;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}

.event-share a:hover {
  background: #477080;
  color: #fff;
}

.event-share .material-symbols-rounded {
  font-size: 18px;
}

/* ============================================
   RELATED EVENTS
   ============================================ */
.related-events {
  padding: 70px 0 80px;
  background: #f8f9fa;
  border-top: 1px solid #e8e4e0;
}

.related-events-header {
  margin-bottom: 30px;
}

.related-events-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: #00476b;
  margin-top: 6px;
}

.related-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ============================================
   EVENTS RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .events-hero {
    padding: 110px 0 60px;
  }
  .events-hero-inner {
    grid-template-columns: 1fr;
  }
  .events-hero-calendar {
    margin: 0 auto;
  }
  .events-hero-title {
    font-size: 56px;
  }
  .featured-event-card {
    grid-template-columns: 1fr;
  }
  .featured-event-img {
    min-height: 240px;
  }
  .events-grid {
    grid-template-columns: 1fr;
  }
  .past-events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .event-detail-hero-inner {
    grid-template-columns: 1fr;
  }
  .event-ticket {
    margin: 0 auto;
  }
  .event-detail-title {
    font-size: 44px;
  }
  .event-meta-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .event-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .event-detail-sidebar {
    position: static;
  }
  .related-events-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .events-hero {
    padding: 60px 0 40px;
  }
  .events-hero-title {
    font-size: 40px;
  }
  .events-hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }
  .events-hero-calendar {
    width: 280px;
    height: 240px;
  }
  .calendar-tile--lg {
    width: 170px;
    height: 180px;
  }
  .calendar-tile--lg .calendar-day {
    font-size: 80px;
  }
  .calendar-tile--md {
    width: 110px;
    height: 124px;
  }
  .calendar-tile--md .calendar-day {
    font-size: 44px;
  }
  .calendar-tile--sm {
    width: 88px;
    height: 96px;
  }
  .calendar-tile--sm .calendar-day {
    font-size: 36px;
  }
  .featured-event-body {
    padding: 28px 24px;
  }
  .featured-event-title {
    font-size: 28px;
  }
  .events-list-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .events-list-title {
    font-size: 30px;
  }
  .past-events-grid {
    grid-template-columns: 1fr;
  }
  .event-card-date {
    flex: 0 0 92px;
  }
  .event-card-media {
    flex-basis: 96px;
  }
  .event-card-day {
    font-size: 42px;
  }
  .event-detail-title {
    font-size: 34px;
  }
  .event-meta-bar-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .event-meta-bar {
    position: static;
  }
  .event-section-title {
    font-size: 26px;
  }
  .event-schedule-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .events-newsletter-form {
    flex-direction: column;
    width: 100%;
  }
  .events-newsletter-form .btn {
    width: 100%;
    justify-content: center;
  }
}


/* ============================================
   LOCATIONS MAP BAND (below the clinic list)
   ============================================ */
.loc-map-band {
  background: #fafafa;
  padding: 8px 0 96px;
}

.loc-map-band .loc-map-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 71, 107, 0.12);
}

.loc-map-band .locations-map {
  height: 520px;
}

@media (max-width: 768px) {
  .loc-map-band {
    padding-bottom: 64px;
  }

  .loc-map-band .locations-map {
    height: 360px;
  }
}

/* Radiotheranostics split (radiation-oncology page) */
.rt-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.rt-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rt-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #e8e4e0;
  border-radius: var(--radius-card);
  padding: 18px 22px;
}

.rt-item > .material-symbols-rounded {
  font-size: 26px;
  color: #477080;
}

.rt-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rt-item-name {
  font-weight: 600;
  font-size: 15px;
  color: #00476b;
}

.rt-item-name em {
  font-style: normal;
  font-weight: 400;
  color: #5a6670;
}

.rt-item-desc {
  font-size: 13px;
  color: #5a6670;
}

@media (max-width: 900px) {
  .rt-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.rt-feature-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
}

@media (max-width: 700px) {
  .rt-feature-callout { grid-template-columns: 1fr; gap: 24px; }
  .rt-feature-callout .btn { justify-self: start; }
}

.media-card:focus-visible { outline: 3px solid #477080; outline-offset: -3px; }
@media (prefers-reduced-motion: reduce) {
  .media-carousel-track { scroll-behavior: auto; }
  .media-card { transition: none; }
}
