/* ══════════════════════════════
   BLOG — Breadcrumb
══════════════════════════════ */
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--faint);
  padding: 14px 0;
  font-family: 'DM Sans', sans-serif;
}
.breadcrumb a {
  color: var(--faint); text-decoration: none;
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--orange) }
.breadcrumb-sep {
  color: var(--orange); font-size: 14px; font-weight: 600;
  line-height: 1; flex-shrink: 0;
}
.breadcrumb-current {
  color: var(--text); font-weight: 600;
}

/* ══════════════════════════════
   BLOG — Hero Banner
══════════════════════════════ */
.blog-hero {
  position: relative;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%);
  height: 200px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 24px 32px;
  overflow: hidden;
}
/* Paw-print pattern overlay */
.blog-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background-image:
    radial-gradient(circle 6px at 0 0, rgba(255,255,255,.07) 100%, transparent 100%),
    radial-gradient(circle 4px at 10px -8px, rgba(255,255,255,.07) 100%, transparent 100%),
    radial-gradient(circle 4px at -8px 10px, rgba(255,255,255,.07) 100%, transparent 100%),
    radial-gradient(circle 3px at 14px 4px, rgba(255,255,255,.07) 100%, transparent 100%);
  background-size: 48px 48px;
  pointer-events: none;
}
.blog-hero > * { position: relative; z-index: 2 }
.blog-hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 10px;
}
.blog-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -.02em;
  line-height: 1.2;
}
.blog-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,.75);
}

/* ══════════════════════════════
   BLOG — Category Chips
══════════════════════════════ */
.blog-filters {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  margin-bottom: 24px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.blog-filters::-webkit-scrollbar { display: none }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: 20px;
  border: 1.5px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--muted);
  background: var(--bg);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.chip:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-pale);
}
.chip.is-active {
  border-color: var(--orange);
  background: var(--orange-pale);
  color: var(--orange-dk);
  font-weight: 700;
}

/* ══════════════════════════════
   BLOG — Body Layout
══════════════════════════════ */
.blog-body {
  display: flex; gap: 28px;
  align-items: flex-start;
  margin-bottom: 40px;
}

/* ══════════════════════════════
   BLOG — Grid
══════════════════════════════ */
.blog-grid {
  flex: 1; min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ══════════════════════════════
   BLOG — Article Card (.art-card)
══════════════════════════════ */
.art-card {
  display: flex; flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .25s ease, border-color .25s ease, transform .25s ease;
}
.art-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

/* Image */
.art-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: var(--bg);
}
.art-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.art-card:hover .art-card-img img {
  transform: scale(1.04);
}
.art-card-badge {
  position: absolute; top: 12px; left: 12px;
  height: 26px; padding: 0 10px;
  display: inline-flex; align-items: center;
  background: var(--orange);
  color: #fff; font-size: 11px; font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .03em;
}

/* Body */
.art-card-body {
  padding: 16px 18px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 12px 12px;
  display: flex; flex-direction: column;
  flex: 1;
}
.art-card:hover .art-card-body {
  border-color: rgba(229,118,37,.25);
}

/* Meta */
.art-card-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; color: var(--faint);
  margin-bottom: 8px;
}

/* Title */
.art-card-body h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 17px; font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.art-card-body h3 a {
  color: inherit; text-decoration: none;
  transition: color .15s ease;
}
.art-card-body h3 a:hover { color: var(--orange) }

/* Excerpt */
.art-card-excerpt {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; line-height: 1.65;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 8px 0 14px;
}

/* Footer */
.art-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
}
.art-card-author {
  display: flex; align-items: center; gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; color: var(--faint);
}
.art-card-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  object-fit: cover;
}
.art-card-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  transition: color .15s ease;
}
.art-card-link:hover { color: var(--orange-dk) }

/* ── Featured card (first) ── */
.art-card.featured {
  grid-column: span 2;
  flex-direction: row;
}
.art-card.featured .art-card-img {
  width: 45%; flex-shrink: 0;
  aspect-ratio: auto;
  border-radius: 12px 0 0 12px;
}
.art-card.featured .art-card-body {
  border-top: 1px solid var(--border);
  border-radius: 0 12px 12px 0;
  border-left: none;
}
.art-card.featured .art-card-body h3 {
  font-size: 22px;
}

/* ══════════════════════════════
   BLOG — Sidebar
══════════════════════════════ */
.blog-sidebar {
  width: 300px; flex-shrink: 0;
  display: flex; flex-direction: column; gap: 16px;
  position: sticky; top: 82px;
}

/* Sidebar card */
.sb-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-card);
}
.sb-card h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-lt);
}

/* Search pill */
.sb-search-pill {
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.sb-search-pill:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(229,118,37,.12);
  background: #fff;
}
.sb-search-pill input {
  flex: 1; height: 38px; padding: 0 14px;
  border: none; font-size: 13px; color: var(--text);
  outline: none; background: transparent;
  font-family: 'DM Sans', sans-serif;
}
.sb-search-pill input::placeholder { color: var(--faint) }
.sb-search-pill button {
  width: 40px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange);
  border: none; border-radius: 0 50px 50px 0;
  color: #fff; cursor: pointer; flex-shrink: 0;
  transition: background var(--transition);
}
.sb-search-pill button:hover { background: var(--orange-dk) }
.sb-search-pill button svg {
  width: 15px; height: 15px;
  stroke: currentColor; fill: none; stroke-width: 2;
}

/* Categories list */
.sb-cats { list-style: none }
.sb-cats li { border-bottom: 1px solid var(--border-lt) }
.sb-cats li:last-child { border-bottom: none }
.sb-cats a {
  display: flex; align-items: center;
  padding: 9px 10px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: all var(--transition);
}
.sb-cats a:hover {
  background: var(--orange-pale);
  color: var(--orange);
}
.sb-cat-count {
  margin-left: auto;
  font-size: 12px; font-weight: 600;
  color: var(--faint);
  transition: color var(--transition);
}
.sb-cats a:hover .sb-cat-count { color: var(--orange) }
.sb-cat-arrow {
  margin-left: 6px;
  font-size: 12px; color: var(--faint);
  transition: color var(--transition);
}
.sb-cats a:hover .sb-cat-arrow { color: var(--orange) }

/* Recent posts */
.sb-recent { list-style: none }
.sb-recent li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-lt);
}
.sb-recent li:last-child { border-bottom: none }
.sb-recent-img {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 8px; overflow: hidden;
  background: var(--bg);
}
.sb-recent-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.sb-recent-body {
  flex: 1; min-width: 0;
}
.sb-recent-body a {
  font-family: 'Nunito', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--text); line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
  transition: color var(--transition);
}
.sb-recent-body a:hover { color: var(--orange) }
.sb-recent-body span {
  font-size: 11px; color: var(--faint);
  display: block; margin-top: 2px;
  font-family: 'DM Sans', sans-serif;
}

/* Tag cloud */
.sb-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.sb-tag {
  display: inline-flex; align-items: center;
  padding: 4px 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 12px; color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
}
.sb-tag:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-pale);
}

/* Banner promo */
.sb-promo {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sb-promo::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(circle 6px at 0 0, rgba(255,255,255,.07) 100%, transparent 100%),
    radial-gradient(circle 4px at 10px -8px, rgba(255,255,255,.07) 100%, transparent 100%),
    radial-gradient(circle 4px at -8px 10px, rgba(255,255,255,.07) 100%, transparent 100%),
    radial-gradient(circle 3px at 14px 4px, rgba(255,255,255,.07) 100%, transparent 100%);
  background-size: 48px 48px;
  pointer-events: none;
}
.sb-promo > * { position: relative; z-index: 1 }
.sb-promo-eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 8px;
}
.sb-promo-title {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 20px; font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.sb-promo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; color: rgba(255,255,255,.78);
  line-height: 1.5;
  margin-bottom: 16px;
}
.sb-promo-cta {
  display: inline-flex; align-items: center; justify-content: center;
  height: 38px; padding: 0 24px;
  background: #fff; color: var(--orange);
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 13px; font-weight: 800;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.sb-promo-cta:hover {
  background: var(--orange-pale);
  color: var(--orange-dk);
}

/* ══════════════════════════════
   BLOG — Pagination
══════════════════════════════ */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-top: 28px; padding: 20px 0 40px;
  border-top: 1px solid var(--border-lt);
}
.pg-btn {
  min-width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 8px;
  font-size: 13px; font-weight: 600; color: var(--muted);
  background: var(--card); padding: 0 4px;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  transition: all var(--transition); cursor: pointer;
}
.pg-btn:hover {
  border-color: var(--orange); color: var(--orange);
  background: var(--orange-pale);
}
.pg-btn.active {
  background: var(--orange); border-color: var(--orange);
  color: #fff; font-weight: 700; cursor: default;
}
.pg-btn.active:hover {
  background: var(--orange); color: #fff;
}
.pg-btn.disabled {
  opacity: .4; cursor: default; pointer-events: none;
}
.pg-arrow { color: var(--muted) }
.pg-dots {
  font-size: 14px; color: var(--faint); padding: 0 4px;
  user-select: none;
}

/* ══════════════════════════════
   BLOG — Responsive
══════════════════════════════ */
@media (max-width: 860px) {
  .blog-body {
    flex-direction: column;
  }
  .blog-sidebar {
    width: 100%; position: static;
    flex-direction: row; flex-wrap: wrap;
  }
  .sb-card { flex: 1; min-width: 260px }
  .sb-promo { min-width: 260px; flex: 1 }
  .blog-hero { height: 180px; padding: 20px }
  .blog-grid { grid-template-columns: 1fr }
  .art-card.featured {
    grid-column: span 1;
    flex-direction: column;
  }
  .art-card.featured .art-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px 12px 0 0;
  }
  .art-card.featured .art-card-body {
    border-top: none;
    border-left: 1px solid var(--border);
    border-radius: 0 0 12px 12px;
  }
  .art-card.featured .art-card-body h3 {
    font-size: 17px;
  }
}
@media (max-width: 580px) {
  .blog-filters { gap: 6px }
  .chip { padding: 5px 12px; font-size: 12px }
  .blog-hero { height: 140px; padding: 16px }
  .blog-hero h1 { font-size: 20px }
  .blog-hero p { font-size: 12px }
  .sb-card { min-width: 100% }
  .sb-promo { min-width: 100% }
  .art-card-body { padding: 14px }
  .art-card-body h3 { font-size: 15px }
  .pagination { gap: 4px }
  .pg-btn { width: 34px; height: 34px; font-size: 12px }
}
