/*
 * VetOnIt CE Blog Styles
 * Extends the main site editorial theme
 * Fonts: Domine (serif headings), Inter (sans body)
 * Palette: Warm Paper + Clinical Teal
 */

:root {
  --bg-page: #FDFBF7;
  --bg-surface: #FFFFFF;
  --bg-footer: #1A202C;
  --text-primary: #1A1A1A;
  --text-secondary: #4A5568;
  --text-muted: #718096;
  --text-light: #F7FAFC;
  --accent-primary: #0d9488;
  --accent-hover: #0f766e;
  --border-subtle: #E2E8F0;
  --border-accent: #CBD5E0;
  --bg-subtle: #F7FAFC;
  --bg-contrast: #F1F5F9;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.08);
  --font-serif: 'Domine', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

/* ── Reset & Base ─────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color 0.2s ease; }
img { max-width: 100%; height: auto; }

/* ── Typography ───────────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }

/* ── Layout ───────────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 860px;
}

/* ── Header / Nav ─────────────────────────────────────────────── */

.blog-nav {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.blog-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.nav-logo img { height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-links a:hover { color: var(--accent-primary); }

/* ── Hero / Page Header ───────────────────────────────────────── */

.blog-hero {
  padding: 1.5rem 0 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.blog-hero h1 { margin-bottom: 0; }

.blog-hero p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 640px;
}

.blog-hero .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  display: block;
}

/* ── Hero Row (title + alert side by side) ────────────────────── */

.blog-hero-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.blog-hero-text {
  flex: 1;
  min-width: 0;
}

/* ── Compact Alert Box ────────────────────────────────────────── */

.alert-compact {
  background: #FFFBEB;
  border: 1px solid #F59E0B;
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
  width: 260px;
  flex-shrink: 0;
}

.alert-compact-header {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  margin-bottom: 0.2rem;
}

.alert-compact-header strong {
  color: #92400E;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  flex: 1;
}

.alert-compact-header a {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--accent-primary);
  white-space: nowrap;
}

.alert-compact-header a:hover {
  color: var(--accent-hover);
}

.alert-compact .alert-banner-item {
  display: flex;
  align-items: baseline;
  gap: 0;
  padding: 0.12rem 0;
  text-decoration: none;
  border-top: 1px solid rgba(245, 158, 11, 0.15);
  line-height: 1.2;
}

.alert-compact .alert-banner-item:first-child {
  border-top: none;
  padding-top: 0;
}

.alert-compact .alert-banner-item:hover {
  background: rgba(245, 158, 11, 0.08);
  border-radius: 4px;
}

.alert-compact .alert-banner-date {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  color: #92400E;
  white-space: nowrap;
  margin-right: 0.3rem;
}

.alert-compact .alert-banner-item-title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.2;
}

@media (max-width: 767px) {
  .blog-hero-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .alert-compact {
    width: 100%;
  }
}

/* ── Tag Filters ──────────────────────────────────────────────── */

.tag-filters {
  padding: 1.5rem 0 0.5rem;
}

.tag-filters-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-filter {
  padding: 0.4rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.825rem;
  font-weight: 500;
  background: var(--bg-surface);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tag-filter:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.tag-filter.active {
  background: var(--accent-primary);
  color: white;
  border-color: var(--accent-primary);
}

.tag-filter-hidden {
  display: none;
}

.tags-expanded .tag-filter-hidden {
  display: inline-flex;
}

.tag-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.6rem;
  padding: 0;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-primary);
  cursor: pointer;
  transition: color 0.2s ease;
}

.tag-toggle-btn:hover {
  color: var(--accent-hover);
}

.tag-toggle-icon {
  font-size: 0.7rem;
}

/* ── Post Card Grid ───────────────────────────────────────────── */

.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
}

@media (min-width: 640px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .posts-grid { grid-template-columns: repeat(3, 1fr); }
}

.post-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.post-card-body { padding: 1.5rem; }

.post-card-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-sep { color: var(--border-accent); }

.post-card-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.post-card-title a { color: var(--text-primary); }
.post-card-title a:hover { color: var(--accent-primary); }

.post-card-summary {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.post-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

/* ── Tag Pills ────────────────────────────────────────────────── */

.tag-pill {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.725rem;
  font-weight: 500;
  background: rgba(13, 148, 136, 0.08);
  color: var(--accent-primary);
  border-radius: 100px;
  transition: background 0.2s ease;
}

.tag-pill:hover {
  background: rgba(13, 148, 136, 0.16);
}

/* ── Pagination ───────────────────────────────────────────────── */

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 0 3rem;
}

.pagination-btn {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-primary);
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  transition: all 0.2s ease;
}

.pagination-btn:hover:not(.disabled) {
  border-color: var(--accent-primary);
  background: rgba(13, 148, 136, 0.05);
}

.pagination-btn.disabled {
  color: var(--text-muted);
  cursor: default;
  opacity: 0.5;
}

.pagination-info {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Single Post Layout ───────────────────────────────────────── */

.post-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 2.5rem 0 4rem;
}

@media (min-width: 1024px) {
  .post-layout {
    grid-template-columns: 1fr 300px;
  }
}

/* ── Post Header ──────────────────────────────────────────────── */

.post-header {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.post-tags-top {
  display: flex;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

.post-header-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.post-header-image {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
}

.post-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-header-text {
  flex: 1;
  min-width: 0;
}

@media (max-width: 600px) {
  .post-header-row {
    flex-direction: column;
    gap: 1rem;
  }
  .post-header-image {
    width: 80px;
    height: 80px;
  }
}

.post-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  max-width: 800px;
}

.post-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.post-author { font-weight: 500; color: var(--text-secondary); }

/* ── Post Content (rendered markdown) ─────────────────────────── */

.post-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.post-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.post-content h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.post-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.post-content p { margin-bottom: 1.25rem; }

.post-content ul, .post-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.post-content li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.post-content blockquote {
  border-left: 3px solid var(--accent-primary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--bg-subtle);
  border-radius: 0 4px 4px 0;
  color: var(--text-secondary);
  font-style: italic;
}

.post-content code {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.875em;
  padding: 0.15em 0.4em;
  background: var(--bg-contrast);
  border-radius: 3px;
  color: var(--accent-hover);
}

.post-content pre {
  background: var(--bg-footer);
  color: var(--text-light);
  padding: 1.25rem;
  border-radius: 6px;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.post-content pre code {
  background: none;
  padding: 0;
  color: inherit;
}

.post-content a {
  color: var(--accent-primary);
  border-bottom: 1px solid transparent;
}

.post-content a:hover {
  border-bottom-color: var(--accent-primary);
}

/* ── Citations ────────────────────────────────────────────────── */

.citation a {
  color: var(--accent-primary);
  font-size: 0.75em;
  font-weight: 600;
  text-decoration: none;
  padding: 0 2px;
}

.citation a:hover {
  text-decoration: underline;
}

/* ── References Section ───────────────────────────────────────── */

.references-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-subtle);
}

.references-section h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  border: none;
  padding: 0;
}

.references-list {
  padding-left: 1.5rem;
}

.references-list li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.ref-text { font-family: var(--font-sans); }

/* ── Share Buttons ────────────────────────────────────────────── */

.share-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.share-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-contrast);
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.share-btn:hover {
  background: var(--accent-primary);
  color: white;
}

/* ── Event CTA Box ────────────────────────────────────────────── */

.event-cta {
  background: var(--bg-footer);
  color: var(--text-light);
  padding: 1.5rem;
  border-radius: 8px;
}

.event-cta-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
}

.event-cta-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.event-cta-meta {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.25rem;
}

.event-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

/* ── Buttons ──────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 4px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background: var(--accent-primary);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-accent);
}

.btn-secondary:hover {
  border-color: var(--text-primary);
}

/* ── Sidebar (sticky) ─────────────────────────────────────────── */

.post-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
}

/* ── Loading State ────────────────────────────────────────────── */

.loading {
  text-align: center;
  padding: 4rem 0;
  color: var(--text-muted);
}

.loading-spinner {
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 3px solid var(--border-subtle);
  border-top-color: var(--accent-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Empty State ──────────────────────────────────────────────── */

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}

.empty-state h2 { margin-bottom: 0.5rem; }
.empty-state p { margin-bottom: 1.5rem; }

/* ── Teaser Section (homepage embed) ──────────────────────────── */

.blog-teaser-section {
  padding: 4rem 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-subtle);
}

.blog-teaser-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.blog-teaser-header h2 { margin-bottom: 0; }

.teaser-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-primary);
}

.teaser-link:hover {
  text-decoration: underline;
}

.teaser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .teaser-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .teaser-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Footer ───────────────────────────────────────────────────── */

.blog-footer {
  background: var(--bg-footer);
  color: rgba(255, 255, 255, 0.6);
  padding: 2.5rem 0;
  font-size: 0.85rem;
  text-align: center;
}

.blog-footer a {
  color: rgba(255, 255, 255, 0.8);
}

.blog-footer a:hover {
  color: white;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  list-style: none;
}

/* ── Back Link ────────────────────────────────────────────────── */

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 1.5rem 0 0;
}

.back-link:hover { color: var(--accent-primary); }

/* ── Demo Banner ──────────────────────────────────────────────── */

.demo-banner {
  background: #FEF3C7;
  color: #92400E;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  display: none;
}

.demo-banner.visible { display: block; }

/* ── Bottom CTA Section ────────────────────────────────────────── */

.cta-bottom-section {
  margin: 1rem 0 3rem;
  padding-top: 2.5rem;
  border-top: 2px solid var(--border-subtle);
}

.cta-block {
  margin-bottom: 2.5rem;
}

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

.cta-block-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.cta-block-icon {
  font-size: 1.5rem;
}

.cta-block-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  border: none;
  padding: 0;
}

/* Event card */
.cta-event-card {
  display: block;
  background: linear-gradient(135deg, #1A202C 0%, #2D3748 100%);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.cta-event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.cta-event-card-body {
  padding: 2rem;
}

.cta-event-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-primary);
  background: rgba(13, 148, 136, 0.15);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.cta-event-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.cta-event-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.cta-event-details i {
  margin-right: 0.4rem;
  color: var(--accent-primary);
}

.cta-event-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-primary);
  color: white;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.cta-event-card:hover .cta-event-btn {
  background: var(--accent-hover);
}

/* Related content grid */
.cta-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cta-related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cta-related-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.cta-related-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-primary);
}

.cta-related-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}

.cta-related-tag {
  font-size: 0.675rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-primary);
  background: rgba(13, 148, 136, 0.08);
  padding: 2px 8px;
  border-radius: 100px;
}

.cta-related-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.cta-related-card:hover .cta-related-title {
  color: var(--accent-primary);
}

.cta-related-summary {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.cta-related-meta {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-primary);
}

/* ── On-Demand Cards (distinct from articles) ─────────────────── */

.cta-ondemand-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #F0FDFA 0%, #ECFDF5 100%);
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: 10px;
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  position: relative;
}

.cta-ondemand-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-primary);
}

.cta-ondemand-card .cta-related-title {
  padding-right: 4rem;
}

.cta-ondemand-card:hover .cta-related-title {
  color: var(--accent-primary);
}

.cta-ce-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  background: var(--accent-primary);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ── Responsive ───────────────────────────────────────────────── */

@media (max-width: 1023px) {
  /* Hide sidebar event CTA on mobile/tablet to avoid duplicate with bottom CTA */
  .event-cta { display: none; }
}

@media (max-width: 768px) {
  .container { padding: 0 1rem; }
  .blog-nav .container { padding: 0 1rem; }
  .nav-links { gap: 1rem; }
  .nav-links .hide-mobile { display: none; }
  .post-layout { gap: 2rem; }
  .blog-teaser-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}
