/* Styles for the /guides SEO article pages. Loaded after marketing.css so it
   inherits the same variables, nav, and footer styling. */

.guide{padding:48px 40px 72px;}
.guide-inner{max-width:760px;margin:0 auto;}

.crumbs{font-size:12px;color:var(--muted);margin-bottom:20px;}
.crumbs a{color:var(--slate);}
.crumbs a:hover{color:var(--teal);}
.crumbs span{margin:0 2px;}

.guide-h1{font-size:38px;font-weight:800;letter-spacing:-1px;line-height:1.15;color:var(--navy);margin-bottom:18px;}
.guide-lede{font-size:17px;line-height:1.7;color:var(--slate);margin-bottom:28px;}

.guide h2{font-size:24px;font-weight:800;letter-spacing:-0.4px;color:var(--navy);margin:44px 0 14px;scroll-margin-top:80px;}
.guide p{font-size:16px;line-height:1.75;color:var(--slate);margin-bottom:14px;}

/* Table of contents */
.guide-toc{background:var(--surface);border:1px solid var(--border);border-radius:12px;padding:16px 20px;margin-bottom:8px;display:flex;flex-direction:column;gap:6px;}
.guide-toc strong{font-size:12px;text-transform:uppercase;letter-spacing:0.06em;color:var(--muted);margin-bottom:2px;}
.guide-toc a{font-size:14px;color:var(--teal);font-weight:500;}
.guide-toc a:hover{text-decoration:underline;}

/* Numbered steps */
.guide-steps{list-style:none;counter-reset:step;display:flex;flex-direction:column;gap:14px;margin:20px 0 8px;}
.guide-steps li{counter-increment:step;position:relative;padding-left:46px;}
.guide-steps li::before{content:counter(step);position:absolute;left:0;top:0;width:30px;height:30px;border-radius:50%;background:var(--teal);color:#fff;font-size:14px;font-weight:800;display:flex;align-items:center;justify-content:center;}
.guide-steps strong{display:block;font-size:16px;font-weight:700;color:var(--navy);margin-bottom:3px;padding-top:4px;}
.guide-steps span{display:block;font-size:15px;line-height:1.7;color:var(--slate);}

/* Column list / code-ish block */
.guide-code{background:var(--navy);color:#A7F3D0;font-family:ui-monospace,SFMono-Regular,Menlo,monospace;font-size:13px;padding:14px 18px;border-radius:10px;margin:12px 0 16px;overflow-x:auto;line-height:1.6;}

/* Inline CTA */
.guide-cta{background:linear-gradient(135deg,#0F1E35 0%,#162844 100%);border-radius:16px;padding:28px 30px;margin:36px 0;}
.gc-title{font-size:20px;font-weight:800;color:#fff;letter-spacing:-0.3px;margin-bottom:8px;}
.gc-body{font-size:15px;line-height:1.7;color:#94A3B8;margin-bottom:18px;}
.gc-btn{display:inline-block;background:var(--teal);color:#fff;font-size:15px;font-weight:700;padding:12px 24px;border-radius:10px;transition:all 0.15s;}
.gc-btn:hover{background:var(--teal-dark);transform:translateY(-2px);}

/* FAQ accordions */
.faq{display:flex;flex-direction:column;gap:8px;margin-top:16px;}
.faq details{border:1px solid var(--border);border-radius:10px;background:#fff;overflow:hidden;}
.faq summary{padding:14px 18px;font-size:15px;font-weight:600;color:var(--navy);cursor:pointer;list-style:none;position:relative;padding-right:44px;}
.faq summary::-webkit-details-marker{display:none;}
.faq summary::after{content:'+';position:absolute;right:18px;top:12px;font-size:20px;color:var(--muted);font-weight:400;}
.faq details[open] summary::after{content:'−';}
.faq summary:hover{color:var(--teal);}
.faq p{padding:0 18px 16px;margin:0;font-size:15px;color:var(--slate);}

/* Other-bank links */
.other-banks{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px;}
.other-banks a{border:1px solid var(--border);border-radius:20px;padding:8px 16px;font-size:13px;font-weight:600;color:var(--slate);background:var(--surface);transition:all 0.15s;}
.other-banks a:hover{border-color:var(--teal);color:var(--teal);}

/* Hub page bank grid */
.bank-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));gap:14px;margin:28px 0 8px;}
.bank-card{display:flex;flex-direction:column;gap:4px;border:1px solid var(--border);border-radius:14px;padding:20px;background:#fff;transition:all 0.18s;}
.bank-card:hover{border-color:var(--teal);box-shadow:0 10px 28px rgba(15,30,53,0.08);transform:translateY(-2px);}
.bc-name{font-size:17px;font-weight:700;color:var(--navy);}
.bc-sub{font-size:13px;color:var(--teal);font-weight:600;}

.guide-note{font-size:13px;color:var(--muted);border-top:1px solid var(--border);padding-top:18px;margin-top:44px;line-height:1.6;}

@media(max-width:600px){
  .guide{padding:28px 20px 56px;}
  .guide-h1{font-size:28px;letter-spacing:-0.6px;}
  .guide-lede{font-size:16px;}
  .guide h2{font-size:21px;margin:34px 0 12px;}
  .guide-cta{padding:22px 20px;}
  .gc-title{font-size:18px;}
  .gc-btn{display:block;text-align:center;}
  .bank-cards{grid-template-columns:1fr 1fr;}
  .bank-card{padding:16px;}
  .bc-name{font-size:15px;}
}
