:root {
  /* Light theme: light blue + navy accents */
  --cream: #e8f2fc;
  --cream-dark: #d4e8f7;
  --ink: #0a1929;
  --ink-soft: #1e3a5f;
  --muted: #5a7a9a;
  --line: rgba(30, 58, 95, 0.16);
  --gold: #1e6bb8;
  --gold-deep: #0d47a1;
  --gold-soft: rgba(30, 107, 184, 0.14);
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(13, 71, 161, 0.1);
  --shadow-lg: 0 28px 70px rgba(13, 71, 161, 0.14);
  --header-bg: rgba(232, 242, 252, 0.94);
  --footer-bg: #cfe2f8;
  --page-hero-top: #d4e8f7;
  --hero-grad-a: rgba(30, 107, 184, 0.22);
  --hero-grad-b: rgba(100, 181, 246, 0.18);
  --hero-grad-base: #dbeaf8;
  --btn-primary-glow: rgba(30, 107, 184, 0.35);
  --nav-card-hover: rgba(30, 107, 184, 0.35);
  --newsletter-ring: rgba(30, 107, 184, 0.28);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --radius: 16px;
  --radius-sm: 10px;
  --max: 72rem;
  --header-h: 4.25rem;
}

html[data-theme="dark"] {
  --cream: #0a1628;
  --cream-dark: #0f2137;
  --ink: #e8f4fc;
  --ink-soft: #c5d9eb;
  --muted: #8fa8c2;
  --line: rgba(143, 168, 194, 0.22);
  --gold: #64b5f6;
  --gold-deep: #90caf9;
  --gold-soft: rgba(100, 181, 246, 0.16);
  --white: #152535;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.45);
  --header-bg: rgba(10, 22, 40, 0.92);
  --footer-bg: #0c1a2e;
  --page-hero-top: #132f4c;
  --hero-grad-a: rgba(100, 181, 246, 0.2);
  --hero-grad-b: rgba(30, 107, 184, 0.12);
  --hero-grad-base: #0f2137;
  --btn-primary-glow: rgba(100, 181, 246, 0.35);
  --nav-card-hover: rgba(100, 181, 246, 0.45);
  --newsletter-ring: rgba(100, 181, 246, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
}

.container {
  width: min(100% - 1.75rem, var(--max));
  margin-inline: auto;
}

.container.narrow {
  max-width: 44rem;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header-h);
  padding: 0 0.25rem;
  width: min(100%, var(--max));
  margin-inline: auto;
}

.site-header__end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.4rem;
  flex: 1;
  min-width: 0;
}

@media (min-width: 840px) {
  .site-header__end {
    flex: 0 1 auto;
    gap: 0.5rem;
  }
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
  cursor: pointer;
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

.theme-toggle__icon {
  display: block;
}

html:not([data-theme="dark"]) .theme-toggle__icon--sun {
  display: none;
}

html[data-theme="dark"] .theme-toggle__icon--moon {
  display: none;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.nav-toggle__lines {
  display: block;
  width: 1.2rem;
  height: 2px;
  background: var(--ink);
  box-shadow: 0 -6px 0 var(--ink), 0 6px 0 var(--ink);
}

.site-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.25rem 1.25rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(-120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s;
}

.site-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-nav a {
  display: block;
  padding: 0.65rem 0.5rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
}

.site-nav a:hover {
  color: var(--gold-deep);
  background: var(--gold-soft);
}

.site-nav a.is-active {
  color: var(--gold-deep);
  background: var(--gold-soft);
}

@media (min-width: 840px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    inset: auto;
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .site-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
  }

  .site-nav a {
    font-size: 0.95rem;
    padding: 0.45rem 0.85rem;
  }
}

/* ——— Hero (home) ——— */
.hero {
  position: relative;
  padding: clamp(2.5rem, 8vw, 5rem) 0 clamp(3rem, 10vw, 6rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 85% 0%, var(--hero-grad-a), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 100%, var(--hero-grad-b), transparent 50%),
    linear-gradient(180deg, var(--hero-grad-base) 0%, var(--cream) 55%, var(--cream-dark) 100%);
  z-index: 0;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
}

.hero__copy {
  max-width: 36rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold-deep);
  margin: 0 0 1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 6.5vw, 3.85rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 0.75rem;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  font-weight: 500;
  margin: 0 0 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.65rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #ffffff;
  box-shadow: 0 12px 28px var(--btn-primary-glow);
}

.btn--primary:hover {
  box-shadow: 0 16px 36px var(--btn-primary-glow);
}

html[data-theme="dark"] .btn--primary {
  color: #0a1628;
}

.btn--block {
  width: 100%;
}

.btn--ghost {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

/* ——— Hero property slideshow ——— */
.hero__slideshow {
  width: 100%;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  outline: none;
}

.hero__slideshow:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

.hero__slideshow-viewport {
  position: relative;
  aspect-ratio: 700 / 465;
  min-height: 13rem;
  background: var(--cream-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slide__img--empty {
  background: linear-gradient(145deg, var(--gold-soft), var(--cream-dark));
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(
    to top,
    rgba(10, 25, 41, 0.88) 0%,
    rgba(10, 25, 41, 0.2) 45%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-slide.is-active .hero-slide__overlay {
  pointer-events: auto;
}

.hero-slide__caption {
  display: block;
  padding: 1.25rem 1.35rem;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.hero-slide__caption:hover {
  opacity: 0.92;
}

.hero-slide__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.25rem;
}

.hero-slide__loc {
  display: block;
  font-size: 0.85rem;
  opacity: 0.92;
  line-height: 1.35;
}

.hero-slideshow__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease, transform 0.15s ease;
}

.hero-slideshow__btn:hover {
  background: #fff;
}

.hero-slideshow__btn:active {
  transform: translateY(-50%) scale(0.96);
}

.hero-slideshow__btn--prev {
  left: 0.5rem;
}

.hero-slideshow__btn--next {
  right: 0.5rem;
}

.hero-slideshow__dots {
  position: absolute;
  bottom: 0.65rem;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  padding: 0 2.5rem;
}

.hero-slideshow__dot {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-slideshow__dot:hover {
  background: rgba(255, 255, 255, 0.75);
}

.hero-slideshow__dot.is-active {
  background: #fff;
  transform: scale(1.35);
}

.hero__panel {
  display: none;
}

@media (min-width: 900px) {
  .hero__panel {
    display: block;
  }
}

.hero__panel-inner {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  min-height: 11rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
}

.hero__panel-label {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ink);
}

.hero__panel-accent {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

/* ——— Stats ——— */
.band {
  padding: 2.25rem 0;
}

.band--stats {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 720px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 600;
  color: var(--gold-deep);
  line-height: 1.15;
}

.stat__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

/* ——— Sections ——— */
.section {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.section--prose {
  background: var(--cream);
}

.section--nav-cards {
  background: var(--cream-dark);
}

.section--contact-preview {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.section--social {
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}

.section--social-muted {
  background: var(--cream);
}

.section--properties {
  background: var(--white);
}

.section--cta-band {
  padding: 2.5rem 0 3.5rem;
  background: var(--cream-dark);
}

.section__heading {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

.prose {
  color: var(--ink-soft);
}

.prose p {
  margin: 0 0 1.15rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose--large {
  font-size: 1.125rem;
  line-height: 1.75;
}

.prose--tight p {
  margin-bottom: 0.85rem;
}

.back-link {
  margin-top: 2rem;
}

.back-link a {
  color: var(--gold-deep);
  font-weight: 600;
  text-decoration: none;
}

.back-link a:hover {
  text-decoration: underline;
}

/* ——— Nav cards ——— */
.nav-cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .nav-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.nav-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.35rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-card:hover {
  border-color: var(--nav-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.nav-card__label {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
}

.nav-card__desc {
  font-size: 0.92rem;
  color: var(--muted);
}

/* ——— Contact / newsletter ——— */
.split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 3rem;
  }
}

.contact-card--solid {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--cream-dark);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.company-name {
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.75rem;
}

.address {
  font-style: normal;
  color: var(--muted);
  margin: 0 0 1rem;
}

.phone a {
  color: var(--gold-deep);
  font-weight: 700;
  text-decoration: none;
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.contact-form-card {
  position: relative;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-form .form-row {
  margin-bottom: 1rem;
}

.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--cream);
  color: var(--ink);
}

html[data-theme="dark"] .contact-form input,
html[data-theme="dark"] .contact-form textarea {
  background: var(--cream-dark);
}

.contact-form textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-row--challenge .challenge-hint {
  display: block;
  margin-top: 0.35rem;
}

/* Prompt digits/symbol: discourage copy-paste of the question */
.challenge-prompt {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0 0.15rem;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.challenge-prompt::selection,
.challenge-prompt *::selection {
  background: transparent;
}

.challenge-prompt__num {
  font-weight: 700;
  color: var(--gold-deep);
  min-width: 0.65em;
  text-align: center;
}

.challenge-prompt__sym {
  font-weight: 700;
  color: var(--ink);
  padding: 0 0.1rem;
}

.req {
  color: var(--gold-deep);
}

.form-alert {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-weight: 600;
}

.form-alert--success {
  background: rgba(46, 125, 50, 0.14);
  color: #1b5e20;
  border: 1px solid rgba(46, 125, 50, 0.35);
}

html[data-theme="dark"] .form-alert--success {
  color: #c8e6c9;
}

.form-alert--error {
  background: rgba(198, 40, 40, 0.12);
  color: #b71c1c;
  border: 1px solid rgba(198, 40, 40, 0.35);
}

html[data-theme="dark"] .form-alert--error {
  color: #ffcdd2;
}

.h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.newsletter-card,
.newsletter-card--featured {
  padding: 1.5rem 1.35rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.newsletter-card--featured {
  padding: 2rem 1.75rem;
  border-color: var(--newsletter-ring);
}

.newsletter-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.35rem;
  color: var(--ink);
}

.newsletter-card__sub {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-deep);
  margin: 0 0 1rem;
}

.newsletter-card__cta {
  display: inline-block;
  margin: 0.5rem 0 1rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--ink);
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.88rem;
}

.center {
  text-align: center;
}

.social-line {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
}

/* ——— Page inner heroes ——— */
.page-main {
  background: var(--cream);
}

.page-hero {
  padding: clamp(2rem, 5vw, 3.25rem) 0 1rem;
  background: linear-gradient(180deg, var(--page-hero-top) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero--compact .page-hero__title {
  margin: 0;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}

/* ——— Property grid (hotels) ——— */
.property-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .property-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .property-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.property-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.property-card__media {
  aspect-ratio: 700 / 465;
  background: var(--cream-dark);
}

.property-card__img-link {
  display: block;
  height: 100%;
  outline: none;
}

.property-card__img-link:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 2px;
}

.property-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.property-card__img-link:hover img {
  opacity: 0.94;
}

.property-card__media--empty {
  min-height: 10rem;
  background: linear-gradient(135deg, var(--gold-soft), var(--cream-dark));
}

.property-card__body {
  padding: 1.1rem 1.25rem 1.35rem;
}

.property-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.4rem;
  line-height: 1.25;
}

.property-card__addr {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
}

.property-card__map-link {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.property-card__map-link:hover {
  color: var(--gold);
}

/* ——— Footer ——— */
.site-footer {
  padding: 2.5rem 0 2rem;
  background: var(--footer-bg);
  border-top: 1px solid var(--line);
}

.disclaimer {
  font-size: 0.65rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 1.25rem;
  max-height: 14rem;
  overflow-y: auto;
  word-break: break-word;
  padding-right: 0.35rem;
}

.footer-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}
