/* style.css
   Core layout primitives + components shared across pages.
*/

.site-main {
  padding-top: 64px; /* matches React Layout: <main className="pt-16"> */
}

.container-custom {
  max-width: 80rem; /* Tailwind max-w-7xl */
  margin-left: auto;
  margin-right: auto;
}

.section-padding {
  padding-left: 1rem;  /* px-4 */
  padding-right: 1rem; /* px-4 */
  padding-top: 4rem;   /* py-16 */
  padding-bottom: 4rem;
}

.surface-warm { background-color: hsl(var(--surface-warm)); }
.surface-green { background-color: hsl(var(--surface-green)); }

.btn-primary,
.btn-secondary,
.btn-accent,
.btn-outline-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 0.5rem; /* rounded-lg */
  padding: 0.75rem 2rem; /* py-3 px-8 */
  transition: transform 300ms, box-shadow 300ms, background-color 300ms, color 300ms, border-color 300ms;
  will-change: transform;
}

.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 4px 14px 0 hsl(var(--primary) / 0.35);
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px 0 hsl(var(--primary) / 0.5);
}

.btn-secondary {
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  box-shadow: 0 4px 14px 0 hsl(var(--secondary) / 0.35);
}
.btn-secondary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px 0 hsl(var(--secondary) / 0.5);
}

.btn-accent {
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  box-shadow: 0 4px 14px 0 hsl(var(--accent) / 0.35);
}
.btn-accent:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px 0 hsl(var(--accent) / 0.5);
}

.btn-outline-primary {
  border: 2px solid hsl(var(--primary));
  color: hsl(var(--primary));
  background: transparent;
}
.btn-outline-primary:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.card-hover {
  transition: transform 300ms, box-shadow 300ms;
  backface-visibility: hidden;
}
.card-hover:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.text-gradient {
  background-image: var(--hero-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Basic color helpers used by page content */
.bg-primary { background: hsl(var(--primary)); }
.bg-secondary { background: hsl(var(--secondary)); }
.bg-muted { background: hsl(var(--muted)); }
.bg-card { background: hsl(var(--card)); }
.bg-background { background: hsl(var(--background)); }

.text-primary { color: hsl(var(--primary)); }
.text-secondary { color: hsl(var(--secondary)); }
.text-accent { color: hsl(var(--accent)); }
.text-foreground { color: hsl(var(--foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.text-secondary-foreground { color: hsl(var(--secondary-foreground)); }

/* Layout helpers (kept small, only what we use now) */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-xl { max-width: 36rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }

.flex { display: flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }

.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.p-6 { padding: 1.5rem; }
.p-4 { padding: 1rem; }
.p-8 { padding: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }

.rounded-xl { border-radius: 0.75rem; }
.border { border: 1px solid hsl(var(--border)); }
.border-border { border-color: hsl(var(--border)); }
.shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.shadow-sm { box-shadow: 0 1px 2px rgb(0 0 0 / 0.06); }

.font-display { font-family: var(--font-display); }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.font-medium { font-weight: 500; }
.leading-snug { line-height: 1.375; }

.leading-tight { line-height: 1.2; }
.leading-relaxed { line-height: 1.625; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }

.inline-flex { display: inline-flex; }
.underline { text-decoration: underline; }

.w-full { width: 100%; }
.h-48 { height: 12rem; }
.h-56 { height: 14rem; }
.h-64 { height: 16rem; }
.h-72 { height: 18rem; }
.object-cover { object-fit: cover; }
.overflow-hidden { overflow: hidden; }
.cursor-pointer { cursor: pointer; }

/* Pill */
.pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
}
.pill--muted {
  background: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
}

/* Page hero (matches React PageHero) */
.page-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
  background-size: cover;
  background-position: center;
  --scroll-zoom: 1;
  transform: scale(var(--scroll-zoom));
  transform-origin: center center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: hsl(var(--primary) / 0.8);
}
.page-hero__inner {
  position: relative;
  z-index: 1;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
  margin-bottom: 0.75rem;
}
.page-hero__subtitle {
  font-size: 1.125rem;
  color: hsl(var(--primary-foreground) / 0.8);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* Simple max-width helpers used by inner pages */
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }

/* Form controls (matches Tailwind-based inputs in React) */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--input));
  background: hsl(var(--background));
  font-size: 0.875rem;
  outline: none;
}
.form-textarea { resize: none; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  box-shadow: 0 0 0 2px hsl(var(--primary));
  border-color: hsl(var(--primary));
}

/* Modal (Gallery) */
.modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal.is-open { display: flex; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: hsl(var(--foreground) / 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 64rem;
}
.modal__close {
  position: absolute;
  top: -2.5rem; /* matches React: -top-10 */
  right: 0;
  background: transparent;
  border: 0;
  color: hsl(var(--primary-foreground));
  cursor: pointer;
  padding: 0;
}

.modal__close svg {
  width: 28px;
  height: 28px;
}

.modal__image {
  width: 100%;
  border-radius: 0.75rem; /* rounded-xl */
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); /* shadow-2xl */
}

/* Programs nav */
.program-nav {
  position: sticky;
  top: 72px;
  z-index: 40;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.program-nav__scroll {
  overflow-x: auto;
}
.program-nav__row {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  min-width: max-content;
  padding: 0.75rem 0.5rem;
}
.program-nav__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--primary-foreground) / 0.8);
  transition: background-color 200ms, color 200ms;
}
.program-nav__link:hover {
  color: hsl(var(--primary-foreground));
  background: hsl(var(--primary-foreground) / 0.15);
}

/* Soft chips background (Tailwind /10 equivalents) */
.bg-primary-soft { background: hsl(var(--primary) / 0.1); }
.bg-secondary-soft { background: hsl(var(--secondary) / 0.1); }
.bg-accent-soft { background: hsl(var(--accent) / 0.1); }

/* Reveal helper (safe default visible; JS adds animated classes) */
[data-reveal] {
  opacity: 1;
  transform: none;
}

/* Homepage hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  --scroll-zoom: 1;
  transform: scale(var(--scroll-zoom));
  transform-origin: center center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: hsl(var(--primary) / 0.7);
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Section heading (matches SectionHeading component) */
.section-heading {
  margin-bottom: 3rem;
}
.section-heading.is-center {
  text-align: center;
}
.section-heading__title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}
.section-heading__bar {
  width: 5rem;
  height: 0.25rem;
  background: hsl(var(--secondary));
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.section-heading.is-center .section-heading__bar {
  margin-left: auto;
  margin-right: auto;
}
.section-heading__subtitle {
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* Scroll progress (global layout) */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px; /* h-1 */
  z-index: 60;
}
.scroll-progress__bar {
  height: 100%;
  width: 0%;
  background: hsl(var(--secondary));
  transition: width 150ms ease-out;
}

/* Navbar */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsla(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.06);
  border-bottom: 1px solid hsl(var(--border));
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}

.site-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-nav__logo {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
}

.site-nav__brand-text {
  display: none;
}

.site-nav__brand-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: hsl(var(--primary));
  line-height: 1.1;
}
.site-nav__brand-subtitle {
  display: block;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.site-nav__desktop {
  display: none;
  align-items: center;
  gap: 0.125rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 200ms, color 200ms;
  color: hsl(var(--foreground));
}
.nav-link:hover {
  background: hsl(var(--muted));
}
.nav-link.is-active {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.nav-dd {
  position: relative;
}
.nav-chevron {
  width: 14px;
  height: 14px;
  display: inline-block;
  transition: transform 200ms;
  position: relative;
}
.nav-chevron::before {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  clip-path: polygon(20% 35%, 50% 65%, 80% 35%, 88% 43%, 50% 82%, 12% 43%);
}
.nav-dd.is-open .nav-chevron {
  transform: rotate(180deg);
}

.nav-dd__panel {
  position: absolute;
  left: 0;
  top: 100%;
  padding-top: 0.25rem;
  z-index: 50;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 200ms, transform 200ms;
}
.nav-dd.is-open .nav-dd__panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-dd__menu {
  min-width: 200px;
  border-radius: 0.375rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--popover));
  color: hsl(var(--popover-foreground));
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  padding: 0.25rem 0;
}
.nav-dd__item {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  transition: background-color 200ms, color 200ms;
}
.nav-dd__item:hover {
  background: hsl(var(--muted));
}
.nav-dd__item.is-active {
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  font-weight: 500;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 0.375rem;
  border: 0;
  background: transparent;
  color: hsl(var(--foreground));
  cursor: pointer;
}
.nav-toggle:hover {
  background: hsl(var(--muted));
}
.nav-toggle__icon {
  width: 24px;
  height: 24px;
  position: relative;
  display: inline-block;
}
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 200ms, top 200ms, opacity 200ms;
}
.nav-toggle__icon::before { top: 8px; }
.nav-toggle__icon::after { top: 14px; }
.site-nav.is-mobile-open .nav-toggle__icon::before { top: 11px; transform: rotate(45deg); }
.site-nav.is-mobile-open .nav-toggle__icon::after { top: 11px; transform: rotate(-45deg); }

.site-nav__mobile {
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  max-height: 70vh;
  overflow-y: auto;
}
.site-nav__mobile-inner {
  display: block;
}
.m-link {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-bottom: 1px solid hsl(var(--border));
  transition: background-color 200ms, color 200ms;
}
.m-link:hover {
  background: hsl(var(--muted));
}
.m-link.is-active {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.m-acc {
  border-bottom: 1px solid hsl(var(--border));
}
.m-acc__row {
  display: flex;
  align-items: center;
}
.m-acc__link {
  flex: 1;
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 200ms, color 200ms;
}
.m-acc__link.is-active {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.m-acc__toggle {
  padding: 0.75rem 1rem;
  border: 0;
  background: transparent;
  color: hsl(var(--foreground));
  cursor: pointer;
  transition: background-color 200ms;
}
.m-acc__toggle:hover {
  background: hsl(var(--muted));
}
.m-acc__chev {
  width: 16px;
  height: 16px;
  display: inline-block;
  transition: transform 200ms;
  position: relative;
}
.m-acc__chev::before {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  clip-path: polygon(20% 35%, 50% 65%, 80% 35%, 88% 43%, 50% 82%, 12% 43%);
}
.m-acc.is-open .m-acc__chev {
  transform: rotate(180deg);
}
.m-acc__panel {
  background: hsla(var(--muted) / 0.5);
}
.m-acc__child {
  display: block;
  padding: 0.625rem 1.5rem 0.625rem 2.5rem;
  font-size: 0.875rem;
  transition: color 200ms;
  color: hsl(var(--muted-foreground));
}
.m-acc__child:hover {
  color: hsl(var(--foreground));
}
.m-acc__child.is-active {
  color: hsl(var(--primary));
  font-weight: 500;
}

/* Footer */
.site-footer {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-brand__logo {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
}
.footer-brand__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0;
}
.footer-brand__subtitle {
  font-size: 0.875rem;
  opacity: 0.8;
  margin: 0;
}
.footer-desc {
  font-size: 0.875rem;
  opacity: 0.8;
  line-height: 1.625;
}
.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0 0 1rem;
}
.footer-links,
.footer-contact,
.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li + li { margin-top: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  opacity: 0.8;
  transition: opacity 200ms;
}
.footer-links a:hover { opacity: 1; }

.footer-contact {
  display: grid;
  gap: 0.75rem;
  font-size: 0.875rem;
  opacity: 0.8;
}
.footer-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer-contact__item a {
  opacity: 0.95;
}

.footer-ic {
  width: 16px;
  height: 16px;
  margin-top: 0.125rem;
  flex: 0 0 16px;
  color: hsla(var(--primary-foreground) / 0.8);
}

.footer-legal {
  display: grid;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsla(var(--primary-foreground) / 0.2);
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.6;
  display: grid;
  gap: 0.25rem;
}

/* Floating contact */
.floating-contact {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.floating-contact__panel {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 300ms, transform 300ms;
}
.floating-contact.is-open .floating-contact__panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.12), 0 4px 6px -4px rgb(0 0 0 / 0.12);
  transition: box-shadow 200ms;
}
.floating-contact__item:hover {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.15), 0 8px 10px -6px rgb(0 0 0 / 0.15);
}
.floating-contact__item--accent {
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}
.floating-contact__item--secondary {
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}
.floating-contact__label {
  font-size: 0.875rem;
  font-weight: 500;
}
.floating-ic {
  width: 18px;
  height: 18px;
  color: hsla(var(--accent-foreground) / 0.95);
}

.floating-contact__toggle {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  border: 0;
  cursor: pointer;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.12), 0 4px 6px -4px rgb(0 0 0 / 0.12);
  transition: transform 200ms, box-shadow 200ms;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.floating-contact__toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.15), 0 8px 10px -6px rgb(0 0 0 / 0.15);
}
.floating-contact__toggle-ic {
  width: 24px;
  height: 24px;
  color: hsla(var(--primary-foreground) / 0.95);
  position: absolute;
  inset: 0;
  margin: auto;
}

.floating-contact__toggle-ic--close {
  display: none;
}
.floating-contact.is-open .floating-contact__toggle-ic--open {
  display: none;
}
.floating-contact.is-open .floating-contact__toggle-ic--close {
  display: block;
}

/* Blog listing: whole card is a link */
.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
  border-radius: inherit;
  outline-offset: 2px;
}
.blog-card-link:hover .blog-card-link__title {
  color: hsl(var(--primary));
}
.blog-card-link:focus-visible {
  outline: 2px solid hsl(var(--ring));
}

/* Blog article layout */
.blog-breadcrumb {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.25rem;
}
.blog-breadcrumb a {
  color: hsl(var(--primary));
  text-decoration: none;
  font-weight: 600;
}
.blog-breadcrumb a:hover {
  text-decoration: underline;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.blog-detail-body {
  font-size: 1rem;
  line-height: 1.75;
  color: hsl(var(--foreground));
}
.blog-detail-body p {
  margin: 0 0 1.125rem;
}
.blog-detail-body h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin: 2rem 0 0.75rem;
}
.blog-detail-body blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid hsl(var(--secondary));
  background: hsl(var(--muted));
  border-radius: 0 0.5rem 0.5rem 0;
  font-style: italic;
  color: hsl(var(--foreground));
}

.blog-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.page-hero--blog-image {
  background-repeat: no-repeat;
  min-height: 46vh;
}


