 :root {
  --ae-primary: #3d3029;
  --ae-primary-soft: #655249;
  --ae-accent: #d4956a;
  --ae-accent-soft: #e8c4a0;
  --vb-sage: #8eb5a0;
  --vb-line-soft: #d6cfc7;
  --vb-touch: 44px;
  --ae-text: #3d3029;
  --ae-subtle: #f7ede3;
  --ae-surface: #fdf6f0;
  --ae-line: rgba(61, 48, 41, 0.12);
  --ae-line-strong: rgba(61, 48, 41, 0.18);
  --ae-shadow: 0 22px 48px rgba(61, 48, 41, 0.12);
  --ae-shadow-soft: 0 14px 30px rgba(61, 48, 41, 0.08);
  --ae-radius-xl: 2rem;
  --ae-radius-lg: 1.5rem;
  --ae-radius-md: 1rem;
  --ae-radius-sm: 0.8rem;
}

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

html {
  scroll-behavior: smooth;
}

body.ae-site-body {
  margin: 0;
  font-family: "Nunito", "Helvetica Neue", Arial, sans-serif;
  color: var(--ae-text);
  background:
    radial-gradient(circle at 12% 0%, rgba(232, 196, 160, 0.52), transparent 24%),
    radial-gradient(circle at 88% 6%, rgba(142, 181, 160, 0.2), transparent 18%),
    linear-gradient(180deg, #fff8f3 0%, #fdf6f0 48%, #f7efe8 100%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.85rem;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--ae-primary);
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.75rem, 5vw, 4.2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 1.95rem);
}

h4 {
  font-size: 1.125rem;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--ae-primary);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--ae-accent);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.grid-container {
  max-width: 76rem;
}

.ae-site-main {
  position: relative;
  z-index: 1;
  padding-bottom: 3rem;
}

.ae-topbar {
  background: var(--ae-primary);
  color: rgba(255, 250, 244, 0.82);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ae-topbar__inner {
  min-height: 2.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.ae-topbar__badge,
.ae-topbar__link {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  border-radius: 999px;
}

.ae-topbar__badge {
  font-weight: 800;
  color: #fff;
}

.ae-topbar__link {
  padding: 0 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 250, 244, 0.82);
}

.ae-topbar__link:hover,
.ae-topbar__link:focus-visible {
  border-color: rgba(216, 138, 45, 0.5);
  color: #fff5dd;
}

.ae-header-shell {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  background: rgba(255, 250, 244, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(20, 51, 63, 0.14);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0.9rem;
  z-index: 12;
}

.ae-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.ae-brand__mark {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #fff, #f4e7d6);
  box-shadow: inset 0 0 0 1px rgba(20, 51, 63, 0.08);
  flex: 0 0 auto;
}

.ae-brand__mark img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.ae-brand__copy {
  display: grid;
  min-width: 0;
}

.ae-brand__kicker {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(42, 46, 51, 0.58);
}

.ae-brand__title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1;
}

.ae-primary-nav {
  flex: 1 1 auto;
}

.ae-nav-list {
  gap: 0.55rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.ae-nav-item {
  position: relative;
}

.ae-nav-link,
.ae-nav-dropdown > summary {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.68rem 0.95rem;
  border-radius: 999px;
  color: var(--ae-primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.ae-nav-link:hover,
.ae-nav-link:focus-visible,
.ae-nav-dropdown > summary:hover,
.ae-nav-dropdown > summary:focus-visible,
.ae-nav-dropdown[open] > summary {
  transform: translateY(-2px);
  background: rgba(20, 51, 63, 0.06);
}

.ae-nav-item--cta .ae-nav-link--button {
  background: var(--ae-accent);
  color: #fff;
  box-shadow: 0 14px 26px rgba(216, 138, 45, 0.28);
}

.ae-nav-item--cta .ae-nav-link--button:hover,
.ae-nav-item--cta .ae-nav-link--button:focus-visible {
  color: #fff;
  background: #bf741d;
}

.ae-nav-dropdown {
  position: relative;
}

.ae-nav-dropdown > summary {
  list-style: none;
  cursor: pointer;
}

.ae-nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.ae-nav-dropdown > summary::after {
  content: "+";
  margin-left: 0.55rem;
  color: var(--ae-accent);
}

.ae-nav-dropdown[open] > summary::after {
  content: "−";
}

.ae-nav-dropdown__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.65rem);
  min-width: 17rem;
  padding: 1rem;
  background: rgba(255, 250, 244, 0.98);
  border: 1px solid var(--ae-line);
  border-radius: 1.15rem;
  box-shadow: var(--ae-shadow);
}

.ae-nav-dropdown__lead {
  display: inline-flex;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ae-accent);
}

.ae-nav-dropdown__list {
  display: grid;
  gap: 0.4rem;
  margin: 0;
}

.ae-nav-dropdown__list a {
  display: block;
  padding: 0.5rem 0.65rem;
  border-radius: 0.8rem;
  background: rgba(20, 51, 63, 0.035);
  color: var(--ae-text);
}

.ae-nav-dropdown__list a:hover,
.ae-nav-dropdown__list a:focus-visible {
  background: rgba(216, 138, 45, 0.12);
  color: var(--ae-primary);
}

.ae-section {
  padding: 5.5rem 0;
}

.ae-section--tight {
  padding-top: 2rem;
}

.ae-section--warm {
  background: linear-gradient(180deg, rgba(216, 138, 45, 0.12), rgba(216, 138, 45, 0.04));
}

.ae-section--clinics {
  padding-top: 4rem;
}

.ae-section--article,
.ae-section--legal {
  padding-top: 3rem;
}

.ae-hero {
  padding: 3rem 0 2rem;
}

.ae-hero__panel,
.ae-banner__panel,
.ae-footer-shell,
.ae-panel,
.ae-card {
  border: 1px solid var(--ae-line);
  border-radius: var(--ae-radius-xl);
  background: rgba(255, 250, 244, 0.94);
  box-shadow: var(--ae-shadow-soft);
}

.ae-hero__panel {
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(112deg, rgba(20, 51, 63, 0.94) 0%, rgba(20, 51, 63, 0.78) 48%, rgba(20, 51, 63, 0.52) 100%),
    linear-gradient(135deg, rgba(232, 199, 166, 0.65), rgba(216, 138, 45, 0.16));
  box-shadow: var(--ae-shadow);
  border: none;
}

.ae-hero__panel::before,
.ae-banner__panel::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.32), transparent 68%);
  pointer-events: none;
}

.ae-hero__panel::before {
  width: 24rem;
  height: 24rem;
  top: -7rem;
  right: -4rem;
}

.ae-hero__grid {
  position: relative;
  z-index: 1;
  padding: 4.5rem 4rem;
  align-items: center;
}

.ae-hero__copy {
  color: #fff;
  max-width: 34rem;
}

.ae-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 244, 232, 0.84);
}

.ae-hero__copy h1 {
  color: #fff;
  margin-bottom: 1rem;
}

.ae-hero__lead,
.ae-hero__card-copy {
  font-size: 1.06rem;
  line-height: 1.8;
}

.ae-hero__lead {
  color: rgba(255, 246, 236, 0.84);
}

.ae-hero__actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.ae-button,
.ae-inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.ae-button:hover,
.ae-inline-link:hover {
  transform: translateY(-2px);
}

.ae-button--solid {
  background: var(--ae-accent);
  color: #fff;
  box-shadow: 0 14px 26px rgba(216, 138, 45, 0.28);
}

.ae-button--solid:hover,
.ae-button--solid:focus-visible {
  background: #bf741d;
  color: #fff;
}

.ae-button--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.ae-hero__card {
  padding: 1.4rem;
  background: rgba(255, 250, 244, 0.92);
  border-radius: 1.7rem;
  box-shadow: 0 18px 38px rgba(20, 51, 63, 0.2);
}

.ae-hero__figure {
  margin: 0 0 1rem;
  border-radius: 1.25rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(232, 199, 166, 0.3), #fff);
}

.ae-banner {
  padding: 2.8rem 0 1.25rem;
}

.ae-banner__panel {
  position: relative;
  overflow: hidden;
  padding: 4rem 3rem;
  background: linear-gradient(135deg, rgba(232, 199, 166, 0.78), rgba(216, 138, 45, 0.16));
  box-shadow: var(--ae-shadow);
}

.ae-banner__panel::before {
  width: 20rem;
  height: 20rem;
  right: -5rem;
  top: -6rem;
}

.ae-banner__lead {
  max-width: 40rem;
  font-size: 1.05rem;
  color: rgba(42, 46, 51, 0.76);
}

.ae-section-heading,
.ae-copy-stack {
  margin-bottom: 2rem;
}

.ae-copy,
.ae-list li,
.ae-table-shell td,
.ae-table-shell th,
.ae-block-fallback {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(42, 46, 51, 0.86);
}

.ae-copy--lead {
  font-size: 1.08rem;
  color: rgba(42, 46, 51, 0.78);
}

.ae-panel {
  padding: 2rem;
}

.ae-panel--dark {
  background: linear-gradient(180deg, var(--ae-primary), var(--ae-primary-soft));
  color: rgba(255, 250, 244, 0.86);
  border: none;
  box-shadow: var(--ae-shadow);
}

.ae-panel--dark h3,
.ae-panel--dark h2,
.ae-panel--dark a,
.ae-panel--dark .ae-heading {
  color: #fff;
}

.ae-panel__copy,
.ae-panel--dark .ae-copy,
.ae-panel--dark .ae-list li,
.ae-panel--dark .ae-list a {
  color: rgba(255, 250, 244, 0.78);
}

.ae-sticky-card {
  position: sticky;
  top: 6.8rem;
}

.ae-card {
  height: 100%;
  padding: 1.6rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.ae-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(20, 51, 63, 0.12);
  border-color: rgba(216, 138, 45, 0.28);
}

.ae-card--service,
.ae-card--reason,
.ae-card--clinic,
.ae-card--contact,
.ae-card--category {
  background: var(--ae-surface);
}

.ae-card__icon {
  width: 4.2rem;
  height: 4.2rem;
  margin-bottom: 1rem;
  display: grid;
  place-items: center;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, rgba(232, 199, 166, 0.4), #fff);
  box-shadow: inset 0 0 0 1px rgba(20, 51, 63, 0.08);
}

.ae-card__icon img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.ae-card--reason {
  border-top: 0.4rem solid var(--ae-accent);
}

.ae-card--clinic .ae-list,
.ae-card--contact .ae-list,
.ae-price-card .ae-list,
.ae-panel--dark .ae-list {
  margin-top: 0.6rem;
}

.ae-card--image,
.ae-card__map,
.ae-card__price-media,
.ae-feature__media {
  overflow: hidden;
  border-radius: 1.25rem;
}

.ae-card--image,
.ae-card__map,
.ae-card__price-media {
  margin: 0;
}

.ae-feature__media img,
.ae-card__map img,
.ae-card__price-media img,
.ae-card--image img,
.ae-figure img,
.ae-gallery-card img,
.ae-main-image img {
  width: 100%;
  height: auto;
}

.ae-feature__body {
  padding-top: 1.4rem;
}

.ae-feature__meta {
  margin-top: 1.25rem;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(20, 51, 63, 0.12);
}

.ae-info-figure,
.ae-main-image,
.ae-figure,
.ae-gallery-card {
  margin: 0 0 1.25rem;
  border-radius: 1.2rem;
  overflow: hidden;
}

.ae-flow > * + *,
.ae-article-flow > * + *,
.ae-category-intro > * + * {
  margin-top: 1.1rem;
}

.ae-heading--1 {
  font-size: clamp(2.35rem, 4vw, 3.5rem);
}

.ae-heading--2 {
  font-size: clamp(1.85rem, 3vw, 2.45rem);
}

.ae-heading--3 {
  font-size: 1.45rem;
}

.ae-heading--4 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ae-list {
  margin: 0 0 1.25rem 1.15rem;
}

.ae-list li + li {
  margin-top: 0.55rem;
}

.ae-list--ordered li::marker {
  color: var(--ae-accent);
  font-weight: 800;
}

.ae-blockquote {
  margin: 1.5rem 0;
  padding: 1.35rem 1.5rem;
  border-left: 4px solid var(--ae-accent);
  border-radius: 0 1rem 1rem 0;
  background: rgba(232, 199, 166, 0.2);
}

.ae-separator {
  margin: 1.75rem 0;
  border: 0;
  border-top: 1px solid rgba(20, 51, 63, 0.12);
}

.ae-table-shell {
  overflow-x: auto;
  margin: 1.25rem 0;
  border-radius: 1rem;
  border: 1px solid rgba(20, 51, 63, 0.1);
}

.ae-data-table {
  width: 100%;
  margin: 0;
  background: #fff;
}

.ae-data-table th {
  background: rgba(20, 51, 63, 0.06);
  color: var(--ae-primary);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ae-data-table td,
.ae-data-table th {
  border-bottom: 1px solid rgba(20, 51, 63, 0.08);
}

.ae-inline-link {
  padding: 0;
  min-height: auto;
  font-size: 0.78rem;
  color: var(--ae-accent);
}

.ae-sidebar-panel,
.ae-toc {
  padding: 1.4rem;
  background: rgba(255, 250, 244, 0.94);
}

.ae-sidebar-links,
.ae-toc__list,
.ae-footer__list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.ae-sidebar-links a,
.ae-footer__list a,
.ae-toc__list a {
  display: block;
  padding: 0.65rem 0.8rem;
  border-radius: 0.85rem;
  background: rgba(20, 51, 63, 0.035);
}

.ae-sidebar-links a:hover,
.ae-footer__list a:hover,
.ae-toc__list a:hover,
.ae-sidebar-links a:focus-visible,
.ae-footer__list a:focus-visible,
.ae-toc__list a:focus-visible {
  background: rgba(216, 138, 45, 0.12);
}

.ae-breadcrumb-wrap {
  padding-top: 1.6rem;
}

.ae-breadcrumbs {
  margin: 0;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.88);
  border: 1px solid rgba(20, 51, 63, 0.08);
  display: inline-flex;
  box-shadow: var(--ae-shadow-soft);
}

.ae-breadcrumbs a,
.ae-breadcrumbs span {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(42, 46, 51, 0.72);
}

.ae-breadcrumbs li:not(:last-child)::after {
  color: rgba(42, 46, 51, 0.34);
}

.ae-article-shell,
.ae-legal-shell,
.ae-content-article,
.ae-content-category {
  background: rgba(255, 250, 244, 0.96);
}

.ae-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: rgba(42, 46, 51, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ae-main-image--float {
  float: right;
  width: min(38%, 19rem);
  margin: 0 0 1.25rem 1.25rem;
}

.ae-toc h2 {
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}

.ae-content-category__header {
  margin-bottom: 1.5rem;
}

.ae-card--category-horizontal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 10rem;
}

.ae-card--category-minimal {
  border-left: 4px solid var(--ae-accent);
}

.ae-site-footer {
  margin-top: 5rem;
  padding-bottom: 1.5rem;
}

.ae-footer-shell {
  padding: 2.4rem 2rem 1.2rem;
  background: linear-gradient(180deg, var(--ae-primary), var(--ae-primary-soft));
  border: none;
  box-shadow: var(--ae-shadow);
}

.ae-footer__brand {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.9rem;
  color: #fff;
}

.ae-footer__domain,
.ae-footer__bottom {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 250, 244, 0.56);
}

.ae-footer__list a {
  color: rgba(255, 250, 244, 0.82);
  background: rgba(255, 255, 255, 0.06);
}

.ae-footer__list a:hover,
.ae-footer__list a:focus-visible {
  color: #fff;
}

.ae-footer__bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 74em) {
  .ae-header-shell {
    border-radius: 1.75rem;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .ae-nav-list {
    justify-content: flex-start;
  }

  .ae-nav-dropdown__panel {
    left: 0;
    right: auto;
  }

  .ae-hero__grid,
  .ae-banner__panel {
    padding: 2.75rem 2rem;
  }
}

@media (max-width: 50em) {
  .ae-topbar__inner {
    padding: 0.5rem 0;
    flex-wrap: wrap;
  }

  .ae-header-shell {
    top: 0.45rem;
    padding: 1rem;
  }

  .ae-brand {
    width: 100%;
  }

  .ae-primary-nav {
    width: 100%;
  }

  .ae-nav-list {
    justify-content: flex-start;
  }

  .ae-nav-link,
  .ae-nav-dropdown > summary {
    width: 100%;
    justify-content: space-between;
  }

  .ae-nav-item {
    width: 100%;
  }

  .ae-nav-dropdown__panel {
    position: relative;
    top: 0.55rem;
    width: 100%;
    min-width: 0;
  }

  .ae-hero__grid {
    padding: 2.4rem 1.4rem;
  }

  .ae-section {
    padding: 3.4rem 0;
  }

  .ae-main-image--float {
    float: none;
    width: 100%;
    margin: 0 0 1.25rem;
  }

  .ae-footer-shell {
    padding: 1.8rem 1.3rem 1rem;
  }
}

@media print {
  body.ae-site-body {
    background: #fff;
    color: #000;
  }

  .ae-topbar,
  .ae-site-header,
  .ae-site-footer,
  .ae-sidebar-panel,
  .ae-toc {
    display: none !important;
  }

  .ae-panel,
  .ae-card {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

.vb-site-body .ae-topbar {
  background: rgba(61, 48, 41, 0.92);
}

.vb-site-body .ae-topbar__link {
  border-color: rgba(255, 246, 240, 0.18);
  background: rgba(255, 246, 240, 0.08);
  min-height: var(--vb-touch);
}

.vb-header-shell {
  background: rgba(253, 246, 240, 0.92);
  border-color: rgba(255, 255, 255, 0.9);
}

.vb-brand-mark__letters {
  display: inline-grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(145deg, #d4956a, #e8c4a0);
  color: #fff8f3;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
}

.vb-hero__panel {
  background:
    radial-gradient(circle at top right, rgba(232, 196, 160, 0.32), transparent 28%),
    linear-gradient(145deg, rgba(255, 250, 244, 0.96), rgba(247, 239, 232, 0.94));
}

.vb-hero__media {
  position: relative;
  min-height: 31rem;
  padding: 1rem 0 1rem 1.5rem;
}

.vb-hero__primary,
.vb-hero__secondary {
  margin: 0;
  overflow: hidden;
  border-radius: var(--ae-radius-xl);
  box-shadow: var(--ae-shadow);
}

.vb-hero__primary {
  max-width: 29rem;
  transform: rotate(2deg);
}

.vb-hero__primary img,
.vb-hero__secondary img,
.vb-sidebar-panel__media img,
.vb-footer-figure img,
.vb-gallery-card img,
.vb-item-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vb-hero__secondary {
  position: absolute;
  left: 0;
  bottom: -1rem;
  width: 14rem;
  height: 14rem;
  border: 0.55rem solid rgba(253, 246, 240, 0.94);
  transform: rotate(-4deg);
}

.vb-note-panel,
.vb-panel,
.vb-sidebar-panel,
.vb-error-panel {
  background: rgba(255, 251, 247, 0.96);
}

.vb-gallery-grid .cell {
  display: flex;
}

.vb-gallery-card {
  width: 100%;
  overflow: hidden;
}

.vb-gallery-card figcaption {
  padding: 1rem 1rem 1.15rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
}

.vb-sidebar-panel {
  position: sticky;
  top: 7rem;
}

.vb-sidebar-panel__media {
  margin: -0.45rem -0.45rem 1.2rem;
  overflow: hidden;
  border-radius: calc(var(--ae-radius-lg) - 0.3rem);
  aspect-ratio: 4 / 3;
}

.vb-footer-shell {
  background:
    radial-gradient(circle at top right, rgba(232, 196, 160, 0.16), transparent 22%),
    linear-gradient(180deg, #3d3029, #2c211d);
}

.vb-footer-figure {
  margin: 1.35rem 0 0;
  max-width: 11rem;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.vb-banner .ae-banner__panel {
  background:
    linear-gradient(145deg, rgba(253, 246, 240, 0.98), rgba(247, 239, 232, 0.96)),
    radial-gradient(circle at top right, rgba(142, 181, 160, 0.18), transparent 28%);
}

.vb-welcome-copy {
  max-width: 28rem;
}

.vb-item-card {
  width: 100%;
  overflow: hidden;
}

.vb-item-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.vb-item-card .ae-card__body {
  padding: 1.35rem;
}

.vb-item-card h2,
.vb-item-card h2 a {
  font-size: 1.3rem;
}

.vb-error-panel {
  text-align: center;
}

.vb-link-shelf {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.vb-link-pill {
  display: inline-flex;
  align-items: center;
  min-height: var(--vb-touch);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--vb-line-soft);
  background: rgba(253, 246, 240, 0.92);
  color: var(--ae-primary);
  font-weight: 700;
  box-shadow: var(--ae-shadow-soft);
}

.vb-link-pill:hover,
.vb-link-pill:focus-visible {
  background: rgba(142, 181, 160, 0.18);
  color: var(--ae-primary);
}

@media (max-width: 50em) {
  .vb-hero__media {
    min-height: 0;
    padding: 0;
  }

  .vb-hero__secondary {
    position: relative;
    left: auto;
    bottom: auto;
    width: 11rem;
    height: 11rem;
    margin: -3rem 0 0 auto;
  }

  .vb-sidebar-panel {
    position: relative;
    top: auto;
  }
}
