@font-face{font-family:'Geist';font-style:normal;font-weight:100 900;font-display:swap;src:url("/fonts/geist-latin-ext-var.woff2") format("woff2");unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}
@font-face{font-family:'Geist';font-style:normal;font-weight:100 900;font-display:swap;src:url("/fonts/geist-latin-var.woff2") format("woff2");unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
@font-face{font-family:'Inter';font-style:normal;font-weight:100 900;font-display:swap;src:url("/fonts/inter-latin-ext-var.woff2") format("woff2");unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}
@font-face{font-family:'Inter';font-style:normal;font-weight:100 900;font-display:swap;src:url("/fonts/inter-latin-var.woff2") format("woff2");unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
:root {
  --color-primary: #0D9488;
  --color-on-primary: #000000;
  --color-accent: #06B6D4;
  --color-surface: #F8FAFC;
  --color-text: #0F172A;
  --color-bg: #FFFFFF;
  --color-muted: #64748B;
  --color-bg-alt: color-mix(in srgb, #0D9488 6%, #FFFFFF);
  --color-surface-tint: color-mix(in srgb, #06B6D4 10%, #F8FAFC);
  --color-surface-strong: color-mix(in srgb, #0D9488 14%, #F8FAFC);
  --color-card: color-mix(in srgb, #0D9488 7%, #F8FAFC);
  --color-card-strong: color-mix(in srgb, #06B6D4 12%, #F8FAFC);
  --color-line: color-mix(in srgb, #0F172A 10%, transparent);
  --color-line-strong: color-mix(in srgb, #0D9488 22%, transparent);
  --color-nav: color-mix(in srgb, #0F172A 4%, white);
  --color-nav-border: color-mix(in srgb, #0D9488 12%, transparent);
  --color-image-placeholder: color-mix(in srgb, #06B6D4 9%, #F8FAFC);
  --font-heading: 'Geist', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

/* ─── Background systems ─── */
.jean-bg-mesh {
  background-image:
    radial-gradient(at 0% 0%, rgba(13,148,136,0.25) 0%, transparent 55%),
    radial-gradient(at 100% 0%, rgba(6,182,212,0.22) 0%, transparent 55%),
    radial-gradient(at 50% 100%, rgba(13,148,136,0.25) 0%, transparent 50%),
    radial-gradient(at 85% 70%, rgba(6,182,212,0.22) 0%, transparent 45%);
}

.jean-bg-grid {
  background-image: radial-gradient(circle, rgba(100,116,139,0.12) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

.jean-bg-spotlight {
  background-image: radial-gradient(ellipse 90% 60% at 50% 0%, rgba(13,148,136,0.22) 0%, transparent 75%);
}

/* ─── Card surface styles ─── */
/* Hero/section-level glass (full blur, applied on hero/cta sections) */
.jean-glass {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.80);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

/* Card-level glass (reduced blur for dense grids — lower composite cost) */
.jean-glass-card {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.jean-elevated {
  background: var(--color-card);
  border: 1px solid var(--color-line);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 10px 15px -3px rgba(0,0,0,0.10);
}

.jean-soft-shadow {
  background: var(--color-card-strong);
  border: 1px solid var(--color-line-strong);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
}

.jean-card {
  background: var(--color-card);
  border: 1px solid var(--color-line);
}

.jean-card-strong {
  background: var(--color-card-strong);
  border: 1px solid var(--color-line-strong);
}

/* ─── Card behaviors ─── */
.jean-float {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.jean-float:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.14);
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  .jean-float {
    transition: none;
  }
  .jean-float:hover {
    transform: none;
  }
}

/* ─── Structural design tokens ─── */
/* headingTreatment: display — statement headings, near-poster scale */
.jean-site-shell section h2 {
  font-size: clamp(2.6rem, 1.3rem + 3.6vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 800;
}

/* lineLanguage: strong — 2px rules, bold/brutalist separation */
.jean-site-shell :is(.jean-card, .jean-card-strong, .jean-elevated, .jean-soft-shadow, .jean-glass-card) {
  box-shadow: none;
  border: 2px solid color-mix(in srgb, var(--color-text) 30%, transparent);
}
.jean-site-shell .jean-float:hover {
  box-shadow: none;
  transform: translateY(-3px);
}

/* headerBehavior: sticky — in-page anchors clear the pinned header */
.jean-site-shell section[id],
.jean-site-shell [id]:not(section):not(body) {
  scroll-margin-top: 5.5rem;
}

/* jean-bg-fixed — the background holds still, the page scrolls over it. */
@media (min-width: 1024px) and (hover: hover) {
  .jean-site-shell .jean-bg-fixed { background-attachment: fixed; }
}
.jean-site-shell section h1,
.jean-site-shell section h2 { text-wrap: balance; }
/* Inside a photo band's scrim card every block must read white. The blocks
   arrive with their own INLINE color (var(--color-muted) — dark grey), and
   inline beats any selector, so this is the one place !important is the
   honest tool rather than a smell: the band owns legibility on top of a
   photograph, whatever color the block brought with it. */
.jean-site-shell .jean-photo-band :is(p, li, div, span, blockquote) { color: rgba(255,255,255,0.9) !important; }
.jean-site-shell .jean-photo-band a { color: #FFFFFF !important; }
/* The same mechanism for a band painted with --color-primary: the blocks
   arrive carrying an inline var(--color-text), which is the site's INK — dark
   ink on a dark primary, light ink on a light one, wrong either way. The band
   owns legibility on its own fill, so the pair the theme derived wins. */
.jean-site-shell .jean-on-primary :is(p, li, div, span, blockquote) { color: var(--color-on-primary, #fff) !important; }
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

.jean-scroll-stage {
  position: relative;
  --jean-scroll-progress: 0;
}

/* Scroll-reveal + parallax are opt-in: only active when the site shell carries
   data-jean-motion="on" (set from the design's decorationDensity = expressive).
   With motion off, .jean-motion-layer is inert and content is simply visible —
   a clean, static baseline instead of every section fading/parallaxing in. */
.jean-motion-layer {
  --jean-parallax-offset: 0px;
}

[data-jean-motion='on'] .jean-motion-layer {
  opacity: 0;
  transform: translate3d(0, calc(28px + var(--jean-parallax-offset)), 0) scale(0.985);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

[data-jean-motion='on'] .jean-motion-layer.is-visible {
  opacity: 1;
  transform: translate3d(0, var(--jean-parallax-offset), 0) scale(1);
}

.jean-parallax-up {
  --jean-parallax-offset: 0px;
}

.jean-parallax-down {
  --jean-parallax-offset: 0px;
}

.jean-parallax-subtle {
  --jean-parallax-offset: calc(var(--jean-scroll-progress, 0) * -6px);
}

.jean-panel-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.jean-section-shell {
  position: relative;
}

.jean-rhythm-wide {
  width: min(96rem, calc(100vw - 1.5rem));
}

.jean-rhythm-tight {
  width: min(72rem, calc(100vw - 1.5rem));
}

.jean-gallery-columns,
.jean-stagger-grid {
  display: grid;
  gap: 1rem;
}

.jean-stagger-card {
  transition-delay: var(--jean-stagger-delay, 0s);
}

.jean-pullquote-card {
  position: relative;
}

.jean-pullquote-card::before {
  content: '"';
  position: absolute;
  top: 0.35rem;
  left: 1rem;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 7vw, 6rem);
  line-height: 0.8;
  color: color-mix(in srgb, var(--color-primary) 20%, transparent);
  pointer-events: none;
}

.jean-grid-pattern-row {
  width: 100%;
}

.jean-hero-shell {
  position: relative;
}

@media (min-width: 1024px) {
  .jean-panel-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 3rem;
    align-items: start;
  }

  /* The 2-column masonry gallery (with an oversized featured first image) is
     opt-in for expressive designs, and it is opted in per SECTION by the
     jean-gallery-panel class the renderer adds only when it chose the panel.
     8z43 WE-4: this used to match every .jean-gallery-columns on a motion-on
     site, where its (0,2,0) specificity beat the Tailwind lg:grid-cols-N the
     owner's column knob had set. The default gallery keeps its own Tailwind
     column classes. */
  [data-jean-motion='on'] .jean-gallery-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  [data-jean-motion='on'] .jean-gallery-panel .jean-gallery-card--featured {
    grid-row: span 2;
  }

  .jean-grid-pattern-row[data-row-centered='true'] {
    max-width: calc(100% * var(--jean-row-share, 1));
    margin-left: auto;
    margin-right: auto;
  }

  /* Sticky panels are opt-in; the default is normal document flow (no full-height
     sticky hero stage that overrides the whole layout). */
  [data-jean-motion='on'] .jean-panel-sticky {
    position: sticky;
    top: clamp(5rem, 10vh, 7.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  /* Scoped to match the gated hidden rule's specificity so reduced-motion always
     reveals content even when motion is on. */
  [data-jean-motion='on'] .jean-motion-layer {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .jean-parallax-up,
  .jean-parallax-down,
  .jean-parallax-subtle {
    --jean-parallax-offset: 0px;
  }

  .jean-pullquote-card::before {
    display: none;
  }

  .jean-float {
    transition: none;
  }

  .jean-float:hover {
    transform: none;
  }
}


/* V3.4b — the runtime's status slot: muted by default, React's red on error. */
.jean-site-shell [data-jean-slot='status'] { color: var(--color-muted); }
.jean-site-shell [data-jean-slot='status'][data-jean-status='error'] { color: #EF4444; }

/* V3.4b part 2 — the shared widget skeletons, painted from theme tokens. */
.jean-widget-empty { text-align: center; font-size: 0.875rem; color: var(--color-muted); margin: 0; }
.jean-widget .jean-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.jean-widget .jean-gallery-item { position: relative; margin: 0; border-radius: 1rem; overflow: hidden; background: var(--color-image-placeholder, var(--color-surface)); }
.jean-widget .jean-gallery-image { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
/* 8z43 WE-4 (2) — the owner's gallery knobs, read off the mount (galleryMountAttrs in websiteSpecRenderer). The tiers mirror the static grid's Tailwind classes. */
.jean-widget[data-jean-columns] .jean-gallery-grid { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.jean-widget[data-jean-columns="4"] .jean-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 640px) { .jean-widget[data-jean-columns="2"] .jean-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 768px) { .jean-widget[data-jean-columns="3"] .jean-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .jean-widget[data-jean-columns="4"] .jean-gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .jean-widget[data-jean-columns="3"] .jean-gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } .jean-widget[data-jean-columns="4"] .jean-gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.jean-widget[data-jean-size="s"] .jean-gallery-grid { max-width: 48rem; margin-left: auto; margin-right: auto; }
.jean-widget[data-jean-size="m"] .jean-gallery-grid { max-width: 64rem; margin-left: auto; margin-right: auto; }
.jean-widget[data-jean-aspect="square"] .jean-gallery-image { aspect-ratio: 1 / 1; }
.jean-widget[data-jean-aspect="portrait"] .jean-gallery-image { aspect-ratio: 3 / 4; }
.jean-widget[data-jean-aspect="landscape"] .jean-gallery-image { aspect-ratio: 16 / 9; }
.jean-widget[data-jean-aspect="auto"] .jean-gallery-image { aspect-ratio: auto; height: auto; }
.jean-widget .jean-gallery-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 0.75rem; font-size: 0.875rem; color: #fff; background: linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0)); }
/* 8z44 BS-2 — the people of an organisation. Round photo, initials when there
   is none; the grid takes the section's own column count off the mount, the way
   the gallery's does. The list layout is one per row, photo beside text. */
.jean-widget .jean-person-grid { display: grid; grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 1.5rem; }
@media (min-width: 640px) { .jean-widget .jean-person-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) {
  .jean-widget[data-jean-columns="2"] .jean-person-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .jean-widget[data-jean-columns="3"] .jean-person-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .jean-widget[data-jean-columns="4"] .jean-person-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .jean-widget[data-jean-columns="5"] .jean-person-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
.jean-widget[data-jean-people-layout="list"] .jean-person-grid { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.jean-widget[data-jean-people-layout="list"] .jean-person-card { flex-direction: row; text-align: left; align-items: flex-start; }
.jean-widget .jean-person-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.75rem; padding: 1.5rem; border-radius: 1rem; background: var(--color-surface); border: 1px solid var(--color-line); }
.jean-widget .jean-person-avatar { width: 7rem; height: 7rem; flex: 0 0 auto; border-radius: 9999px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: var(--color-image-placeholder, var(--color-surface)); }
.jean-widget .jean-person-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.jean-widget .jean-person-initials { font-size: 1.5rem; font-weight: 600; color: var(--color-primary); }
.jean-widget .jean-person-name { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 600; color: var(--color-text); margin: 0; }
.jean-widget .jean-person-role { font-size: 0.875rem; font-weight: 500; color: var(--color-primary); margin: 0; }
.jean-widget .jean-person-text { font-size: 0.875rem; line-height: 1.6; color: var(--color-muted); margin: 0; }
.jean-widget .jean-person-date { font-size: 0.8rem; color: var(--color-muted); margin: 0; }
.jean-widget .jean-menu-group { margin-bottom: 1.75rem; }
.jean-widget .jean-menu-group:last-child { margin-bottom: 0; }
.jean-widget .jean-menu-category { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--color-text); margin: 0 0 0.75rem; }
.jean-widget .jean-menu-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.jean-widget .jean-menu-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.jean-widget .jean-menu-name { font-weight: 600; color: var(--color-text); }
.jean-widget .jean-menu-price { white-space: nowrap; font-weight: 600; color: var(--color-primary); }
.jean-widget .jean-menu-description { margin: 0.15rem 0 0; font-size: 0.875rem; color: var(--color-muted); }
.jean-widget .jean-hours-list { list-style: none; margin: 0; padding: 0; }
.jean-widget .jean-hours-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 0.6rem 0; border-bottom: 1px solid var(--color-line); }
.jean-widget .jean-hours-row:last-child { border-bottom: none; }
.jean-widget .jean-hours-day { font-weight: 600; color: var(--color-text); }
.jean-widget .jean-hours-time { color: var(--color-text); }
.jean-widget .jean-hours-closed { color: var(--color-muted); }
.jean-widget .jean-hours-note { font-size: 0.85rem; color: var(--color-muted); }
.jean-widget .jean-downloads-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.jean-widget .jean-downloads-item { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.jean-widget .jean-downloads-link { display: inline-block; padding: 0.55rem 1.1rem; border-radius: 0.6rem; background: var(--color-primary); color: var(--color-on-primary, #fff); font-weight: 600; text-decoration: none; }
.jean-widget .jean-downloads-link:hover { filter: brightness(0.94); }
.jean-widget .jean-downloads-meta { font-size: 0.85rem; color: var(--color-muted); }
/* D-v12 — a placed document's pages. Three layouts, all CSS: the markup is
   baked and must be right before (and without) JavaScript. */
.jean-widget .jean-docpages-sheet { display: flex; flex-direction: column; gap: 1.25rem; }
.jean-widget .jean-docpage { margin: 0; border-radius: 0.9rem; overflow: hidden; background: var(--color-image-placeholder, var(--color-surface)); box-shadow: 0 8px 28px rgba(0,0,0,0.10); }
.jean-widget .jean-docpage-link { display: block; }
.jean-widget .jean-docpage-image { display: block; width: 100%; height: auto; }
.jean-widget .jean-docpages--row .jean-docpages-sheet { flex-direction: row; flex-wrap: wrap; align-items: flex-start; }
.jean-widget .jean-docpages--row .jean-docpage { flex: 1 1 calc(50% - 0.625rem); min-width: 240px; }
.jean-widget .jean-docpages--carousel .jean-docpages-sheet { flex-direction: row; flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 0.75rem; -webkit-overflow-scrolling: touch; }
.jean-widget .jean-docpages--carousel .jean-docpage { flex: 0 0 82%; max-width: 82%; scroll-snap-align: center; }
@media (min-width: 768px) { .jean-widget .jean-docpages--carousel .jean-docpage { flex-basis: 48%; max-width: 48%; } }
.jean-widget .jean-docpage-text { margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid var(--color-line); }
.jean-widget .jean-docpage-text-heading { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 1.25rem; }
/* The announcement strip keeps the React strip's fixed high-contrast tints —
   attention chrome, deliberately not theme tokens. */
.jean-widget .jean-announcement { display: flex; align-items: center; gap: 1rem; padding: 0.65rem 1.5rem; font-size: 0.875rem; font-weight: 500; border-bottom: 1px solid; }
.jean-widget .jean-announcement.is-info { background: #eff6ff; color: #1e40af; border-color: #bfdbfe; }
.jean-widget .jean-announcement.is-warning { background: #fffbeb; color: #92400e; border-color: #fde68a; }
.jean-widget .jean-announcement.is-success { background: #ecfdf5; color: #065f46; border-color: #a7f3d0; }
.jean-widget .jean-announcement-text { margin: 0; flex: 1; line-height: 1.45; }
.jean-widget .jean-announcement-link { color: inherit; font-weight: 600; text-decoration: underline; white-space: nowrap; }
.jean-widget .jean-occupancy { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .jean-widget .jean-occupancy { grid-template-columns: 1fr 1fr; } }
.jean-widget .jean-occupancy-month { background: var(--color-card, var(--color-surface)); border: 1px solid var(--color-line); border-radius: 1rem; padding: 1rem; }
.jean-widget .jean-occupancy-title { text-align: center; font-family: var(--font-heading); font-weight: 600; font-size: 1rem; color: var(--color-text); margin: 0 0 0.75rem; }
.jean-widget .jean-occupancy-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.25rem; }
.jean-widget .jean-occupancy-day { display: flex; align-items: center; justify-content: center; aspect-ratio: 1 / 1; font-size: 0.8rem; border-radius: 0.375rem; border: 1px solid var(--color-line); color: var(--color-text); }
.jean-widget .jean-occupancy-day.is-booked { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-on-primary, #fff); }
.jean-widget .jean-occupancy-pad { border: none; }
.jean-widget .jean-occupancy-legend { grid-column: 1 / -1; display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 0; font-size: 0.8rem; color: var(--color-muted); }
.jean-widget .jean-occupancy-key { display: inline-block; width: 0.8rem; height: 0.8rem; border-radius: 0.2rem; border: 1px solid var(--color-line); margin-right: 0.35rem; vertical-align: -0.1rem; }
.jean-widget .jean-occupancy-key.is-booked { background: var(--color-primary); border-color: var(--color-primary); }
.jean-widget .jean-blog-list { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.jean-widget .jean-blog-card { background: var(--color-card, var(--color-surface)); border: 1px solid var(--color-line); border-radius: 1rem; overflow: hidden; display: flex; flex-direction: column; }
.jean-widget .jean-blog-cover { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.jean-widget .jean-blog-body { padding: 1rem 1.25rem 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.jean-widget .jean-blog-date { font-size: 0.75rem; color: var(--color-muted); }
.jean-widget .jean-blog-title { margin: 0; font-family: var(--font-heading); font-size: 1.05rem; color: var(--color-text); }
.jean-widget .jean-blog-excerpt { margin: 0; font-size: 0.875rem; color: var(--color-muted); line-height: 1.5; }
.jean-widget .jean-blog-detail summary { cursor: pointer; list-style: none; }
.jean-widget .jean-blog-link { font-size: 0.875rem; font-weight: 600; color: var(--color-primary); }
.jean-widget .jean-blog-full { margin-top: 0.5rem; font-size: 0.875rem; color: var(--color-text); white-space: pre-wrap; }
