/* Static articles — light layout aligned with Credit Card Guides / Article detail */
* {
  box-sizing: border-box;
}

body.blog-article-page {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #f8fafc;
  color: #0f172a;
  line-height: 1.65;
}

.blog-topnav {
  background: #020617;
  padding: 20px 32px;
  display: flex;
  justify-content: center;
}

.blog-topnav-inner {
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.blog-logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #34d399, #2dd4bf, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.blog-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.blog-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.blog-nav a:hover {
  color: #f8fafc;
}

.blog-nav a.is-active {
  color: #f8fafc;
  font-weight: 600;
  border-bottom-color: #34d399;
}

.blog-main {
  max-width: 48rem;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  margin-bottom: 2rem;
}

.blog-back:hover {
  color: #0f172a;
}

.blog-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.blog-cat {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 9999px;
  background: #d1fae5;
  color: #047857;
}

.blog-cat.blog-cat-dining {
  background: #ffedd5;
  color: #c2410c;
}

.blog-cat.blog-cat-101 {
  background: #ccfbf1;
  color: #0f766e;
}

.blog-read {
  font-size: 0.75rem;
  color: #94a3b8;
}

.blog-h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #0f172a;
}

.blog-deck {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: #64748b;
}

.blog-dates {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin: 0 0 2rem;
}

.blog-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #64748b;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 3px 8px;
  border-radius: 999px;
}

.blog-hero-img-wrap {
  border-radius: 1rem;
  overflow: hidden;
  margin: 0 0 2.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.06);
}

.blog-hero-img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  display: block;
}

.showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 0 0 40px;
}

@media (min-width: 640px) {
  .showcase {
    grid-template-columns: 1fr 1fr;
  }
}

.showcase figure {
  margin: 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.showcase img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.showcase figcaption {
  margin-top: 14px;
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.45;
}

.showcase .rate {
  display: inline-block;
  margin-top: 8px;
  font-weight: 800;
  font-size: 1.05rem;
  color: #059669;
}

.prose {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #475569;
}

.prose p {
  margin: 0 0 1.15em;
}

.prose h2 {
  margin: 2em 0 0.65em;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.prose ul {
  margin: 0 0 1.15em;
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 0.5em;
}

.prose a {
  color: #059669;
  font-weight: 600;
  text-decoration: none;
}

.prose a:hover {
  text-decoration: underline;
}

.prose strong {
  color: #1e293b;
}

.note {
  font-size: 0.95rem;
  color: #64748b;
}

.callout {
  margin: 28px 0;
  padding: 22px;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.callout h3 {
  margin: 0 0 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.callout ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.65;
}

.table-wrap {
  margin: 0 0 28px;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  overflow: auto;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

caption {
  caption-side: bottom;
  text-align: left;
  padding: 12px 16px 14px;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.45;
}

th,
td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #f1f5f9;
}

th {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
  background: #f8fafc;
}

tbody tr:last-child td {
  border-bottom: none;
}

.td-strong {
  display: block;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.td-muted {
  display: block;
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.4;
  font-weight: 400;
}

.net {
  font-weight: 800;
  font-size: 1.05rem;
  color: #059669;
}

.disclaimer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: #64748b;
}

.disclaimer p {
  margin: 0;
}

.site-footer {
  background: #fff;
  padding: 28px 24px 40px;
  text-align: center;
  border-top: 1px solid #e2e8f0;
  font-size: 0.875rem;
  color: #64748b;
}

.site-footer p {
  margin: 0 0 12px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-links a {
  color: #64748b;
  text-decoration: underline;
}

.footer-links a:hover {
  color: #0f172a;
}
