/* Zaiah Studio - Ghost theme.
   The look is zachariahgarner.com's (Prestige theme + the site's own header, footer and
   gallery sections), ported value for value. Where a rule below carries a comment naming
   a Shopify file, that is where the value came from. */

/* ---- Tokens (snippets/css-variables.liquid, settings_data.json) ---- */
:root {
  --heading-font-family: "Instrument Sans", sans-serif;
  --heading-font-weight: 400;
  --heading-letter-spacing: 0.2em;
  --text-font-family: "Source Serif 4", serif;
  --text-font-weight: 400;
  --text-letter-spacing: 0em;
  /* 'Lora' is named and never loaded on the store, so the wordmark and captions render in
     the browser's default serif. Kept identical on purpose. */
  --caption-font-family: 'Lora', serif;

  --text-xs: 0.75rem; --text-sm: 0.8125rem; --text-base: 0.875rem; --text-lg: 1rem; --text-xl: 1.125rem;
  --text-h1: clamp(1.375rem, 1.146rem + 0.976vw, 2rem);
  --text-h2: clamp(1.25rem, 1.067rem + 0.780vw, 1.75rem);
  --text-h3: clamp(1.125rem, 1.034rem + 0.390vw, 1.375rem);
  --text-h5: 0.875rem; --text-h6: 0.75rem;

  --text-color: 28 28 28;            /* #1c1c1c */
  --page-background: 255 255 255;    /* gallery surfaces are white */
  --background: 255 255 255;
  --border-color: 221 221 221;
  --header-separation-border-color: 28 28 28 / 0.15;
  --caption-ink: #222;
  --caption-muted: #767676;

  --container-gutter: 1.25rem;
  --container-xs-max-width: 42.5rem;   /* 680px */
  --container-sm-max-width: 61.25rem;  /* 980px */
  --container-xl-max-width: 85rem;     /* 1360px */
  --section-vertical-spacing: 2.5rem;
  --header-padding-block: 1rem;
}
@media (min-width: 700px)  { :root { --container-gutter: 2rem; --header-padding-block: 1.6rem; } }
@media (min-width: 1000px) { :root { --container-gutter: 3rem; --section-vertical-spacing: 4rem; } }

/* ---- Base (assets/theme.css) ---- */
html { -webkit-text-size-adjust: 100%; line-height: 1.5; scroll-padding-top: 63px; }
body {
  background: rgb(var(--page-background));
  color: rgb(var(--text-color));
  font: var(--text-font-weight) var(--text-base) / 1.65 var(--text-font-family);
  letter-spacing: var(--text-letter-spacing);
  margin: 0;
  position: relative;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, h4, h5, h6, .heading {
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight);
  letter-spacing: var(--heading-letter-spacing);
  text-transform: uppercase;
  overflow-wrap: anywhere;
  margin: 0;
}
h1, .h1 { font-size: var(--text-h1); line-height: 1.5; }
h2, .h2 { font-size: var(--text-h2); line-height: 1.5; }
h3, .h3 { font-size: var(--text-h3); line-height: 1.6; }
.h5 { font-size: var(--text-h5); line-height: 1.7; }
.h6 { font-size: var(--text-h6); line-height: 1.7; }
.text-subdued { color: rgb(var(--text-color) / .65); }
.text-xxs { font-size: .6875rem; }

.container { margin-inline: max(var(--container-gutter), 50% - var(--container-max-width, 100%) / 2); }
.container--xs { --container-max-width: var(--container-xs-max-width); }
.container--sm { --container-max-width: var(--container-sm-max-width); }
.container--xl { --container-max-width: var(--container-xl-max-width); }
.section-spacing { padding-block: var(--section-vertical-spacing); }

/* The link idiom: a 1px underline that retracts on hover (theme.css .link) */
.link {
  background: linear-gradient(to right, currentColor, currentColor) 0 min(100%, 1.35em) / 100% 1px no-repeat;
  text-decoration: none;
  transition: background-size .3s ease-in-out;
}
@media (pointer: fine) { .link:hover { background-size: 0 1px; } }
.link-faded { color: rgb(var(--text-color) / .65); transition: color .2s ease-in-out; text-decoration: none; }
@media (pointer: fine) { .link-faded:hover { color: rgb(var(--text-color)); } }

/* Scroll snap on phones and square-ish viewports (snippets/site-header.liquid) */
@media (max-width: 768px), (max-aspect-ratio: 1/1) {
  html { scroll-snap-type: y proximity; }
}
@media (pointer: coarse) and (max-width: 768px) {
  html { scroll-snap-type: y mandatory; }
}

/* ---- Header (theme.css .header + snippets/site-header.liquid) ---- */
.site-header.nav-hidden { transform: translateY(-100%); }
.site-header {
  transition: background .2s, color .2s, box-shadow .2s, transform .3s ease;
  display: grid;
  grid: "primary-nav logo secondary-nav" / minmax(0, 1fr) auto minmax(0, 1fr);
  justify-content: center;
  align-items: center;
  column-gap: 1.25rem;
  row-gap: var(--header-padding-block);
  padding: var(--header-padding-block) var(--container-gutter);
  background: rgb(var(--background));
  color: rgb(var(--text-color));
  box-shadow: 0 -1px rgb(var(--header-separation-border-color)) inset;
  position: sticky;
  top: 0;
  z-index: 4;
  transition: background .2s, color .2s, box-shadow .2s;
}
@media (min-width: 700px) { .site-header { column-gap: 2.5rem; } }
.site-header__logo { grid-area: logo; justify-self: center; text-align: center; margin: 0; }
.site-header__logo a { text-decoration: none; }
.site-header__logo-text {
  display: block;
  font-family: var(--caption-font-family);  /* span.header__logo-text: "Lora", serif */
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: var(--heading-letter-spacing);
  text-transform: uppercase;
  line-height: 1.7;
}
.site-header__nav { display: flex; flex-wrap: wrap; align-items: center; gap: .625rem 1.25rem; }
.site-header__nav--primary { grid-area: primary-nav; }
.site-header__nav--secondary { grid-area: secondary-nav; justify-content: end; justify-self: end; }
@media (min-width: 1150px) { .site-header__nav { column-gap: 2.5rem; } }
.site-header__item { position: relative; list-style: none; }
.site-header__item a {
  display: block;
  font-family: var(--heading-font-family);
  font-weight: 400;
  font-size: var(--text-h6);
  line-height: 1.7;
  letter-spacing: var(--heading-letter-spacing);
  text-transform: uppercase;
  text-decoration: none;
}
/* the hover underline: a 2px bar the width of the label, scaled in from the left */
.site-header__item::before {
  content: attr(data-title);
  position: absolute;
  inset-block-end: 0;
  width: max-content;
  height: 2px;
  background: rgb(var(--text-color));
  color: transparent;
  font-family: var(--heading-font-family);
  font-size: var(--text-h6);
  letter-spacing: var(--heading-letter-spacing);
  text-transform: uppercase;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease-in-out;
}
.site-header__item:hover::before,
.site-header__item[aria-current]::before { transform: scaleX(1); }
.site-header ul { display: contents; margin: 0; padding: 0; }
@media (min-width: 1000px) {
  .site-header__logo-text { font-size: 1.3rem; }
  .site-header__item a { font-size: 0.8rem; }
}
/* Phones: wordmark on its own line, the five links in one centered row beneath it.
   The store shows two links beside its wordmark; five do not fit, so they drop below. */
.site-header__toggle { display: none; }
/* Phones: one row. The two-bar toggle on the left, the wordmark centered, and the five
   links in a panel under the header when the toggle is open (the muse site's menu). */
@media (max-width: 999px) {
  .site-header { --header-padding-block: 0.9rem; display: grid; grid-template-columns: 2.5rem minmax(0, 1fr) 2.5rem; align-items: center; column-gap: 0.5rem; }
  .site-header__logo { grid-column: 2; justify-self: center; }
  .site-header__logo-text { font-size: 0.72rem; letter-spacing: 0.14em; line-height: 1.5; white-space: nowrap; }
  .site-header__toggle {
    grid-column: 1; grid-row: 1; justify-self: start;
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 2.5rem; height: 2.5rem; padding: 0.6rem; margin-left: -0.6rem;
    background: none; border: 0; cursor: pointer;
  }
  .site-header__toggle span { display: block; height: 1px; width: 20px; background: rgb(var(--text-color)); transition: transform .25s ease, opacity .25s ease; }
  .site-header.is-open .site-header__toggle span:first-child { transform: translateY(3px) rotate(45deg); }
  .site-header.is-open .site-header__toggle span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .site-header__nav { display: none; }
  .site-header.is-open .site-header__nav { display: contents; }
  .site-header.is-open .site-header__nav ul { display: contents; }
  .site-header.is-open .site-header__item { grid-column: 1 / -1; text-align: center; }
  .site-header.is-open .site-header__item::before { display: none; }
  .site-header.is-open .site-header__item a { font-size: 0.8rem; letter-spacing: 0.2em; line-height: 2.6; }
  .site-header.is-open .site-header__nav--primary .site-header__item:first-child { margin-top: 0.9rem; border-top: 1px solid rgb(var(--header-separation-border-color)); padding-top: 0.6rem; }
}
/* On the home page the header is the dockbar: fixed, invisible over the hero, fading in
   as the wordmark scrolls off (sections/home-hero.liquid .home-dockbar). */
.home-template .site-header {
  position: fixed;
  left: 0; right: 0; top: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  padding-top: calc(env(safe-area-inset-top, 0px) + var(--header-padding-block));
}
.home-template .site-header.is-visible { pointer-events: auto; }

/* ---- Hero (sections/home-hero.liquid) ---- */
.home-hero {
  position: relative;
  height: 100svh;
  background: #111;
  overflow: hidden;
  scroll-margin-top: -63px;
  scroll-snap-align: start;
}
.home-hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: var(--hero-focal, center 30%); }
.home-hero__scrim { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.22); }
.home-hero__frame {
  position: absolute;
  top: 2.5rem; bottom: 2.5rem;
  left: 50%; transform: translateX(-50%);
  width: min(640px, calc(100% - 3rem));
  border: 1px solid rgba(255, 255, 255, 0.85);
  padding: 4.5rem 1.5rem 2.75rem;
  box-sizing: border-box;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  text-align: center;
  color: #fff;
}
.home-hero__eyebrow {
  font-family: var(--caption-font-family);
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.96); margin: 0; max-width: 100%;
}
@media (max-width: 480px) {
  .home-hero__eyebrow { font-size: 0.6rem; letter-spacing: 0.16em; }
  .home-hero__frame { padding: 3.5rem 1rem 2.5rem; }
}
.home-hero__mark {
  transform: translateY(24svh);
}
.home-hero__title {
  font-family: var(--caption-font-family);
  font-weight: 400;
  font-size: clamp(1.4rem, 3.2vw, 2.3rem);
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
  margin: 0;
}
.home-hero__tagline {
  font-family: var(--caption-font-family);
  font-style: italic;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.82);
  margin: 0.6rem 0 0;
}
.home-hero__link {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff; text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
  padding-bottom: 0.2rem;
}

/* ---- The gallery (sections/home-gallery.liquid): a column of full-bleed photographs
   separated by a 2px white seam. Ghost's gallery cards are re-flowed into these rows by
   assets/js/main.js; the row classes are the store's. ---- */
.zs-gallery .kg-gallery-card, .zs-gallery .kg-image-card { visibility: hidden; }
.zs-gallery.is-laid-out .kg-gallery-card, .zs-gallery.is-laid-out .kg-image-card { display: none; }
.home-gallery { display: flex; flex-direction: column; gap: 2px; background: #fff; }
.home-gallery:empty { display: none; }
.home-gallery a, .home-gallery figure { display: block; line-height: 0; margin: 0; }
.home-gallery__full, .home-gallery__pair, .home-gallery__vertical { scroll-snap-align: start; }
.home-gallery__full { position: relative; }
.home-gallery__full img { width: 100%; display: block; }
/* A caption over the frame it follows (home-gallery.liquid .home-gallery__overlay), shown, not on dwell. */
.home-gallery__overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 4rem 1.5rem 1.7rem; text-align: center;
  background: linear-gradient(to top, rgba(0,0,0,0.38), rgba(0,0,0,0.12) 55%, transparent);
  pointer-events: none; line-height: 1.4;
}
.home-gallery__overlay-line1 { font-family: var(--caption-font-family); font-weight: 400; font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.72); margin: 0 0 0.4rem; }
.home-gallery__overlay-line2 { font-family: var(--caption-font-family); font-weight: 400; font-style: normal; font-size: 1rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.96); margin: 0; }
.home-gallery__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
/* Columns are set per row from the frames' shapes (style attribute), so both stand at the
   same height uncropped; 1fr 1fr is the fallback when no shapes are known. */
.home-gallery__pair img { width: 100%; height: auto; display: block; }
.home-gallery__vertical { max-width: 550px; width: 100%; margin: 0 auto; padding: 0 2rem; box-sizing: border-box; }
.home-gallery__vertical img { width: 100%; display: block; }
@media (max-width: 768px) {
  /* !important: a pair carries its shape-split columns inline, and phones must still stack. */
  .home-gallery__pair { grid-template-columns: 1fr !important; }
  .home-gallery__vertical { max-width: 100%; padding: 0; }
}
.zs-gallery { padding-bottom: 4rem; }
.zs-gallery .home-gallery + .home-gallery { margin-top: 2px; }
/* Prose that sits between galleries in a story renders as a wall label */
.zs-gallery > p, .zs-gallery > h2, .zs-gallery > h3, .zs-gallery > blockquote {
  font-family: var(--caption-font-family);
  font-size: 1rem; line-height: 1.6; color: var(--caption-muted);
  max-width: 34em; margin: 2.25rem auto; padding: 0 1.5rem; text-align: center;
}

/* ---- Wall labels and captions (home-gallery.liquid, collection-gallery.liquid) ---- */
.wall-label { background: #fff; text-align: center; padding: 2.25rem 1.5rem 2.25rem; scroll-snap-align: start; }
/* The label is small and grey; the line it labels is dark and larger, so a skim takes
   away the name, not the category (Zach, Sep 7 2026). */
.wall-label__eyebrow {
  font-family: var(--caption-font-family); font-weight: 400;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--caption-muted); margin: 0 0 0.55rem;
}
.wall-label__title {
  font-family: var(--caption-font-family); font-weight: 400; font-style: normal;
  font-size: 1.2rem; letter-spacing: 0.04em; text-transform: none;
  color: var(--caption-ink); margin: 0;
}
/* Italic is for a title (a work, an exhibition), never for a name or a category. */
.wall-label__title em { font-style: italic; }
.wall-label__description {
  font-family: var(--caption-font-family); font-size: 1rem; line-height: 1.6;
  color: var(--caption-muted); max-width: 34em; margin: 1.4rem auto 0;
}
.wall-label a {
  display: inline-block; line-height: 1.5; margin-top: 0.9rem;
  font-family: var(--caption-font-family); font-style: normal; font-size: 0.78rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--caption-ink);
  text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px;
}
/* Two labels in a row read as one wall card. */
.wall-label + .wall-label { padding-top: 0; }
/* The label's handle line: the store's caption link (an Instagram handle on a collaborator page). */
.wall-label__handle { display: inline-block; margin-top: 0.9rem; }
/* A link that looks like the words around it. */
.wall-label a.wall-label__quiet, .wall-label a.wall-label__quiet:hover { display: inline; margin: 0; font: inherit; letter-spacing: inherit; text-transform: none; color: inherit; text-decoration: none; }
/* The closing blocks of a collaborator page: a centered column, lines left-aligned. */
.wall-label--credit { text-align: left; max-width: 24em; margin: 0 auto; padding-top: 3.5rem; padding-bottom: 1rem; }
.wall-label--credit + .wall-label--credit { padding-top: 1.5rem; padding-bottom: 5rem; }
.wall-label--credit .wall-label__title { color: var(--caption-ink); }
.wall-label--credit a { display: inline; margin: 0; font-family: inherit; font-size: inherit; letter-spacing: inherit; text-transform: none; }
.wall-label--power { padding: 5rem 2rem 4rem; }
.wall-label--power .wall-label__title { font-size: 1.7rem; line-height: 1.55; letter-spacing: 0.02em; color: var(--caption-ink); max-width: 24em; margin: 0 auto; }
@media (max-width: 768px) {
  .wall-label { padding: 1.775rem 1.25rem; }
  .wall-label__eyebrow { font-size: 0.66rem; }
  .wall-label__title { font-size: 1.05rem; }
  .wall-label--power { padding: 3.5rem 1.5rem 3rem; }
  .wall-label--power .wall-label__title { font-size: 1.3rem; }
}

/* ---- Doorway tiles (home-gallery.liquid .home-gallery__quad) ---- */
.doorways { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; padding: 0; margin: 0; list-style: none; }
.doorways--3 { grid-template-columns: repeat(3, 1fr); }
.doorways--2 { grid-template-columns: repeat(2, 1fr); }
.doorways--1 { grid-template-columns: minmax(0, 1fr); max-width: 50%; margin: 0 auto; }
.doorway { position: relative; scroll-snap-align: start; }
.doorway__media { position: relative; display: block; line-height: 0; }
.doorway__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: var(--qfocal, center center); display: block; }
.doorway__media::after {
  content: '';
  position: absolute;
  top: 1.1rem; height: calc(100% - 2.2rem);
  left: 50%; transform: translateX(-50%);
  aspect-ratio: 3 / 4; width: auto; max-width: calc(100% - 2.2rem);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.doorway__label {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  margin: 0; padding: 0; background: rgba(0, 0, 0, 0.18);
  font-family: var(--caption-font-family); font-weight: 400; font-size: 0.85rem;
  letter-spacing: 0.26em; text-transform: uppercase; color: #fff;
  text-align: center; line-height: 1.4; text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}
@media (max-width: 768px) {
  .doorways, .doorways--3, .doorways--2 { grid-template-columns: 1fr; padding: 0 1.25rem; }
  .doorways--1 { max-width: none; }
  .doorway__media::after { top: 0.8rem; height: calc(100% - 1.6rem); max-width: calc(100% - 1.6rem); aspect-ratio: 15 / 16; }
  .doorway__media img { aspect-ratio: auto; height: 30svh; }
}
.doorways-section { padding-bottom: 4rem; }

/* ---- Text pages (About, Contact): a 680px prose column on the store's page ground ---- */
.text-page { padding-block: var(--section-vertical-spacing) calc(var(--section-vertical-spacing) * 1.5); }
.prose { font-size: var(--text-base); line-height: 1.65; }
.prose > * + * { margin-block-start: 1.25em; }
.prose p { margin: 0; }
.prose h2 { font-size: var(--text-h2); line-height: 1.5; margin-block-end: .5em; }
.prose figcaption { font-style: italic; font-size: var(--text-sm); color: rgb(var(--text-color) / .65); margin-block-start: .5em; }
.prose img { display: block; }
.prose a { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
.text-page__label { padding-bottom: 0; }
.about-layout { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 1000px) { .about-layout { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 5rem; } }
.about-layout__image img { width: 100%; display: block; }
.contact-email {
  display: inline-block; margin-top: 1.5rem;
  font-family: var(--caption-font-family); font-size: 0.9rem; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px;
}

/* ---- Footer (snippets/site-footer.liquid) ---- */
.site-footer {
  background:
    radial-gradient(55% 90% at 18% 8%, rgba(255, 255, 255, 0.055), transparent 62%),
    radial-gradient(45% 75% at 78% 24%, rgba(255, 255, 255, 0.04), transparent 60%),
    radial-gradient(65% 100% at 55% 95%, rgba(255, 255, 255, 0.035), transparent 65%),
    linear-gradient(180deg, #191a1c 0%, #0c0d0e 100%);
  color: #cfcfcf;
  padding-block: var(--section-vertical-spacing) min(var(--section-vertical-spacing), 3rem);
}
.site-footer__inner { display: grid; row-gap: min(var(--section-vertical-spacing), 3rem); }
.site-footer__blocks { display: grid; gap: min(var(--section-vertical-spacing), 2.5rem); }
.site-footer .h6 { color: #ececec; display: block; margin-bottom: .75rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.site-footer .link-faded { color: #b3b3b3; }
.site-footer .link-faded:hover { color: #fff; }
.site-footer p { margin: 0; }
.site-footer__pitch { color: #8b8b8b; max-width: 24rem; }
.site-footer__aside { text-align: center; }
.site-footer__aside .heading { color: #8b8b8b; }
@media (min-width: 769px) {
  .site-footer__inner { max-width: 1080px; margin-inline: auto; }
  .site-footer__blocks { display: flex; justify-content: space-between; gap: 3rem; }
}
@media (max-width: 768px) {
  .site-footer { --section-vertical-spacing: 2rem; }
  .site-footer__inner { row-gap: 1.5rem; }
  .site-footer__blocks { grid-template-columns: 1fr 1fr; gap: 1.75rem 1rem; }
  .site-footer__block--wide { grid-column: 1 / -1; }
  .site-footer .h6 { font-size: 0.68rem; letter-spacing: 0.14em; }
  .site-footer .link-faded { font-size: 0.85rem; }
}

/* ---- Empty states and errors ---- */
.empty-note { font-family: var(--caption-font-family); font-style: italic; color: var(--caption-muted); text-align: center; padding: 4rem 1.5rem 6rem; }

/* ---- Ghost card classes the theme must style (gscan). The gallery ones are re-flowed by
   main.js; these rules only hold Ghost's own layout until that runs. ---- */
.kg-width-wide, .kg-width-full { margin-inline: 0; max-width: none; }
.kg-gallery-container { display: flex; flex-direction: column; gap: 2px; }
.kg-gallery-row { display: flex; gap: 2px; }
.kg-gallery-image { flex: 1 1 0; line-height: 0; }
.kg-gallery-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kg-bookmark-card { max-width: 34em; margin: 2.25rem auto; }
.kg-bookmark-container { display: flex; text-decoration: none; border: 1px solid rgb(var(--border-color)); color: inherit; }
.kg-bookmark-content { flex: 1; padding: 1rem; }
.kg-bookmark-title { font-family: var(--caption-font-family); font-size: 0.9rem; letter-spacing: 0.05em; }
.kg-bookmark-description { font-size: var(--text-sm); color: var(--caption-muted); margin-top: .5rem; }
.kg-bookmark-metadata { font-size: var(--text-xs); margin-top: .75rem; display: flex; align-items: center; gap: .5rem; }
.kg-bookmark-icon { width: 1rem; height: 1rem; }
.kg-bookmark-author, .kg-bookmark-publisher { color: var(--caption-muted); }
.kg-bookmark-thumbnail { flex: 0 0 30%; }
.kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; display: block; }
