/* ============================================
   Clayton Legal Group — Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600&display=swap');

:root {
  /* Brand colors — pulled directly from the logo file */
  --clg-red: #9C1726;
  --clg-red-dark: #7A1220;
  --clg-navy: #1C2B5A;
  --clg-ink: #141F42;
  --clg-silver: #9CA1A6;
  --clg-silver-light: #DEE1E3;
  --clg-parchment: #EFEAE0;
  --clg-parchment-warm: #E7E0D2;
  --clg-white: #FDFCFA;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-nav: 'Poppins', -apple-system, sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 9rem;

  --max-width: 1200px;
  --radius: 2px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--clg-ink);
  background: var(--clg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

img, svg { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid var(--clg-red);
  outline-offset: 3px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--clg-navy);
  font-weight: 500;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
h3 { font-size: 1.4rem; }

p { color: var(--clg-ink); }

.eyebrow {
  font-family: var(--font-nav);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clg-red);
}

/* ============ Crescent divider — signature element ============ */
/* Echoes the crescent-C in the mark: a thin arc, not a straight rule */
.crescent-divider {
  width: 64px;
  height: 32px;
  margin: var(--space-md) 0;
}

.crescent-divider.center {
  margin-left: auto;
  margin-right: auto;
}

.crescent-divider svg { width: 100%; height: 100%; }

/* ============================================
   Header / Nav
   ============================================ */

.header-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* ============ Top utility bar — always-visible call to action ============
   Red band above the navy header. The CTA is inverted (white on red) rather
   than red-on-neutral: it's the highest-contrast treatment available and
   keeps this the single scheduling CTA in the header. Kept deliberately
   thin — a large field of red reads as urgency rather than counsel. */
.top-bar {
  background: var(--clg-red);
  color: var(--clg-white);
}

.top-bar .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-sm);
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.top-bar-meta {
  font-family: var(--font-nav);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--clg-white);
  white-space: nowrap;
}

.top-bar-loc { justify-self: start; }
.top-bar-tel { justify-self: end; }

.top-bar-tel a {
  color: var(--clg-white);
  font-weight: 700;
  border-bottom: 1px solid rgba(253, 252, 250, 0.35);
  transition: border-color 0.2s ease;
}

.top-bar-tel a:hover { border-bottom-color: var(--clg-white); }

.top-bar-cta {
  justify-self: center;
  font-family: var(--font-nav);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: var(--clg-white);
  color: var(--clg-red);
  padding: 0.35rem 1.15rem;
  border-radius: var(--radius);
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.top-bar-cta:hover {
  background: var(--clg-parchment);
  color: var(--clg-red-dark);
}

.top-bar-cta:focus-visible,
.top-bar-tel a:focus-visible {
  outline: 2px solid var(--clg-white);
  outline-offset: 2px;
}

/* Tablet: the service-area line is the first thing to go. */
@media (max-width: 820px) {
  .top-bar .container { grid-template-columns: auto auto; justify-content: space-between; }
  .top-bar-loc { display: none; }
  .top-bar-cta { justify-self: start; }
}

/* Small phones: tighten type and padding so both targets stay on one row. */
@media (max-width: 400px) {
  .top-bar .container { padding-left: var(--space-sm); padding-right: var(--space-sm); gap: 0.5rem; }
  .top-bar-meta, .top-bar-cta { font-size: 0.68rem; letter-spacing: 0.02em; }
  .top-bar-cta { padding: 0.32rem 0.7rem; }
}

/* Pages where the top bar shouldn't stay pinned while scrolling
   (the scheduling page and, later, intake form pages) */
body.static-header .header-wrap {
  position: static;
}

.site-header {
  background: var(--clg-navy);
  border-bottom: 1px solid rgba(222, 225, 227, 0.15);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.brand-mark img { height: 60px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  color: var(--clg-silver-light);
}

/* Child selector: this is the horizontal top-level bar only. Without the `>`
   it also matched .dropdown-menu and forced the submenu into a flex row. */
.main-nav > ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: var(--space-md);
  font-family: var(--font-nav);
  font-size: 0.92rem;
  font-weight: 500;
}

.main-nav a {
  position: relative;
  padding: 0.25rem 0;
  color: var(--clg-silver-light);
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--clg-white);
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--clg-red);
  transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  width: 100%;
}

/* ============ Nav dropdown ============ */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-nav);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--clg-silver-light);
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.nav-dropdown-toggle:hover { color: var(--clg-white); }

.nav-dropdown-toggle svg {
  width: 9px;
  height: 9px;
  transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown.open .nav-dropdown-toggle { color: var(--clg-white); }

.dropdown-menu {
  list-style: none;
  background: var(--clg-white);
  border: 1px solid rgba(28, 43, 90, 0.12);
  min-width: 210px;
  padding: 0.4rem 0;
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  box-shadow: 0 10px 24px rgba(20, 31, 66, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 50;
}

.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.15rem;
  font-size: 0.9rem;
  font-family: var(--font-nav);
  white-space: nowrap;
  color: var(--clg-ink);
}

.dropdown-menu li a:hover {
  background: var(--clg-parchment-warm);
  color: var(--clg-red);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--clg-silver-light);
}

.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 860px) {
  /* NOTE: the `>` here matters. These rules are meant for the top-level menu
     only. Written as descendant selectors (`.main-nav ul`), they also matched
     the nested .dropdown-menu, handing it the panel's navy background and
     absolute positioning. Keep them as child selectors. */
  .main-nav > ul { display: none; }
  .nav-toggle { display: block; }

  .main-nav.open > ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--clg-navy);
    padding: var(--space-md);
    border-bottom: 1px solid rgba(222,225,227,0.15);
    gap: var(--space-sm);
  }

  .brand-mark,
  .brand-mark img { flex-shrink: 0; }

  /* Submenu sits inline within the navy panel, so it goes transparent with
     light text rather than the white card used on desktop. */
  .dropdown-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    min-width: 0;
    width: 100%;
    padding: 0 0 0 var(--space-sm);
    margin-top: 0.25rem;
  }

  .nav-dropdown.open .dropdown-menu { display: block; }

  .dropdown-menu li a {
    color: var(--clg-silver-light);
    padding: 0.55rem 0;
  }

  .dropdown-menu li a:hover,
  .dropdown-menu li a:active,
  .dropdown-menu li a:focus {
    background: transparent;
    color: var(--clg-white);
  }
}

@media (max-width: 560px) {
  /* Shorter logo so the header bar doesn't dominate a phone screen. */
  .brand-mark img { height: 48px; }
}

/* ============================================
   Hero
   ============================================ */

.hero {
  padding: var(--space-2xl) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-lg);
  align-items: center;
}

.hero-copy h1 {
  margin: var(--space-sm) 0 var(--space-md);
}

.hero-copy .lede {
  font-size: 1.15rem;
  max-width: 46ch;
  color: var(--clg-ink);
  opacity: 0.85;
  margin-bottom: var(--space-md);
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.btn {
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  display: inline-block;
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--clg-red);
  color: var(--clg-white);
}
.btn-primary:hover { background: var(--clg-red-dark); }

.btn-secondary {
  background: transparent;
  border-color: var(--clg-navy);
  color: var(--clg-navy);
}
.btn-secondary:hover { background: var(--clg-navy); color: var(--clg-white); }

.hero-emblem {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-emblem .emblem-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(156, 23, 38, 0.18);
  border-radius: 50%;
}

.hero-emblem img {
  width: 62%;
}

/* ============================================
   Trust strip
   ============================================ */

.trust-strip {
  background: var(--clg-navy);
  color: var(--clg-parchment);
  padding: var(--space-md) 0;
}

.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: space-between;
  align-items: center;
}

.trust-item {
  font-family: var(--font-nav);
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  opacity: 0.92;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.trust-item .dot {
  width: 5px;
  height: 5px;
  background: var(--clg-red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   Practice Areas
   ============================================ */

.section {
  padding: var(--space-xl) 0;
}

.section-head {
  max-width: 60ch;
  margin-bottom: var(--space-lg);
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(28, 43, 90, 0.15);
  border: 1px solid rgba(28, 43, 90, 0.15);
}

/* Fifth card: with a 2-column grid, an odd card count leaves an empty cell.
   Spanning the last card full width closes the gap. Harmless if a 6th is ever added
   at 2 columns — remove this rule if the grid ever goes to an even count. */
.practice-grid > .practice-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.practice-card {
  background: var(--clg-white);
  padding: var(--space-lg);
  transition: background 0.25s ease;
}

.practice-card:hover {
  background: var(--clg-parchment-warm);
}

.practice-card .num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--clg-silver);
  font-weight: 500;
}

.practice-card h3 {
  margin: var(--space-xs) 0 var(--space-xs);
}

.practice-card p {
  opacity: 0.8;
  font-size: 0.96rem;
  margin-bottom: var(--space-sm);
}

.practice-card .learn-more {
  font-family: var(--font-nav);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clg-red);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

@media (max-width: 720px) {
  .practice-grid { grid-template-columns: 1fr; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-emblem { order: -1; max-width: 200px; margin: 0 auto; }
}

/* ============================================
   About teaser
   ============================================ */

.about-teaser {
  background: var(--clg-white);
}

.about-teaser .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-teaser blockquote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--clg-navy);
  line-height: 1.4;
  font-weight: 500;
}

.about-teaser cite {
  display: block;
  margin-top: var(--space-sm);
  font-family: var(--font-nav);
  font-style: normal;
  font-size: 0.85rem;
  color: var(--clg-red);
  font-weight: 600;
}

@media (max-width: 720px) {
  .about-teaser .container { grid-template-columns: 1fr; }
}

/* ============================================
   CTA band
   ============================================ */

.cta-band {
  background: var(--clg-navy);
  color: var(--clg-white);
  padding: var(--space-xl) 0;
  text-align: center;
}

.cta-band h2 { color: var(--clg-white); }

.cta-band p {
  color: var(--clg-parchment);
  opacity: 0.85;
  max-width: 50ch;
  margin: var(--space-sm) auto var(--space-md);
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--clg-ink);
  color: var(--clg-parchment);
  padding: var(--space-lg) 0 var(--space-md);
}

/* The global `p { color: var(--clg-ink) }` rule beats the inherited footer
   color, which rendered footer paragraphs in the exact background color —
   invisible. Anything more specific below (e.g. .footer-brand p) still wins. */
.site-footer p { color: var(--clg-parchment); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(239, 234, 224, 0.12);
}

.footer-brand img { height: 34px; margin-bottom: var(--space-sm); }

.footer-brand p {
  color: var(--clg-parchment);
  opacity: 0.65;
  font-size: 0.9rem;
  max-width: 32ch;
}

.footer-col h4 {
  font-family: var(--font-nav);
  color: var(--clg-parchment);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; font-size: 0.92rem; opacity: 0.8; }
.footer-col a:hover { color: var(--clg-red); opacity: 1; }

.footer-bottom {
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.8rem;
  opacity: 0.55;
}

/* State Bar of Texas responsible-attorney notice. Deliberately set brighter
   than .footer-bottom (which sits at 0.55 opacity / ~5:1) — a required
   disclosure shouldn't be the least legible text on the page. */
.footer-responsible {
  margin-top: var(--space-sm);
  font-size: 0.8rem;
  line-height: 1.5;
  opacity: 0.85;
}

/* The three fixed footer columns don't fit a phone — without this the footer
   pushed ~32px past the right edge and every page scrolled sideways. */
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Inner Page Hero (Practice Areas, About, Contact, Blog)
   ============================================ */

.page-hero {
  padding: var(--space-xl) 0 var(--space-lg);
  border-bottom: 1px solid rgba(28, 43, 90, 0.1);
}

.page-hero .lede {
  max-width: 56ch;
  font-size: 1.05rem;
  opacity: 0.82;
  margin-top: var(--space-sm);
}

/* ============================================
   Practice Area Detail Sections
   ============================================ */

.practice-detail {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid rgba(28, 43, 90, 0.1);
}

.practice-detail:last-of-type { border-bottom: none; }

.practice-detail .container {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: var(--space-lg);
}

.practice-detail .num-big {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--clg-silver);
  font-weight: 500;
  line-height: 1;
}

.practice-detail .detail-list {
  list-style: none;
  margin-top: var(--space-sm);
}

.practice-detail .detail-list li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.55rem;
  font-size: 0.96rem;
  opacity: 0.85;
}

.practice-detail .detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  background: var(--clg-red);
  border-radius: 50%;
}

@media (max-width: 720px) {
  .practice-detail .container { grid-template-columns: 1fr; gap: var(--space-sm); }
}

/* ============================================
   About page
   ============================================ */

.attorney-strip {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  align-items: stretch;
}

.attorney-sidebar {
  background: var(--clg-navy);
  padding: var(--space-lg) var(--space-md);
  color: var(--clg-white);
}

.attorney-bio-col {
  padding: var(--space-sm) 0 var(--space-xl);
}

.attorney-bio .crescent-divider {
  margin-top: 0;
}

.attorney-bio-col .container {
  padding-left: var(--space-lg);
}

@media (max-width: 780px) {
  .attorney-strip { grid-template-columns: 1fr; }
  .attorney-sidebar { padding: var(--space-md); }
  .attorney-bio-col .container { padding-left: var(--space-md); }
}

/* Bio body section headings — "Serving People", etc.
   Set in Clayton Navy. To switch to red, change `color` below to var(--clg-red). */
.bio-section-head {
  font-size: 1.25rem;
  color: var(--clg-navy);
  margin-top: var(--space-md);
  margin-bottom: 0.5rem;
}

.bio-section-head:first-of-type {
  margin-top: 0;
}

/* In-bio photo with caption (Christina's consultation image) */
.bio-figure {
  margin: var(--space-md) 0 0;
  max-width: 62ch;
}

.bio-figure img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(28, 43, 90, 0.12);
}

.bio-figure figcaption {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--clg-navy);
  opacity: 0.75;
}

.attorney-credentials {
  margin-top: var(--space-md);
}

.attorney-credentials h4 {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  color: var(--clg-red);
  font-weight: 700;
}

.attorney-credentials ul {
  list-style: none;
  margin-bottom: var(--space-sm);
}

.attorney-credentials li {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  opacity: 0.85;
}

.attorney-portrait {
  aspect-ratio: 3/4;
  background: var(--clg-white);
  border: 1px solid rgba(28,43,90,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clg-silver);
  font-family: var(--font-nav);
  font-size: 0.85rem;
  text-align: center;
  padding: var(--space-md);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.value-item {
  background: var(--clg-white);
  padding: var(--space-md);
  border-top: 3px solid var(--clg-red);
}

.value-item h4 {
  font-family: var(--font-nav);
  color: var(--clg-navy);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.value-item p { font-size: 0.92rem; opacity: 0.8; }

@media (max-width: 780px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Contact page
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--space-lg);
  align-items: start;
}

.contact-card {
  background: var(--clg-white);
  padding: var(--space-lg);
  border: 1px solid rgba(28,43,90,0.1);
}

.contact-card h3 { margin-bottom: var(--space-sm); }

.contact-line {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
}

.contact-line svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--clg-red);
  margin-top: 0.15rem;
}

.calendly-frame-wrap {
  background: var(--clg-white);
  border: 1px solid rgba(28,43,90,0.1);
  min-height: 630px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg);
}

.calendly-frame-wrap .placeholder-note {
  max-width: 40ch;
  font-family: var(--font-nav);
  font-size: 0.88rem;
  color: var(--clg-silver);
  line-height: 1.6;
}

@media (max-width: 780px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* 64px of padding on each side doesn't fit a 320px phone — the cards were
   forced wider than the viewport. */
@media (max-width: 560px) {
  .contact-card,
  .calendly-frame-wrap { padding: var(--space-md); }
  .calendly-frame-wrap .placeholder-note { max-width: 100%; min-width: 0; }
}

/* ============================================
   Blog page
   ============================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.blog-card {
  background: var(--clg-white);
  border: 1px solid rgba(28,43,90,0.1);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.blog-card .blog-date {
  font-family: var(--font-nav);
  font-size: 0.78rem;
  color: var(--clg-red);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-card h3 { font-size: 1.15rem; }
.blog-card p { font-size: 0.92rem; opacity: 0.75; }

.blog-empty {
  background: var(--clg-white);
  border: 1px dashed rgba(28,43,90,0.25);
  padding: var(--space-xl);
  text-align: center;
  color: var(--clg-silver);
  font-family: var(--font-nav);
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Blog Article Pages
   ============================================ */

.article-meta {
  font-family: var(--font-nav);
  font-size: 0.85rem;
  color: var(--clg-red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-sm);
  display: block;
}

.article-body {
  max-width: 68ch;
}

.article-body h2 {
  font-size: 1.4rem;
  margin-top: var(--space-lg);
  margin-bottom: 0.75rem;
}

.article-body p {
  margin-bottom: 1.1rem;
  max-width: 68ch;
}

.article-body ul {
  list-style: none;
  margin: 0 0 1.1rem 0;
}

.article-body ul li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.55rem;
}

.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  background: var(--clg-red);
  border-radius: 50%;
}

.article-cta {
  background: var(--clg-parchment-warm);
  border-left: 4px solid var(--clg-red);
  padding: var(--space-md);
  margin-top: var(--space-lg);
  max-width: 68ch;
}

.article-cta p {
  margin-bottom: var(--space-sm);
}

.article-cta p:last-child {
  margin-bottom: 0;
}

.article-back {
  display: inline-block;
  margin-bottom: var(--space-md);
  font-family: var(--font-nav);
  font-size: 0.9rem;
}

