:root {
  --spr-brand: #3b3bff;
  --spr-brand-dark: #1a1a2e;
  --spr-fg: #0f0f1a;
  --spr-muted: #6b7280;
  --spr-line: #e6e6ed;
  --spr-soft: #f7f8fc;
}
/* Hero section */
.spr-pr-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #2a2a52 55%, #3b3bff 100%);
  color: #fff;
  padding: 80px 24px 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.spr-pr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,255,255,0.10), transparent 70%);
  pointer-events: none;
}
.spr-pr-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.spr-pr-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.18);
}
.spr-pr-hero h1 {
  color: #fff !important;
  font-size: 44px !important;
  line-height: 1.15 !important;
  margin: 0 0 14px !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}
.spr-pr-hero p {
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 520px;
}
@media (max-width: 640px) {
  .spr-pr-hero { padding: 60px 20px 64px; }
  .spr-pr-hero h1 { font-size: 30px !important; }
  .spr-pr-hero p { font-size: 15px; }
}

/* List wrap */
.spr-pr-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px 96px;
  font-family: inherit;
  color: var(--spr-fg);
}
.spr-pr-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 80px 0;
  color: var(--spr-muted);
  font-size: 15px;
}
.spr-pr-spinner {
  width: 18px; height: 18px;
  border: 2px solid var(--spr-line);
  border-top-color: var(--spr-brand);
  border-radius: 50%;
  animation: spr-spin 0.7s linear infinite;
}
@keyframes spr-spin { to { transform: rotate(360deg); } }

/* Cards grid */
.spr-pr-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.spr-pr-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--spr-line);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.spr-pr-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15,15,26,0.10);
  border-color: transparent;
}
.spr-pr-card .spr-pr-cover {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--spr-soft) 0%, #e9ecf5 100%);
  overflow: hidden;
  position: relative;
}
.spr-pr-card .spr-pr-cover img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .35s ease;
}
.spr-pr-card:hover .spr-pr-cover img { transform: scale(1.04); }

.spr-pr-card .spr-pr-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.spr-pr-card .spr-pr-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 11px;
}
.spr-pr-card .spr-pr-chip {
  background: var(--spr-soft);
  color: var(--spr-muted);
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 500;
}
.spr-pr-card .spr-pr-chip.brand {
  background: rgba(59,59,255,0.08);
  color: var(--spr-brand);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 10.5px;
}
/* Card title — force size to beat Astra's .entry-content h2 default */
.spr-pr-card .spr-pr-card-title,
.spr-pr-card h2.spr-pr-card-title,
body .spr-pr-card h2,
.entry-content .spr-pr-card h2,
.entry-content .spr-pr-card .spr-pr-card-title {
  font-size: 14.5px !important;
  line-height: 1.4 !important;
  margin: 0 0 10px !important;
  font-weight: 600 !important;
  letter-spacing: -0.005em !important;
  color: var(--spr-fg) !important;
  font-family: inherit !important;
}
.spr-pr-card h2 a {
  color: var(--spr-fg) !important;
  text-decoration: none !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: inherit !important;
  font-weight: inherit !important;
}
.spr-pr-card:hover h2 a { color: var(--spr-brand) !important; }
.spr-pr-card .spr-pr-excerpt {
  color: var(--spr-muted);
  font-size: 13.5px;
  line-height: 1.55;
  flex: 1;
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.spr-pr-card .spr-pr-readmore {
  font-size: 13px;
  font-weight: 600;
  color: var(--spr-brand);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .15s ease;
}
.spr-pr-card .spr-pr-readmore:hover { gap: 9px; }

/* Pagination */
.spr-pr-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.spr-pr-pagination a,
.spr-pr-pagination span {
  min-width: 40px;
  padding: 10px 14px;
  border: 1px solid var(--spr-line);
  border-radius: 8px;
  color: var(--spr-fg);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  transition: all .15s ease;
  background: #fff;
}
.spr-pr-pagination a:hover {
  background: var(--spr-soft);
  border-color: var(--spr-brand);
  color: var(--spr-brand);
}
.spr-pr-pagination .current {
  background: var(--spr-brand);
  color: #fff !important;
  border-color: var(--spr-brand);
  cursor: default;
}
.spr-pr-pagination .disabled {
  color: #c4c8d2;
  cursor: not-allowed;
  background: var(--spr-soft);
}
.spr-pr-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--spr-muted);
  font-size: 14.5px;
}
.spr-pr-error {
  text-align: center;
  padding: 60px 24px;
  color: #c33;
  font-size: 15px;
  background: #fff5f5;
  border-radius: 10px;
}
