/* ============================================================
   GELMAN LAW — Ghost Theme Stylesheet
   Brand: #330102 maroon · Open Sans + Playfair Display
   ============================================================ */

/* === CUSTOM PROPERTIES === */
:root {
  --color-brand:       #330102;
  --color-brand-dark:  #200101;
  --color-brand-light: #5a0204;
  --color-text:        #3a3a3a;
  --color-text-muted:  #6b6b6b;
  --color-heading:     #111111;
  --color-bg:          #ffffff;
  --color-surface:     #f8f7f5;
  --color-border:      #e4e0db;
  --color-footer-bg:   #1a1a1a;
  --color-footer-text: #b0a89e;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Open Sans', Helvetica, Arial, sans-serif;

  --weight-normal:   400;
  --weight-semibold: 600;
  --weight-bold:     700;

  --radius:    6px;
  --radius-lg: 12px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,.07);
  --shadow-md: 0 4px 16px rgba(0,0,0,.09);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);

  --header-h: 72px;
  --container: 1160px;
  --gap:       2rem;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--color-brand); text-decoration: none; transition: color .2s; }
a:hover { color: var(--color-brand-dark); text-decoration: underline; }
ul { list-style: none; }
address { font-style: normal; }

/* === LAYOUT === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--gap) 3rem;
  padding: 3rem 0 4rem;
}
.content-layout__main { min-width: 0; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  line-height: 1.25;
  font-weight: var(--weight-semibold);
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: .65rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: var(--weight-semibold);
  line-height: 1.4;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  text-decoration: none !important;
}
.btn--primary {
  background: var(--color-brand);
  color: #fff;
  border: 2px solid var(--color-brand);
}
.btn--primary:hover { background: var(--color-brand-dark); border-color: var(--color-brand-dark); color: #fff; }
.btn--outline {
  background: transparent;
  color: var(--color-brand);
  border: 2px solid var(--color-brand);
}
.btn--outline:hover { background: var(--color-brand); color: #fff; }
.btn--full { width: 100%; text-align: center; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  height: var(--header-h);
  transition: box-shadow .2s;
}
.site-header.is-scrolled { box-shadow: var(--shadow-md); }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.5rem;
}

/* Logo */
.site-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none !important; }
.site-logo__img { height: 44px; width: auto; }
.site-logo__text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: var(--weight-bold);
  color: var(--color-brand);
}

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 100%; height: 2px;
  background: var(--color-heading);
  border-radius: 2px;
  transition: .2s;
}

/* Navigation */
.site-nav__list {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.site-nav__item { position: relative; }
.site-nav__link {
  display: block;
  padding: .5rem .75rem;
  font-size: .875rem;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  border-radius: var(--radius);
  white-space: nowrap;
  text-decoration: none !important;
  transition: color .2s, background .2s;
}
.site-nav__link:hover,
.site-nav__item:hover > .site-nav__link { color: var(--color-brand); background: rgba(51,1,2,.05); }
.dropdown-arrow { font-size: .7em; opacity: .6; }

/* CTA button in nav */
.site-nav__cta {
  display: block;
  padding: .55rem 1.1rem;
  background: var(--color-brand);
  color: #fff !important;
  font-size: .875rem;
  font-weight: var(--weight-semibold);
  border-radius: var(--radius);
  white-space: nowrap;
  text-decoration: none !important;
  margin-left: .5rem;
  transition: background .2s;
}
.site-nav__cta:hover { background: var(--color-brand-dark); }

/* Dropdowns */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  z-index: 200;
  padding: .4rem 0;
}
.dropdown li a {
  display: block;
  padding: .55rem 1.1rem;
  font-size: .875rem;
  color: var(--color-text);
  font-weight: var(--weight-semibold);
  text-decoration: none !important;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.dropdown li a:hover { background: var(--color-surface); color: var(--color-brand); }
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }

/* ============================================================
   PAGE HERO BANNER
   ============================================================ */
.page-hero {
  background: var(--color-brand);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}
.page-hero--reading-room {
  background: linear-gradient(135deg, #330102 0%, #5a0204 100%);
}
.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: var(--weight-bold);
  color: #fff;
  margin-bottom: .5rem;
}
.page-hero__subtitle {
  font-size: 1rem;
  opacity: .85;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   POST GRID (Reading Room cards)
   ============================================================ */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3rem;
}

/* Post card */
.post-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.post-card__image-link { display: block; overflow: hidden; aspect-ratio: 16/9; }
.post-card__image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.post-card:hover .post-card__image { transform: scale(1.04); }

.post-card__content {
  padding: 1.25rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-card__tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--color-brand);
  background: rgba(51,1,2,.07);
  padding: .2rem .55rem;
  border-radius: 3px;
  margin-bottom: .65rem;
}
.post-card__title {
  font-size: 1.05rem;
  font-weight: var(--weight-semibold);
  line-height: 1.35;
  margin-bottom: .6rem;
}
.post-card__title a { color: var(--color-heading); text-decoration: none !important; }
.post-card__title a:hover { color: var(--color-brand); }
.post-card__excerpt {
  font-size: .875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: .85rem;
  border-top: 1px solid var(--color-border);
}
.post-card__date { font-size: .78rem; color: var(--color-text-muted); }
.post-card__readmore {
  font-size: .8rem;
  font-weight: var(--weight-semibold);
  color: var(--color-brand);
  text-decoration: none !important;
}
.post-card__readmore:hover { text-decoration: underline !important; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 0 2rem;
}
.pagination__link {
  font-size: .9rem;
  font-weight: var(--weight-semibold);
  color: var(--color-brand);
  text-decoration: none !important;
  padding: .4rem .8rem;
  border: 1px solid var(--color-brand);
  border-radius: var(--radius);
  transition: background .2s, color .2s;
}
.pagination__link:hover { background: var(--color-brand); color: #fff; }
.pagination__info { font-size: .875rem; color: var(--color-text-muted); }

/* ============================================================
   ARTICLE (single post / page)
   ============================================================ */
.article { min-width: 0; }
.article__header { margin-bottom: 2rem; }
.article__tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--color-brand);
  background: rgba(51,1,2,.07);
  padding: .2rem .55rem;
  border-radius: 3px;
  margin-bottom: .75rem;
  text-decoration: none !important;
}
.article__title {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  line-height: 1.2;
  color: var(--color-heading);
  margin-bottom: .75rem;
}
.article__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .875rem;
  color: var(--color-text-muted);
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--color-brand);
}
.article__feature-image {
  margin-bottom: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.article__feature-image img { width: 100%; max-height: 480px; object-fit: cover; }

/* Article body — rich text */
.article__body,
.gh-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text);
}
.gh-content > * + * { margin-top: 1.4em; }
.gh-content h2 { font-size: 1.5rem; margin-top: 2em; color: var(--color-heading); }
.gh-content h3 { font-size: 1.2rem; margin-top: 1.75em; color: var(--color-heading); }
.gh-content h4 { font-size: 1.05rem; margin-top: 1.5em; color: var(--color-heading); }
.gh-content p { margin-top: 1.2em; }
.gh-content ul, .gh-content ol { padding-left: 1.75em; }
.gh-content ul { list-style: disc; }
.gh-content ol { list-style: decimal; }
.gh-content li { margin-top: .4em; }
.gh-content a { color: var(--color-brand); font-weight: var(--weight-semibold); }
.gh-content a:hover { text-decoration: underline; }
.gh-content blockquote {
  border-left: 4px solid var(--color-brand);
  padding: 1rem 1.5rem;
  margin: 1.5em 0;
  background: var(--color-surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--color-text-muted);
}
.gh-content img { border-radius: var(--radius); margin: 1.5em auto; }
.gh-content figcaption { text-align: center; font-size: .8rem; color: var(--color-text-muted); margin-top: .4rem; }
.gh-content pre, .gh-content code {
  font-family: 'Courier New', monospace;
  font-size: .875em;
  background: var(--color-surface);
  border-radius: var(--radius);
}
.gh-content pre { padding: 1rem 1.25rem; overflow-x: auto; }
.gh-content code { padding: .15em .4em; }
.gh-content hr { border: none; border-top: 1px solid var(--color-border); margin: 2em 0; }

/* Article footer / tags */
.article__footer { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); }
.article__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
}
.article__tags span { color: var(--color-text-muted); }
.article__tag-link {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: .2rem .65rem;
  border-radius: 3px;
  font-size: .8rem;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  text-decoration: none !important;
}
.article__tag-link:hover { background: var(--color-brand); color: #fff; border-color: var(--color-brand); }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar { min-width: 0; }
.sidebar-widget {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  margin-bottom: 1.75rem;
  background: #fff;
}
.sidebar-widget__title {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--color-border);
}
.sidebar-widget__list li { margin-bottom: .1rem; }
.sidebar-widget__list a {
  display: block;
  padding: .35rem .1rem;
  font-size: .9rem;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  text-decoration: none !important;
  border-bottom: 1px solid transparent;
  transition: color .15s, padding-left .15s;
}
.sidebar-widget__list a:hover { color: var(--color-brand); padding-left: .4rem; }
.sidebar-widget--contact { background: var(--color-brand); border-color: var(--color-brand); }
.sidebar-widget--contact .sidebar-widget__title { color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.2); }
.sidebar-widget--contact address { margin-bottom: 1.1rem; }
.sidebar-widget--contact address p,
.sidebar-widget--contact address a {
  display: block;
  color: #fff;
  font-size: .9rem;
  font-weight: var(--weight-semibold);
  margin-bottom: .3rem;
}
.sidebar-widget--contact address a:hover { opacity: .8; text-decoration: none !important; }
.sidebar-widget--contact .btn--full {
  background: #fff;
  color: var(--color-brand);
  border-color: #fff;
  font-size: .875rem;
}
.sidebar-widget--contact .btn--full:hover { background: rgba(255,255,255,.9); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  margin-top: 2rem;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2rem 3rem;
  padding: 3.5rem 0 2.5rem;
}
.site-footer__logo { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: .85; margin-bottom: .75rem; }
.site-footer__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: .5rem;
  display: block;
}
.site-footer__tagline { font-size: .85rem; line-height: 1.5; color: var(--color-footer-text); }
.site-footer__links h4,
.site-footer__contact h4 {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
  margin-bottom: .9rem;
}
.site-footer__links ul li { margin-bottom: .25rem; }
.site-footer__links a,
.site-footer__contact a {
  font-size: .875rem;
  color: var(--color-footer-text);
  text-decoration: none !important;
  transition: color .15s;
}
.site-footer__links a:hover,
.site-footer__contact a:hover { color: #fff; }
.site-footer__contact address {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  margin-bottom: 1rem;
}
.site-footer__contact .btn--outline {
  border-color: rgba(255,255,255,.3);
  color: #fff;
  font-size: .8rem;
  padding: .45rem 1rem;
}
.site-footer__contact .btn--outline:hover { background: #fff; color: var(--color-brand); border-color: #fff; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--color-footer-text);
  flex-wrap: wrap;
  gap: .5rem;
}
.site-footer__bottom nav { display: flex; gap: 1.25rem; }
.site-footer__bottom nav a { color: var(--color-footer-text); text-decoration: none !important; }
.site-footer__bottom nav a:hover { color: #fff; }

/* ============================================================
   HOME PAGE
   ============================================================ */
.home-hero {
  background: linear-gradient(135deg, #330102 0%, #5a0204 100%);
  color: #fff;
  padding: 5rem 0 4rem;
}
.home-hero__eyebrow {
  font-size: .8rem;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .7;
  margin-bottom: .75rem;
}
.home-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: var(--weight-bold);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.home-hero__body {
  font-size: 1.05rem;
  opacity: .88;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.home-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.home-hero__actions .btn--outline { border-color: rgba(255,255,255,.5); color: #fff; }
.home-hero__actions .btn--outline:hover { background: rgba(255,255,255,.15); border-color: #fff; }

.home-section { padding: 3rem 0 2rem; }
.home-section__header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1.75rem; }
.home-section__title { font-size: 1.5rem; }
.home-section__more { font-size: .875rem; font-weight: var(--weight-semibold); color: var(--color-brand); }

.home-practice-areas { padding: 2rem 0 4rem; }
.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.practice-card {
  display: block;
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
  text-decoration: none !important;
  color: var(--color-text);
  transition: box-shadow .2s, border-color .2s, transform .2s;
  border-top: 3px solid var(--color-brand);
}
.practice-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--color-brand); }
.practice-card h3 { font-size: 1.05rem; color: var(--color-heading); margin-bottom: .5rem; }
.practice-card p { font-size: .875rem; color: var(--color-text-muted); line-height: 1.6; margin-bottom: .75rem; }
.practice-card__link { font-size: .8rem; font-weight: var(--weight-bold); color: var(--color-brand); }

.author-hero__avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid rgba(255,255,255,.3);
}
.author-hero__links { margin-top: 1rem; display: flex; justify-content: center; gap: .75rem; }

/* ============================================================
   ERROR PAGE
   ============================================================ */
.error-page {
  text-align: center;
  padding: 6rem 0;
}
.error-page__code {
  font-size: 6rem;
  font-family: var(--font-heading);
  color: var(--color-brand);
  opacity: .3;
  line-height: 1;
  margin-bottom: .5rem;
}
.error-page__title { font-size: 1.75rem; margin-bottom: 1rem; }
.error-page__body { color: var(--color-text-muted); max-width: 420px; margin: 0 auto 2rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .content-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .sidebar { order: -1; }
  .post-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  :root { --header-h: 60px; }

  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: #fff;
    overflow-y: auto;
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform .28s ease;
    border-top: 1px solid var(--color-border);
  }
  .site-nav.is-open { transform: translateX(0); }

  .site-nav__list { flex-direction: column; align-items: flex-start; gap: 0; }
  .site-nav__item { width: 100%; }
  .site-nav__link { padding: .75rem 0; font-size: 1rem; border-bottom: 1px solid var(--color-border); border-radius: 0; }
  .dropdown { display: none !important; position: static; box-shadow: none; border: none; padding: 0 0 0 1rem; background: var(--color-surface); }
  .site-nav__item.is-open .dropdown { display: block !important; }
  .dropdown li a { padding: .6rem .5rem; font-size: .9rem; }
  .site-nav__cta { margin: 1rem 0 0; width: 100%; text-align: center; border-radius: var(--radius); padding: .75rem; }

  .page-hero { padding: 2rem 0; }

  .post-grid { grid-template-columns: 1fr; }

  .site-footer__inner { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 0 1.5rem; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .site-logo__img { height: 34px; }
}

/* ============================================================
   GHOST KOENIG WIDE / FULL WIDTH (required by GScan)
   ============================================================ */
.kg-width-wide {
  position: relative;
  width: 85vw;
  min-width: 100%;
  margin-left: calc(50% - 42.5vw);
  margin-right: calc(50% - 42.5vw);
}
.kg-width-full {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* ============================================================
   GHOST EDITOR CARD STYLES (for Koenig content)
   ============================================================ */
.gh-content .kg-card { margin: 1.5em 0; }
.gh-content .kg-image-card img { border-radius: var(--radius); }
.gh-content .kg-gallery-card { margin: 1.5em -1rem; }
.gh-content .kg-gallery-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: .5rem; }
.gh-content .kg-gallery-image img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius); }
.gh-content .kg-bookmark-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.gh-content .kg-bookmark-container { display: flex; text-decoration: none !important; color: var(--color-text); }
.gh-content .kg-bookmark-content { padding: 1rem; flex: 1; }
.gh-content .kg-bookmark-title { font-weight: var(--weight-semibold); margin-bottom: .25rem; }
.gh-content .kg-bookmark-description { font-size: .875rem; color: var(--color-text-muted); }
.gh-content .kg-bookmark-thumbnail img { width: 180px; height: 100%; object-fit: cover; }
.gh-content .kg-callout-card {
  display: flex;
  gap: 1rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 1.25rem;
  border-left: 4px solid var(--color-brand);
}
.gh-content .kg-callout-emoji { font-size: 1.5rem; line-height: 1; }
.gh-content .kg-toggle-card { border: 1px solid var(--color-border); border-radius: var(--radius); }
.gh-content .kg-toggle-heading-text { padding: 1rem; font-weight: var(--weight-semibold); }
.gh-content .kg-toggle-content { padding: 0 1rem 1rem; }
