/*
Theme Name:  CEPOAWatch
Theme URI:   https://cepoawatch.com
Author:      CEPOAWatch
Author URI:  https://cepoawatch.com
Description: Independent community journalism theme for Chatfield East Property Owners Association homeowners.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cepoawatch
Tags:        news, blog, custom-colors, custom-logo, featured-images, sticky-post
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --red:          #c0392b;
  --dark:         #1a1a1a;
  --ink:          #2c2c2c;
  --muted:        #6b6b6b;
  --rule:         #d4d4d4;
  --bg-offwhite:  #f8f6f1;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: #fff;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.5;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  margin-top: 0;
}

a { color: inherit; }

img { max-width: 100%; height: auto; }

section { padding: 60px 0; }

.container-xxl {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-red   { color: var(--red) !important; }
.text-muted { color: var(--muted) !important; }
.text-white { color: #fff !important; }
.text-dark  { color: var(--dark) !important; }

.border-red { border-color: var(--red) !important; }

hr.thick {
  border: none;
  border-top: 3px double var(--rule);
  opacity: 1;
  margin: 2rem 0;
}

.d-none          { display: none !important; }
.d-block         { display: block !important; }
.d-flex          { display: flex !important; }
.d-inline-block  { display: inline-block !important; }

.justify-content-between { justify-content: space-between !important; }
.justify-content-center  { justify-content: center !important; }
.align-items-center      { align-items: center !important; }
.align-items-start       { align-items: flex-start !important; }

.ms-1 { margin-left: 0.25rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-3 { margin-left: 1rem !important; }
.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }

.fw-bold { font-weight: 700 !important; }

.text-center { text-align: center !important; }
.text-end    { text-align: right !important; }

.w-100    { width: 100% !important; }
.list-unstyled { list-style: none; padding: 0; margin: 0; }

.flex-shrink-0 { flex-shrink: 0 !important; }
.flex-grow-1   { flex-grow: 1 !important; }

.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.px-0 { padding-left: 0 !important; padding-right: 0 !important; }

.border-bottom { border-bottom: 1px solid var(--rule) !important; }
.border-0      { border: none !important; }

.gap-2 { gap: 0.5rem !important; }
.flex-wrap { flex-wrap: wrap !important; }

.overflow-x-auto { overflow-x: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ============================================================
   BOOTSTRAP-STYLE GRID (minimal)
   ============================================================ */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.row.g-4 { margin-left: -12px; margin-right: -12px; }
.row.g-4 > [class*="col-"] { padding-left: 12px; padding-right: 12px; margin-bottom: 24px; }
.row.g-5 { margin-left: -20px; margin-right: -20px; }
.row.g-5 > [class*="col-"] { padding-left: 20px; padding-right: 20px; }

.col-12   { flex: 0 0 100%; max-width: 100%; padding-left: 12px; padding-right: 12px; }
.col-md-4 { padding-left: 12px; padding-right: 12px; }
.col-md-5 { padding-left: 12px; padding-right: 12px; }
.col-md-6 { padding-left: 12px; padding-right: 12px; }
.col-md-7 { padding-left: 12px; padding-right: 12px; }
.col-lg-4 { padding-left: 12px; padding-right: 12px; }
.col-lg-6 { padding-left: 12px; padding-right: 12px; }
.col-lg-7 { padding-left: 12px; padding-right: 12px; }
.col-lg-8 { padding-left: 12px; padding-right: 12px; }

@media (min-width: 768px) {
  .col-md-4 { flex: 0 0 33.333%; max-width: 33.333%; }
  .col-md-5 { flex: 0 0 41.666%; max-width: 41.666%; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-7 { flex: 0 0 58.333%; max-width: 58.333%; }
  .d-md-block { display: block !important; }
  .d-md-flex  { display: flex !important; }
  .d-md-none  { display: none !important; }
  .d-md-inline { display: inline !important; }
  .ms-md-3    { margin-left: 1rem !important; }
  .ms-md-4    { margin-left: 1.5rem !important; }
  .mt-md-0    { margin-top: 0 !important; }
  .text-md-end { text-align: right !important; }
}

@media (min-width: 992px) {
  .col-lg-4 { flex: 0 0 33.333%; max-width: 33.333%; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-7 { flex: 0 0 58.333%; max-width: 58.333%; }
  .col-lg-8 { flex: 0 0 66.666%; max-width: 66.666%; }
}

/* justify-content-center for rows */
.justify-content-center.row { justify-content: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  padding: 8px 20px;
  font-size: 0.9rem;
  line-height: 1.5;
  border-radius: 0;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.btn-dark {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.btn-dark:hover { background: #333; color: #fff; }

.btn-light {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}
.btn-light:hover { background: #f0f0f0; }

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
}
.btn-outline-dark:hover { background: var(--dark); color: #fff; }

.btn-outline-danger {
  background: transparent;
  color: var(--red);
  border: 1px solid var(--red);
}
.btn-outline-danger:hover { background: var(--red); color: #fff; }

.btn-sm { padding: 5px 14px; font-size: 0.82rem; }

.btn-alert {
  background: var(--red);
  color: #fff !important;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  padding: 6px 14px;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-alert:hover { background: #a93226; color: #fff; }

/* ============================================================
   MASTHEAD
   ============================================================ */
.masthead {
  border-bottom: 4px double #1a1a1a;
  padding: 12px 0 10px;
  background: #fff;
}
.masthead-date {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
}
.masthead-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 4rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--dark);
  text-align: center;
}
.masthead-title span { color: var(--red); }
.masthead-tagline {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 5px 0;
  margin-top: 6px;
  text-align: center;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav .container-xxl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
}
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.nav-menu li a {
  display: block;
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 14px;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-menu li a:hover,
.nav-menu li a.active { color: #fff; }

.nav-alerts { margin-left: auto; padding: 8px 0; }

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 10px;
  cursor: pointer;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  order: 2;
}
.nav-hamburger:focus { outline: 2px solid rgba(255,255,255,0.5); }

@media (max-width: 767px) {
  .nav-hamburger { display: block; }
  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: var(--dark);
    padding: 12px 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 200;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-menu li a { padding: 10px 20px; }
  .nav-alerts { order: 3; padding: 8px 0 8px 12px; }
  .site-nav .container-xxl { flex-wrap: wrap; padding-top: 8px; padding-bottom: 8px; position: relative; }
}

/* ============================================================
   BREAKING BANNER
   ============================================================ */
.breaking-banner {
  background: var(--red);
  color: #fff;
  font-size: 0.82rem;
  padding: 7px 0;
}
.breaking-banner .container-xxl {
  display: flex;
  align-items: center;
}
.breaking-label {
  background: var(--dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 2px 10px;
  font-size: 0.72rem;
  margin-right: 12px;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}
.breaking-banner a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  margin-left: 8px;
}
.breaking-banner a:hover { text-decoration: underline; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-bar {
  width: 100%;
  border-bottom: 1px solid var(--rule);
  background: #fff;
}
.breadcrumb-nav {
  font-size: 0.75rem;
  color: var(--muted);
  padding: 10px 0;
  font-family: 'DM Sans', sans-serif;
}
.breadcrumb-nav a {
  color: var(--muted);
  text-decoration: none;
}
.breadcrumb-nav a:hover { color: var(--red); }
.breadcrumb-nav .sep { margin: 0 8px; }

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--dark);
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  border-bottom: 3px solid var(--dark);
  padding-bottom: 6px;
  margin-bottom: 24px;
  display: block;
}
.section-label.red {
  border-color: var(--red);
  color: var(--red);
}

/* ============================================================
   LEAD STORY
   ============================================================ */
.lead-story {
  background: var(--bg-offwhite);
  border-bottom: 2px solid var(--rule);
}
.lead-story-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--red);
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 12px;
  display: block;
}
.lead-story h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 0;
}
.lead-story .deck {
  font-family: 'Source Serif 4', serif;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 14px;
  margin-bottom: 0;
}
.lead-story .byline {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 8px 0;
  margin-top: 16px;
  margin-bottom: 0;
  font-family: 'DM Sans', sans-serif;
}
.lead-story-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

/* ============================================================
   NEWS CARDS
   ============================================================ */
.news-card {
  border: none;
  border-top: 2px solid var(--rule);
  border-radius: 0;
  background: transparent;
  padding: 16px;
}
.news-card a { text-decoration: none; color: inherit; display: block; }
.news-card:hover .news-card-title { color: var(--red); }
.news-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  margin-bottom: 12px;
  border-radius: 3px;
  display: block;
  aspect-ratio: 1 / 1;
}
.news-card-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 6px;
}
.news-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  line-height: 1.3;
  transition: color 0.2s;
  margin-bottom: 8px;
}
.news-card-excerpt {
  font-family: 'Source Serif 4', serif;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}
.news-card-meta {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'DM Sans', sans-serif;
  margin-top: 10px;
}

/* ============================================================
   SITE-WIDE SIDEBAR
   ============================================================ */
.sidebar-widget {
  border-top: 3px solid var(--dark);
  padding-top: 16px;
  margin-bottom: 32px;
}
.sidebar-widget-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-bottom: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
}
.sidebar-list-item {
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
  font-size: 0.88rem;
  font-family: 'Source Serif 4', serif;
}
.sidebar-list-item:last-child { border-bottom: none; }
.sidebar-list-item a {
  text-decoration: none;
  color: var(--ink);
  display: block;
}
.sidebar-list-item a:hover { color: var(--dark); }

/* ============================================================
   MEETING SUMMARIES
   ============================================================ */
.meetings-section {
  background-color: var(--bg-offwhite);
}
.meeting-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-left: 4px solid var(--red);
  border-radius: 0;
  transition: box-shadow 0.2s;
  padding: 24px 30px;
}
.meeting-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.meeting-date-badge {
  background: var(--dark);
  color: #fff;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
}
.meeting-topics { margin-bottom: 12px; }
.meeting-topic-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--bg-offwhite);
  border: 1px solid var(--rule);
  color: var(--muted);
  padding: 2px 8px;
  border-radius: 2px;
  margin-right: 4px;
  margin-bottom: 4px;
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
}
.meeting-card h4 {
  font-size: 1.1rem;
  margin-top: 8px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.meeting-summary {
  font-family: 'Source Serif 4', serif;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink);
  margin: 0;
}
.meeting-actions { margin-top: 16px; }
.meeting-actions a {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
  white-space: nowrap;
  border-radius: 0;
  text-decoration: none;
  padding: 5px 14px;
  border: 1px solid;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, color 0.2s;
}
.meeting-actions .btn-minutes {
  color: var(--dark);
  border-color: var(--dark);
  background: transparent;
}
.meeting-actions .btn-minutes:hover { background: var(--dark); color: #fff; }
.meeting-actions .btn-agenda {
  color: var(--red);
  border-color: var(--red);
  background: transparent;
}
.meeting-actions .btn-agenda:hover { background: var(--red); color: #fff; }

/* Filter buttons */
.meeting-filters { margin-bottom: 28px; display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 0;
  border: 1px solid var(--rule);
  color: var(--ink);
  background: #fff;
  padding: 5px 14px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.filter-btn.is-active,
.filter-btn:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

/* ============================================================
   WATCHDOG BOX
   ============================================================ */
.watchdog-box {
  background: var(--dark);
  color: #fff;
  padding: 36px;
}
.watchdog-box h2 { color: #fff; margin-bottom: 16px; }
.watchdog-box p {
  font-family: 'Source Serif 4', serif;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.watchdog-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
  border-left: 3px solid var(--red);
  padding: 14px 20px;
  margin: 20px 0;
  line-height: 1.65;
  background: rgba(255,255,255,0.04);
}
.watchdog-box-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
  display: block;
}

/* Accordion (custom JS-driven, not Bootstrap) */
.rights-accordion { }
.accordion__item {
  border: none;
  border-bottom: 1px solid var(--rule);
}
.accordion__item:last-child { border-bottom: none; }
.accordion__trigger {
  display: flex;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 14px 0;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  gap: 10px;
  transition: color 0.2s;
}
.accordion__trigger:hover { color: var(--red); }
.accordion__trigger:focus { outline: 2px solid var(--red); outline-offset: 2px; }
.accordion__trigger-icon { color: var(--red); flex-shrink: 0; }
.accordion__body {
  display: none;
  padding: 0 0 16px 0;
  font-family: 'Source Serif 4', serif;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
}
.accordion__item.is-open .accordion__body { display: block; }
.accordion__item.is-open .accordion__trigger { color: var(--red); }

/* ============================================================
   FINE PRINT OPINION COLUMN
   ============================================================ */
.fine-print-section {
  background: var(--bg-offwhite);
  border-top: 4px double var(--dark);
  border-bottom: 4px double var(--dark);
}
.fine-print-header { text-align: center; margin-bottom: 36px; }
.fine-print-kicker {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--red);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
  font-family: 'DM Sans', sans-serif;
}
.fine-print-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
  margin: 0;
}
.fine-print-subtitle {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 6px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 5px 0;
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
}
.fine-print-image-wrap {
  text-align: center;
  margin-bottom: 28px;
}
.fine-print-image-wrap img {
  width: 300px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
}
.fine-print-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-top: 3px solid var(--dark);
  padding: 30px;
}
.fine-print-card-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
}
.fine-print-card h3 {
  font-size: 1.4rem;
  line-height: 1.25;
  margin-bottom: 14px;
}
.fine-print-card p {
  font-family: 'Source Serif 4', serif;
  font-size: 0.97rem;
  line-height: 1.82;
  color: var(--ink);
  margin-bottom: 1.1rem;
}
.fine-print-card p:last-child { margin-bottom: 0; }
.fine-print-byline {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 8px 0;
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
}

/* ============================================================
   ALERTS SIGNUP FORM
   ============================================================ */
.signup-section {
  background: var(--bg-offwhite);
  border-top: 4px double var(--dark);
}
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
}
.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--dark);
}
textarea.form-control {
  height: 110px;
  resize: vertical;
}
.field-note {
  font-size: 0.75rem;
  color: var(--muted);
  font-family: 'Source Serif 4', serif;
  margin-top: 4px;
  padding-left: 4px;
}
.alerts-signup__success {
  display: none;
  background: #f0fff4;
  border: 1px solid #b7e4c7;
  border-left: 4px solid #28a745;
  padding: 20px;
  font-family: 'Source Serif 4', serif;
  font-size: 0.95rem;
}
.alerts-signup__success.is-visible { display: block; }
.alerts-signup__error {
  display: none;
  background: #fff5f5;
  border: 1px solid #feb2b2;
  border-left: 4px solid var(--red);
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--red);
  margin-bottom: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  padding: 48px 0 24px;
}
footer a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}
footer a:hover { color: #fff; }
.footer-title {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 8px;
  display: block;
}
.footer-title span { color: var(--red); }
.footer-section-head {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  margin-bottom: 14px;
}
footer ul li { margin-bottom: 6px; }
footer hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 36px 0 16px;
}
.footer-copy { text-align: center; font-size: 0.72rem; }

/* ============================================================
   OFFCANVAS LINKS PANEL (custom, JS-driven)
   ============================================================ */
.offcanvas-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1040;
}
.offcanvas-overlay.is-open { display: block; }

.offcanvas-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 90vw;
  background: #fff;
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.offcanvas-panel.is-open { transform: translateX(0); }

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--rule);
}
.offcanvas-header h5 {
  font-family: 'Playfair Display', serif;
  margin: 0;
  font-size: 1.1rem;
}
.offcanvas-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  padding: 4px 8px;
}
.offcanvas-close:hover { color: var(--dark); }
.offcanvas-body { padding: 20px; flex: 1; }
.offcanvas-section-head {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 20px;
}
.offcanvas-body ul { list-style: none; padding: 0; margin: 0; }
.offcanvas-body ul li { margin-bottom: 10px; }
.offcanvas-body ul li a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.offcanvas-body ul li a:hover { color: var(--red); }
.offcanvas-body ul li a i { color: var(--red); flex-shrink: 0; }

.fixed-links-btn {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 999;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 16px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: background 0.2s;
}
.fixed-links-btn:hover { background: #333; color: #fff; }

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.article-section { padding: 60px 0; }

.article-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.15;
  margin-bottom: 0;
}
.article-deck {
  font-family: 'Source Serif 4', serif;
  font-size: 1.12rem;
  color: var(--muted);
  line-height: 1.7;
  border-left: 3px solid var(--red);
  padding-left: 16px;
  margin: 20px 0;
}
.byline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 8px 0;
  margin-bottom: 28px;
  font-family: 'DM Sans', sans-serif;
}

.article-body {
  font-family: 'Source Serif 4', serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink);
}
.article-body p { margin-bottom: 1.4rem; }
.article-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-top: 2.2rem;
  margin-bottom: 0.8rem;
  border-bottom: 2px solid var(--rule);
  padding-bottom: 6px;
  line-height: 1.3;
}

/* ── EMAIL EXCERPT ── */
.email-excerpt {
  border: 1px solid var(--rule);
  border-left: 3px solid var(--muted);
  padding: 18px 22px;
  margin: 24px 0;
  background: #fafafa;
}
.email-excerpt-header {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
}
.email-excerpt-body {
  font-family: 'Source Serif 4', serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink);
  margin: 0;
}

/* ── POLICY RULES LIST ── */
.policy-rules {
  border: 1px solid var(--rule);
  border-top: 3px solid var(--red);
  padding: 24px;
  margin: 32px 0;
  background: #fff;
}
.policy-rules-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--red);
  font-family: 'DM Sans', sans-serif;
}
.policy-rules-subtitle {
  font-size: 0.82rem;
  color: var(--muted);
  font-family: 'Source Serif 4', serif;
  margin-bottom: 18px;
}
.policy-rule-item {
  display: flex;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  font-family: 'Source Serif 4', serif;
  font-size: 0.9rem;
  line-height: 1.65;
}
.policy-rule-item:last-child { border-bottom: none; }
.policy-rule-letter {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--dark);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  font-family: 'DM Sans', sans-serif;
}
.policy-rule-letter.covered { background: var(--red); }
.policy-rule-text { flex: 1; color: var(--ink); }
.policy-rule-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--red);
  color: #fff;
  padding: 1px 6px;
  margin-left: 8px;
  vertical-align: middle;
  font-family: 'DM Sans', sans-serif;
}

/* ── DOCUMENT EXCERPT BOX ── */
.doc-box {
  border: 1px solid var(--rule);
  border-top: 3px solid var(--dark);
  padding: 24px;
  margin: 32px 0;
  background: #fff;
}
.doc-box-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
}
.doc-text {
  font-family: 'Source Serif 4', serif;
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--ink);
  background: var(--bg-offwhite);
  padding: 18px 20px;
  border-left: 3px solid var(--red);
  margin: 0;
}
.doc-source {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 10px;
  font-family: 'DM Sans', sans-serif;
}

/* ── ARTICLE KICKER ── */
.article-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--red);
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 12px;
  display: block;
}
.article-kicker i { margin-right: 4px; }

/* ── ARTICLE FEATURED IMAGE CONSTRAINT ── */
.article-section .wp-post-image,
.article-section img.attachment-large,
.article-section img.size-large,
.article-section img.size-full {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 4px;
  display: block;
}

/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 4px solid var(--red);
  padding: 18px 24px;
  margin: 32px 0;
  background: var(--bg-offwhite);
}
.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--dark);
  margin: 0;
  font-style: italic;
}
.pull-quote cite {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-style: normal;
  display: block;
  margin-top: 10px;
  font-family: 'DM Sans', sans-serif;
}

/* ── EDITOR NOTE ── */
.editor-note {
  background: var(--dark);
  color: #fff;
  padding: 28px 32px;
  margin: 36px 0;
}
.editor-note-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
}
.editor-note p {
  font-family: 'Source Serif 4', serif;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin: 0;
}

/* ── TIMELINE ── */
.timeline {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  border-left: 2px solid var(--rule);
  padding-left: 20px;
}
.timeline li {
  position: relative;
  margin-bottom: 20px;
  font-family: 'Source Serif 4', serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.timeline li::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rule);
  border: 2px solid var(--dark);
}
.timeline li.highlight::before {
  background: var(--red);
  border-color: var(--red);
}
.timeline-date {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: block;
  margin-bottom: 3px;
  font-family: 'DM Sans', sans-serif;
}

/* ── VERDICT BOXES ── */
.verdict-box {
  border: 1px solid var(--rule);
  border-left: 3px solid var(--red);
  padding: 16px 18px;
  margin-bottom: 14px;
}
.verdict-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 6px;
  font-family: 'DM Sans', sans-serif;
}
.verdict-text {
  font-family: 'Source Serif 4', serif;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}

/* ── BYLAW CALLOUT DARK ── */
.bylaw-callout {
  background: var(--dark);
  color: #fff;
  padding: 22px;
  margin-bottom: 16px;
}
.bylaw-callout-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  font-family: 'DM Sans', sans-serif;
}
.bylaw-callout-text {
  font-family: 'Source Serif 4', serif;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}
.bylaw-callout-cite {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-top: 8px;
  font-family: 'DM Sans', sans-serif;
}

/* ── BYLAW CALLOUT LIGHT ── */
.bylaw-callout-light {
  background: var(--bg-offwhite);
  color: var(--ink);
  padding: 22px;
  margin-bottom: 16px;
}
.bylaw-callout-light .bylaw-callout-label { color: var(--muted); }
.bylaw-callout-light .bylaw-callout-text { color: var(--ink); }
.bylaw-callout-light .bylaw-callout-cite { color: var(--red); }

/* ── UNANSWERED QUESTIONS BOX ── */
.unanswered-box {
  background: var(--bg-offwhite);
  border: 1px solid var(--rule);
  padding: 20px 22px;
}
.unanswered-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
}
.unanswered-box ol {
  font-family: 'Source Serif 4', serif;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--ink);
  padding-left: 18px;
  margin: 0;
}
.unanswered-box ol li { margin-bottom: 8px; }

/* ── SOURCE DOCS LIST ── */
.source-docs-list { font-size: 0.85rem; }
.source-docs-list .doc-item {
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
}
.source-docs-list .doc-item:last-child { border-bottom: none; }
.source-docs-list .doc-item a {
  text-decoration: none;
  color: #0d6efd;
  display: flex;
  align-items: center;
  gap: 8px;
}
.source-docs-list .doc-item a:hover { color: #0a58ca; }
.source-docs-list .doc-item a i { color: var(--red); flex-shrink: 0; }

/* ── SIDEBAR STAT LIGHT ── */
.sidebar-stat-light {
  background: #fff;
  text-align: center;
  padding: 20px;
  margin-bottom: 16px;
  border: 1px solid var(--rule);
}
.sidebar-stat-light .sidebar-stat-number { color: var(--red); }
.sidebar-stat-light .sidebar-stat-label  { color: var(--muted); }
.sidebar-stat-light .sidebar-stat-sub    { color: var(--muted); }

/* ── SIDEBAR STAT ── */
.sidebar-stat {
  background: var(--dark);
  text-align: center;
  padding: 20px;
  margin-bottom: 16px;
  border: 1px solid var(--rule);
}
.sidebar-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--red);
  line-height: 1;
  display: block;
}
.sidebar-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-top: 6px;
  font-family: 'DM Sans', sans-serif;
}
.sidebar-stat-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-family: 'Source Serif 4', serif;
  display: block;
  margin-top: 6px;
  line-height: 1.5;
}

/* ── PROMISE BOX ── */
.promise-box {
  border: 1px solid var(--rule);
  border-top: 3px solid var(--dark);
  padding: 24px;
  margin: 32px 0;
  background: #fff;
}
.promise-box-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
}
.promise-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-family: 'Source Serif 4', serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.promise-icon { flex-shrink: 0; font-size: 1rem; margin-top: 2px; }
.promise-made  { color: #1a6e34; }
.promise-broken { color: var(--red); }
.promise-box hr { border: none; border-top: 1px solid var(--rule); margin: 14px 0; }

/* ── DATA COMPARISON TABLE ── */
.data-table-wrap { overflow-x: auto; margin: 28px 0; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  font-family: 'DM Sans', sans-serif;
}
.data-table th {
  background: var(--dark);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.data-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.data-table tr:hover td { background: var(--bg-offwhite); }
.result-board { color: var(--muted); font-style: italic; }
.result-real  { font-weight: 600; color: var(--red); }
.result-note  { font-size: 0.78rem; color: var(--muted); display: block; margin-top: 3px; }

/* ============================================================
   ARTICLE SIDEBAR (per-article, separate from site-wide)
   ============================================================ */
.article-sidebar .sidebar-widget { border-top: 3px solid var(--dark); padding-top: 16px; margin-bottom: 32px; }
.article-sidebar .sidebar-widget-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-bottom: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
}

/* Board's Own Words sidebar pull quotes */
.sidebar-pull-quote-neutral {
  font-family: 'Source Serif 4', serif;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
  border-left: 2px solid var(--rule);
  padding-left: 12px;
  margin-bottom: 14px;
}
.sidebar-pull-quote-red {
  font-family: 'Source Serif 4', serif;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
  border-left: 2px solid var(--red);
  padding-left: 12px;
  margin-bottom: 14px;
}
.sidebar-pull-attribution {
  font-size: 0.7rem;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
}

/* ============================================================
   ON THE RECORD -- inline article body quote
   ============================================================ */
.on-the-record {
  background: #f5f5f3;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 18px 24px;
  margin: 28px 0;
}
.on-the-record-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin: 0 0 10px 0;
}
.on-the-record-quote,
.on-the-record .on-the-record-quote {
  font-family: 'Source Serif 4', serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 4px 0 !important;
}
.on-the-record-attribution,
.on-the-record .on-the-record-attribution {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 !important;
}

/* ============================================================
   CORRECTIONS NOTICE
   ============================================================ */
.correction-notice {
  background: #fffbf0;
  border: 1px solid #f0e0a0;
  border-left: 4px solid var(--red);
  padding: 16px 20px;
  margin-bottom: 28px;
}
.correction-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 6px;
}
.correction-date {
  font-size: 0.72rem;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 8px;
}
.correction-text {
  font-family: 'Source Serif 4', serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink);
  margin: 0;
}

/* ============================================================
   SERIES TIMELINE (archive page)
   ============================================================ */
.series-timeline { margin: 28px 0; }
.series-timeline-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
}
.series-timeline-item:last-child { border-bottom: none; }
.series-timeline-date {
  flex-shrink: 0;
  width: 100px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  padding-top: 4px;
}
.series-timeline-content h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  line-height: 1.3;
}
.series-timeline-content h4 a { text-decoration: none; color: var(--ink); }
.series-timeline-content h4 a:hover { color: var(--red); }
.series-timeline-deck {
  font-family: 'Source Serif 4', serif;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Series badge */
.series-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 2px 8px;
  font-family: 'DM Sans', sans-serif;
  visibility: visible;
}

/* ============================================================
   BOARD MEMBERS TABLE
   ============================================================ */
.board-members-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  font-family: 'DM Sans', sans-serif;
}
.board-members-table th {
  background: var(--dark);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.board-members-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--rule);
  font-family: 'Source Serif 4', serif;
}
.board-members-table tr:hover td { background: var(--bg-offwhite); }

/* ============================================================
   MEETING EVENTS LIST
   ============================================================ */
.meeting-events-list { margin: 0; padding: 0; list-style: none; }
.meeting-event-item {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  align-items: flex-start;
}
.meeting-event-item:last-child { border-bottom: none; }
.meeting-event-date-col {
  flex-shrink: 0;
  background: var(--dark);
  color: #fff;
  padding: 8px 12px;
  text-align: center;
  min-width: 70px;
}
.meeting-event-month {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  font-family: 'DM Sans', sans-serif;
}
.meeting-event-day {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  line-height: 1;
  display: block;
}
.meeting-event-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  line-height: 1.3;
}
.meeting-event-meta {
  font-size: 0.78rem;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
}
.meeting-event-location {
  font-size: 0.82rem;
  color: var(--muted);
  font-family: 'Source Serif 4', serif;
  margin-top: 4px;
}

/* ============================================================
   FINE PRINT ARCHIVE PAGE
   ============================================================ */
.fine-print-archive .fine-print-card { margin-bottom: 32px; }

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-nav, .breaking-banner, .fixed-links-btn,
  .offcanvas-panel, .offcanvas-overlay, footer { display: none !important; }
  body { font-size: 12pt; }
  .container-xxl { max-width: 100%; padding: 0; }
}


/* ============================================================
   MEETING CARD — MOBILE
   ============================================================ */
@media (max-width: 600px) {

  .meeting-card {
    padding: 16px;
  }

  .meeting-date-badge {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    white-space: normal;
    word-break: break-word;
    display: block;
    width: 100%;
  }

  .meeting-card h4 {
    font-size: 1rem;
    align-items: flex-start;
  }

  .meeting-card h4 i {
    margin-top: 3px;
  }

  .meeting-summary {
    font-size: 0.88rem;
    line-height: 1.65;
  }

  .meeting-actions {
    min-width: unset !important;
    text-align: left !important;
    width: 100%;
    flex-wrap: wrap !important;
  }
  .meeting-actions a {
    white-space: normal;
  }

}
