/* ============================================================
   SecureHold WP — Resources / Blog Page Stylesheet
   Scoped to .sh-page-resources (body class set by layout.php).
   Depends on homepage.css for base tokens, reset, and buttons.

   V1 — Static template. No dynamic article loading.
   Source of truth: Claude Design export standalone HTML.
   ============================================================ */


/* ──────────────────────────────────────────────────────────────
   PAGE-LEVEL OVERRIDES
   (radius tokens + extra color tokens not in homepage.css)
   ────────────────────────────────────────────────────────────── */

.sh-homepage.sh-page-resources {
  background: var(--slate-50);

  /* Radius tokens: design uses 8/12/16, site default is 6/10/14 */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  /* Color tokens used by badges — not defined in homepage.css */
  --emerald-hover:  #059669;
  --emerald-light:  #d1fae5;
  --sky:            #0284c7;
  --sky-light:      #e0f2fe;
  --amber:          #d97706;
  --amber-light:    #fef3c7;
  --violet-light:   #ede9fe;
  --pink:           #be185d;
  --pink-light:     #fce7f3;
  --brand-dark:     #1a3acc;
}


/* ──────────────────────────────────────────────────────────────
   HERO
   ────────────────────────────────────────────────────────────── */

.sh-page-resources .doc-hero {
  padding-top: calc(var(--nav-h) + 56px);
  padding-bottom: 48px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid var(--slate-200);
  position: relative;
  overflow: hidden;
}

.sh-page-resources .doc-hero::before {
  content: '';
  position: absolute;
  top: -300px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,91,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.sh-page-resources .doc-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
}

@media (max-width: 1023px) { .sh-page-resources .doc-hero-inner { padding: 0 32px; } }
@media (max-width: 767px)  { .sh-page-resources .doc-hero-inner { padding: 0 20px; } }

/* Breadcrumb */
.sh-page-resources .breadcrumb {
  font-size: 13px;
  color: var(--slate-500);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sh-page-resources .breadcrumb a            { color: var(--slate-500); text-decoration: none; }
.sh-page-resources .breadcrumb a:hover      { color: var(--slate-700); }
.sh-page-resources .breadcrumb-sep          { color: var(--slate-300); }
.sh-page-resources .breadcrumb-current      { color: var(--slate-700); font-weight: 500; }

/* Eyebrow badge */
.sh-page-resources .blog-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
  background: var(--brand-light);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* H1 */
.sh-page-resources .doc-hero h1 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.8vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--slate-900);
  margin-bottom: 16px;
  max-width: 820px;
  text-wrap: balance;
}

/* Subtitle */
.sh-page-resources .doc-hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--slate-600);
  max-width: 680px;
  margin-bottom: 28px;
}

/* Visual search bar */
.sh-page-resources .resource-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 10px 14px;
  max-width: 560px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s, box-shadow 0.15s;
  cursor: text;
}
.sh-page-resources .resource-search:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(47,91,255,0.10);
}
.sh-page-resources .resource-search svg   { color: var(--slate-400); flex-shrink: 0; }
.sh-page-resources .resource-search input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--slate-900);
  cursor: text;
}
.sh-page-resources .resource-search input::placeholder { color: var(--slate-400); }
.sh-page-resources .resource-search .kbd {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--slate-500);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 5px;
  padding: 2px 6px;
  flex-shrink: 0;
}
@media (max-width: 540px) { .sh-page-resources .resource-search .kbd { display: none; } }

/* Secondary CTA link */
.sh-page-resources .hero-secondary-cta {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
}
.sh-page-resources .hero-secondary-cta:hover { color: var(--brand-hover); text-decoration: none; }
.sh-page-resources .hero-secondary-cta svg  { transition: transform 0.15s; }
.sh-page-resources .hero-secondary-cta:hover svg { transform: translateX(2px); }


/* ──────────────────────────────────────────────────────────────
   CATEGORY PILLS
   ────────────────────────────────────────────────────────────── */

.sh-page-resources .pills-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 48px 0;
}
@media (max-width: 1023px) { .sh-page-resources .pills-section { padding: 28px 32px 0; } }
@media (max-width: 767px)  { .sh-page-resources .pills-section { padding: 24px 20px 0; } }

.sh-page-resources .pills-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-500);
  margin-bottom: 12px;
}

.sh-page-resources .pills-row-wrap {
  position: relative;
  overflow: hidden;
}

.sh-page-resources .pills-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.sh-page-resources .pills-row::-webkit-scrollbar { display: none; }

.sh-page-resources .pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--slate-200);
  background: #fff;
  color: var(--slate-700);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  user-select: none;
}
.sh-page-resources .pill:hover {
  border-color: var(--slate-300);
  color: var(--slate-900);
}
.sh-page-resources .pill.active {
  background: var(--slate-900);
  border-color: var(--slate-900);
  color: #fff;
}
.sh-page-resources .pill .count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--slate-400);
}
.sh-page-resources .pill.active .count { color: rgba(255,255,255,0.55); }


/* ──────────────────────────────────────────────────────────────
   SECTION CONTAINER
   ────────────────────────────────────────────────────────────── */

.sh-page-resources .page-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 48px 0;
}
@media (max-width: 1023px) { .sh-page-resources .page-section { padding: 56px 32px 0; } }
@media (max-width: 767px)  { .sh-page-resources .page-section { padding: 44px 20px 0; } }

.sh-page-resources .section-header {
  margin-bottom: 28px;
  max-width: 720px;
}
.sh-page-resources .section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-500);
  margin-bottom: 10px;
}
.sh-page-resources .section-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 2.6vw, 30px);
  letter-spacing: -0.02em;
  color: var(--slate-900);
  line-height: 1.2;
  margin-bottom: 10px;
}
.sh-page-resources .section-sub {
  font-size: 15px;
  color: var(--slate-600);
  line-height: 1.6;
}


/* ──────────────────────────────────────────────────────────────
   CATEGORY BADGES
   ────────────────────────────────────────────────────────────── */

.sh-page-resources .badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid;
  background: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}
.sh-page-resources .badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

/* Badge variants */
.sh-page-resources .badge.stripe   { color: #5b3aff;                  border-color: #d8d0ff;              background: #f4f1ff; }
.sh-page-resources .badge.deposits { color: var(--brand-dark);         border-color: #c7d6ff;              background: var(--brand-light); }
.sh-page-resources .badge.use      { color: var(--emerald-hover);      border-color: #a7f3d0;              background: var(--emerald-light); }
.sh-page-resources .badge.setup    { color: var(--sky);                border-color: #b9e2f6;              background: var(--sky-light); }
.sh-page-resources .badge.trouble  { color: var(--amber);              border-color: #fde68a;              background: var(--amber-light); }
.sh-page-resources .badge.compare  { color: #6d28d9;                   border-color: #d8d0ff;              background: var(--violet-light); }
.sh-page-resources .badge.updates  { color: var(--slate-700);          border-color: var(--slate-200);     background: var(--slate-50); }
.sh-page-resources .badge.agency   { color: var(--pink);               border-color: #f9c5dc;              background: var(--pink-light); }


/* ──────────────────────────────────────────────────────────────
   READ TIME
   ────────────────────────────────────────────────────────────── */

.sh-page-resources .read-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--slate-500);
  white-space: nowrap;
}
.sh-page-resources .read-time svg { color: var(--slate-400); }


/* ──────────────────────────────────────────────────────────────
   READ LINK (arrow CTA)
   ────────────────────────────────────────────────────────────── */

.sh-page-resources .read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  flex-shrink: 0;
}
.sh-page-resources .read-link svg { transition: transform 0.15s; }


/* ──────────────────────────────────────────────────────────────
   START HERE CARDS (3)
   ────────────────────────────────────────────────────────────── */

.sh-page-resources .start-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .sh-page-resources .start-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .sh-page-resources .start-grid { grid-template-columns: 1fr; } }

.sh-page-resources .start-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.sh-page-resources .start-card::before {
  content: '';
  position: absolute;
  left: 0; top: 24px; bottom: 24px;
  width: 3px;
  background: var(--brand);
  border-radius: 0 3px 3px 0;
  opacity: 0;
  transition: opacity 0.15s;
}
/* Article links are pointer-events:none in HTML — hover not triggered on disabled cards */
.sh-page-resources .start-card:not([aria-disabled]) {
  cursor: pointer;
}
.sh-page-resources .start-card:not([aria-disabled]):hover {
  border-color: rgba(47,91,255,0.4);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  text-decoration: none;
}
.sh-page-resources .start-card:not([aria-disabled]):hover::before { opacity: 1; }
.sh-page-resources .start-card:not([aria-disabled]):hover .read-link svg { transform: translateX(2px); }

.sh-page-resources .start-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--slate-400);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.sh-page-resources .start-card .badge { align-self: flex-start; margin-bottom: 14px; }
.sh-page-resources .start-card h3 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--slate-900);
  line-height: 1.3;
  margin-bottom: 10px;
}
.sh-page-resources .start-card p {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}


/* ──────────────────────────────────────────────────────────────
   FEATURED ARTICLES CARDS (3 large)
   ────────────────────────────────────────────────────────────── */

.sh-page-resources .featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .sh-page-resources .featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .sh-page-resources .featured-grid { grid-template-columns: 1fr; } }

.sh-page-resources .feature-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.sh-page-resources .feature-card:not([aria-disabled]):hover {
  border-color: rgba(47,91,255,0.4);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  text-decoration: none;
}
.sh-page-resources .feature-card:not([aria-disabled]):hover .read-link svg { transform: translateX(2px); }

/* Thumbnail area */
.sh-page-resources .feature-thumb {
  height: 140px;
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-200);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sh-page-resources .feature-thumb.stripe   { background: linear-gradient(135deg, #f4f1ff 0%, #ede9fe 100%); }
.sh-page-resources .feature-thumb.deposits { background: linear-gradient(135deg, var(--brand-light) 0%, #dde8ff 100%); }
.sh-page-resources .feature-thumb.trouble  { background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%); }

/* Decorative orbs inside thumbnails */
.sh-page-resources .feature-thumb::before,
.sh-page-resources .feature-thumb::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.sh-page-resources .feature-thumb::before {
  width: 220px; height: 220px;
  right: -80px; top: -80px;
  background: rgba(255,255,255,0.5);
}
.sh-page-resources .feature-thumb::after {
  width: 120px; height: 120px;
  left: -30px; bottom: -50px;
  background: rgba(255,255,255,0.35);
}

/* Icon box */
.sh-page-resources .thumb-glyph {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(15,23,42,0.06), 0 2px 4px rgba(15,23,42,0.04);
}
.sh-page-resources .thumb-glyph.stripe   { color: #5b3aff; }
.sh-page-resources .thumb-glyph.deposits { color: var(--brand); }
.sh-page-resources .thumb-glyph.trouble  { color: var(--amber); }

/* Card body */
.sh-page-resources .feature-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sh-page-resources .feature-body .badge { align-self: flex-start; margin-bottom: 14px; }
.sh-page-resources .feature-card h3 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.015em;
  color: var(--slate-900);
  line-height: 1.3;
  margin-bottom: 10px;
  text-wrap: balance;
}
.sh-page-resources .feature-card p {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}

/* Article meta footer (dashed top) */
.sh-page-resources .article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed var(--slate-200);
}


/* ──────────────────────────────────────────────────────────────
   POPULAR GUIDES (6 compact cards)
   ────────────────────────────────────────────────────────────── */

.sh-page-resources .popular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 980px) { .sh-page-resources .popular-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .sh-page-resources .popular-grid { grid-template-columns: 1fr; } }

.sh-page-resources .popular-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.sh-page-resources .popular-card:not([aria-disabled]):hover {
  border-color: rgba(47,91,255,0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
  text-decoration: none;
}
.sh-page-resources .popular-card:not([aria-disabled]):hover .read-link svg { transform: translateX(2px); }

.sh-page-resources .popular-card .row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.sh-page-resources .popular-rank {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--slate-400);
  flex-shrink: 0;
}
.sh-page-resources .popular-card h4 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  color: var(--slate-900);
  line-height: 1.4;
  text-wrap: balance;
  flex: 1;
}
.sh-page-resources .popular-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}


/* ──────────────────────────────────────────────────────────────
   MORE GUIDES COMING NEXT (9 cards)
   ────────────────────────────────────────────────────────────── */

.sh-page-resources .more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 980px) { .sh-page-resources .more-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .sh-page-resources .more-grid { grid-template-columns: 1fr; } }

.sh-page-resources .more-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  box-shadow: var(--shadow-sm);
  cursor: default;
}
.sh-page-resources .more-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}
.sh-page-resources .planned {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.sh-page-resources .more-card h4 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--slate-900);
  line-height: 1.35;
  margin-bottom: 10px;
  text-wrap: balance;
}
.sh-page-resources .more-card p {
  font-size: 13.5px;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.sh-page-resources .more-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--slate-200);
  margin-top: auto;
}
/* Disabled more-cards — muted read-link, no hover */
.sh-page-resources .more-card .read-link { color: var(--slate-400); }

/* Active more-cards (aria-disabled not set — sh_resource_link_attrs returned a real href) */
.sh-page-resources .more-card:not([aria-disabled="true"]) {
  cursor: pointer;
}
.sh-page-resources .more-card:not([aria-disabled="true"]) .read-link {
  color: var(--brand);
}
.sh-page-resources .more-card:not([aria-disabled="true"]):hover {
  border-color: rgba(47,91,255,0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
  text-decoration: none;
}
.sh-page-resources .more-card:not([aria-disabled="true"]):hover .read-link svg {
  transform: translateX(2px);
}


/* ──────────────────────────────────────────────────────────────
   LIBRARY NOTE
   ────────────────────────────────────────────────────────────── */

.sh-page-resources .library-note {
  margin-top: 24px;
  padding: 14px 16px;
  background: var(--slate-50);
  border: 1px dashed var(--slate-200);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--slate-600);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.sh-page-resources .library-note svg    { color: var(--slate-400); flex-shrink: 0; margin-top: 2px; }
.sh-page-resources .library-note strong { color: var(--slate-800); font-weight: 600; }


/* ──────────────────────────────────────────────────────────────
   CTA PRICING — light card
   ────────────────────────────────────────────────────────────── */

.sh-page-resources .cta-pricing-band {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 48px 0;
}
@media (max-width: 1023px) { .sh-page-resources .cta-pricing-band { padding: 56px 32px 0; } }
@media (max-width: 767px)  { .sh-page-resources .cta-pricing-band { padding: 48px 20px 0; } }

.sh-page-resources .cta-light-card {
  background: linear-gradient(180deg, #ffffff 0%, var(--brand-light) 100%);
  border: 1px solid #c7d6ff;
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(47,91,255,0.04), 0 8px 24px rgba(47,91,255,0.06);
}
@media (max-width: 767px) { .sh-page-resources .cta-light-card { padding: 36px 22px; } }

.sh-page-resources .cta-light-card h2 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--slate-900);
  margin-bottom: 12px;
  text-wrap: balance;
}
.sh-page-resources .cta-light-card .sub {
  font-size: 16px;
  color: var(--slate-600);
  margin-bottom: 24px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.sh-page-resources .cta-light-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.sh-page-resources .cta-light-buttons .btn--primary {
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 10px;
}
.sh-page-resources .cta-light-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s;
}
.sh-page-resources .cta-light-link:hover { background: rgba(47,91,255,0.06); text-decoration: none; }
.sh-page-resources .cta-light-link svg  { transition: transform 0.15s; }
.sh-page-resources .cta-light-link:hover svg { transform: translateX(2px); }

.sh-page-resources .trust-line {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.6;
}
.sh-page-resources .trust-line .dot {
  display: inline-block;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--slate-300);
  margin: 0 8px;
  vertical-align: middle;
}


/* ──────────────────────────────────────────────────────────────
   CTA DOCS — dark card
   ────────────────────────────────────────────────────────────── */

.sh-page-resources .doc-cta-band {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 48px 64px;
}
@media (max-width: 1023px) { .sh-page-resources .doc-cta-band { padding: 48px 32px 48px; } }
@media (max-width: 767px)  { .sh-page-resources .doc-cta-band { padding: 40px 20px 40px; } }

.sh-page-resources .doc-cta-card {
  background: linear-gradient(135deg, var(--slate-900) 0%, #1a2547 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) { .sh-page-resources .doc-cta-card { padding: 36px 24px; } }

/* Orb decorations */
.sh-page-resources .doc-cta-card::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,91,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.sh-page-resources .doc-cta-card::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.sh-page-resources .doc-cta-card > * { position: relative; z-index: 1; }

.sh-page-resources .doc-cta-card h2 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px;
  text-wrap: balance;
}
.sh-page-resources .doc-cta-card p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.sh-page-resources .doc-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.sh-page-resources .doc-cta-buttons .btn--primary {
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 10px;
}

/* Ghost button (dark card variant) */
.sh-page-resources .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.sh-page-resources .btn-ghost:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.20);
  text-decoration: none;
}
.sh-page-resources .btn-ghost svg { transition: transform 0.15s; }
.sh-page-resources .btn-ghost:hover svg { transform: translateX(2px); }


/* ── Planned / Coming next cards ────────────────────────────────────────── */

/* .planned-card inherits all .more-card rules.
   aria-disabled="true" already blocks the :not([aria-disabled]) hover rules.
   Only additions: muted bg + slightly less prominent title. */
.sh-page-resources .planned-card {
  background: var(--slate-50);
  border-color: var(--slate-200);
}
.sh-page-resources .planned-card h4 {
  color: var(--slate-700);
}


/* ── JS filter support ───────────────────────────────────────────────────── */

/* Ensure hidden attribute works even if a theme removes the browser default. */
.sh-page-resources [hidden] { display: none !important; }

/* "No resources found." message — shown when all cards are filtered out. */
.sh-page-resources .sh-no-results {
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 0 48px;
  font-size: 15px;
  color: var(--slate-500);
  text-align: center;
}
@media (max-width: 767px) {
  .sh-page-resources .sh-no-results { padding: 0 20px; }
}
