.psv-blog {
  --psv-red: #b81324;
  --psv-dark: #111827;
  --psv-muted: #667085;
  --psv-soft: #f5f6f8;
  --psv-border: #e4e7ec;
  --psv-card: #ffffff;
  --psv-shadow: 0 18px 45px rgba(17,24,39,.10);
  color: var(--psv-dark);
  margin: clamp(2rem, 4vw, 4rem) 0;
}
.psv-blog *, .psv-blog *::before, .psv-blog *::after { box-sizing: border-box; }
.psv-blog a { color: inherit; }
.psv-blog-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border-radius: 28px;
  background: radial-gradient(circle at 10% 0%, rgba(184,19,36,.18), transparent 32%), linear-gradient(135deg, #111827, #29303d);
  color: #fff;
  box-shadow: var(--psv-shadow);
  margin-bottom: 1.4rem;
}
.psv-blog-eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 800;
  color: #ffccd2;
  margin: 0 0 .5rem;
}
.psv-blog-hero h2, .psv-blog-article h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.02;
  margin: 0;
}
.psv-blog-hero__intro {
  max-width: 70ch;
  margin-top: .9rem;
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
}
.psv-blog-rss {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.5rem;
  padding: .7rem .9rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  text-decoration: none;
  font-weight: 800;
}
.psv-blog-filter {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin: 1.3rem 0 1.8rem;
}
.psv-blog-filter a {
  padding: .62rem .95rem;
  border: 1px solid var(--psv-border);
  border-radius: 999px;
  background: #fff;
  text-decoration: none;
  font-weight: 700;
  color: var(--psv-muted);
  transition: transform .18s ease, border-color .18s ease, color .18s ease;
}
.psv-blog-filter a:hover { transform: translateY(-2px); color: var(--psv-dark); }
.psv-blog-filter a.is-active { background: var(--psv-red); border-color: var(--psv-red); color: #fff; }
.psv-blog-featured {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 1.3rem;
  margin: 1.5rem 0;
  padding: clamp(1rem, 2.2vw, 1.5rem);
  border: 1px solid var(--psv-border);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17,24,39,.07);
  overflow: hidden;
}
.psv-blog-featured__image {
  min-height: 260px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--psv-soft);
}
.psv-blog-featured__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.psv-blog-featured__label, .psv-blog-pill {
  display: inline-flex;
  width: fit-content;
  padding: .3rem .6rem;
  border-radius: 999px;
  background: rgba(184,19,36,.10);
  color: var(--psv-red);
  font-weight: 800;
  font-size: .78rem;
}
.psv-blog-featured h3 { font-size: clamp(1.55rem, 3vw, 2.35rem); line-height: 1.08; margin: .7rem 0; }
.psv-blog-featured p { color: var(--psv-muted); font-size: 1.05rem; }
.psv-blog-button, .psv-blog-readmore {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: .35rem;
  margin-top: .5rem;
  padding: .72rem 1rem;
  border-radius: 999px;
  background: var(--psv-red);
  color: #fff !important;
  text-decoration: none;
  font-weight: 800;
}
.psv-blog-readmore { background: transparent; color: var(--psv-red) !important; padding: 0; }
.psv-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 1.2rem;
}
.psv-blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--psv-border);
  border-radius: 24px;
  background: var(--psv-card);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(17,24,39,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.psv-blog-card:hover { transform: translateY(-4px); box-shadow: var(--psv-shadow); }
.psv-blog-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1f2937, #111827);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.psv-blog-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.psv-blog-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.1rem; }
.psv-blog-card__meta, .psv-blog-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .75rem;
  color: var(--psv-muted);
  font-size: .9rem;
  font-weight: 700;
}
.psv-blog-card h3 { margin: .55rem 0 .4rem; font-size: 1.22rem; line-height: 1.18; }
.psv-blog-card h3 a { text-decoration: none; }
.psv-blog-card p { color: var(--psv-muted); margin: .35rem 0 .8rem; }
.psv-blog-card__location { color: var(--psv-red) !important; font-weight: 800; }
.psv-blog-empty {
  padding: 2rem;
  border-radius: 22px;
  background: var(--psv-soft);
  border: 1px dashed var(--psv-border);
}
.psv-blog-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.8rem;
}
.psv-blog-pagination a {
  min-width: 2.4rem;
  min-height: 2.4rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--psv-border);
  text-decoration: none;
  font-weight: 800;
}
.psv-blog-pagination a.is-active { background: var(--psv-dark); color: #fff; border-color: var(--psv-dark); }
.psv-blog-article {
  max-width: 920px;
  margin-inline: auto;
}
.psv-blog-back {
  display: inline-flex;
  margin-bottom: 1rem;
  text-decoration: none;
  color: var(--psv-muted) !important;
  font-weight: 800;
}
.psv-blog-article__header {
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border-radius: 28px;
  background: var(--psv-soft);
  border: 1px solid var(--psv-border);
}
.psv-blog-article__header .psv-blog-eyebrow { color: var(--psv-red); }
.psv-blog-article__meta { margin-top: 1rem; }
.psv-blog-article__image {
  margin: 1.4rem 0;
  border-radius: 28px;
  overflow: hidden;
}
.psv-blog-article__image img { display: block; width: 100%; height: auto; }
.psv-blog-article__lead {
  font-size: clamp(1.15rem, 2.1vw, 1.45rem);
  line-height: 1.5;
  color: var(--psv-dark);
  font-weight: 700;
}
.psv-blog-content {
  font-size: 1.05rem;
  line-height: 1.72;
}
.psv-blog-content img { max-width: 100%; height: auto; border-radius: 18px; }
@media (max-width: 920px) {
  .psv-blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .psv-blog-featured { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .psv-blog-hero { flex-direction: column; border-radius: 22px; }
  .psv-blog-grid { grid-template-columns: 1fr; }
  .psv-blog-card, .psv-blog-featured, .psv-blog-article__header { border-radius: 20px; }
}
.psv-blog-debug{white-space:pre-wrap;background:#fffbeb;border:1px solid #f59e0b;border-radius:14px;padding:14px;margin:14px 0;color:#78350f;font:13px/1.5 ui-monospace,SFMono-Regular,Menlo,monospace}
