/* Blog styles */
.blog-body{background:var(--cream-50);min-height:100vh;display:flex;flex-direction:column}
.blog-body::before{
  content:"";position:fixed;inset:0;pointer-events:none;z-index:0;
  background:
    radial-gradient(900px 500px at 90% -10%, rgba(242,160,42,.08), transparent 60%),
    radial-gradient(700px 400px at 0% 80%, rgba(226,90,27,.04), transparent 60%);
}

/* Blog index */
.blog-hero{padding:80px 0 40px;position:relative;z-index:1}
.blog-hero h1{font-size:clamp(38px,5vw,64px);max-width:18ch}
.blog-hero p{margin-top:18px;color:var(--ink-3);font-size:18px;max-width:54ch}

.blog-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:24px;
  margin:48px 0 80px;
}
.post-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:0;overflow:hidden;
  display:flex;flex-direction:column;
  transition:transform .2s, box-shadow .2s, border-color .2s;
}
.post-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-md);border-color:#d6c5a3}
.post-card-cover{
  height:180px;
  background:var(--grad);
  position:relative;overflow:hidden;
  display:grid;place-items:center;
}
.post-card-cover::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.30), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,.15), transparent 50%);
}
.post-card-cover .post-icon{
  position:relative;z-index:1;
  font-family:var(--font-display);font-weight:700;font-size:54px;color:#fff;
  letter-spacing:-.04em;
  text-shadow:0 4px 14px rgba(0,0,0,.20);
}
.post-card-cover.spanish{background:linear-gradient(135deg,#AA151B 0%,#F1BF00 100%)}
.post-card-cover.german{background:linear-gradient(135deg,#000 0%,#DD0000 50%,#FFCE00 100%)}
.post-card-cover.exam{background:linear-gradient(135deg,#1f5a3a 0%,#3CB371 100%)}

.post-card-body{padding:22px;display:flex;flex-direction:column;gap:10px;flex:1}
.post-card-tag{
  font-size:11px;font-weight:700;letter-spacing:.10em;text-transform:uppercase;
  color:var(--orange-deep);
}
.post-card h3{font-size:20px;line-height:1.25}
.post-card p{color:var(--ink-3);font-size:14px;margin:0}
.post-card-meta{
  margin-top:auto;padding-top:14px;
  display:flex;justify-content:space-between;align-items:center;
  font-size:12px;color:var(--ink-4);
}

/* Article page */
.article-body{background:var(--cream-50);min-height:100vh}
.article{
  max-width:760px;margin:0 auto;
  padding:48px 24px 80px;
  position:relative;z-index:1;
}
.article .crumbs{margin-bottom:14px}
.article .article-tag{
  display:inline-block;
  font-size:11px;font-weight:700;letter-spacing:.10em;text-transform:uppercase;
  color:var(--orange-deep);
  padding:6px 12px;border-radius:999px;
  background:rgba(226,90,27,.10);border:1px solid rgba(226,90,27,.18);
}
.article h1{font-size:clamp(34px,5vw,52px);margin-top:18px;text-wrap:balance}
.article .article-meta{
  margin-top:18px;color:var(--ink-4);font-size:14px;
  display:flex;gap:12px;align-items:center;flex-wrap:wrap;
}
.article .article-meta::before{content:"";display:inline-block;width:6px;height:6px;border-radius:50%;background:var(--orange);flex:0 0 6px}

.article-cover{
  margin:32px 0 40px;
  border-radius:var(--radius-xl);
  height:280px;
  background:var(--grad);
  position:relative;overflow:hidden;
  display:grid;place-items:center;
}
.article-cover.spanish{background:linear-gradient(135deg,#AA151B 0%,#F1BF00 100%)}
.article-cover.german{background:linear-gradient(135deg,#000 0%,#DD0000 50%,#FFCE00 100%)}
.article-cover.exam{background:linear-gradient(135deg,#1f5a3a 0%,#3CB371 100%)}
.article-cover::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.30), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,.15), transparent 50%);
}
.article-cover .post-icon{
  position:relative;z-index:1;
  font-family:var(--font-display);font-weight:700;font-size:96px;color:#fff;
  letter-spacing:-.04em;
  text-shadow:0 4px 20px rgba(0,0,0,.25);
}

.article-prose{font-size:17px;line-height:1.75;color:var(--ink-2)}
.article-prose p{margin:0 0 18px}
.article-prose h2{
  font-size:28px;margin:42px 0 16px;
  font-family:var(--font-display);font-weight:600;color:var(--ink);
  letter-spacing:-.015em;
}
.article-prose h3{
  font-size:21px;margin:32px 0 12px;
  font-family:var(--font-display);font-weight:600;color:var(--ink);
}
.article-prose ul, .article-prose ol{margin:0 0 18px 22px}
.article-prose li{margin-bottom:8px}
.article-prose ul li{list-style:disc}
.article-prose ol li{list-style:decimal}
.article-prose b, .article-prose strong{color:var(--ink);font-weight:600}
.article-prose a{color:var(--orange-deep);text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:2px}
.article-prose blockquote{
  margin:24px 0;padding:18px 24px;
  background:var(--cream-100);
  border-left:3px solid var(--orange);
  border-radius:0 14px 14px 0;
  font-style:italic;color:var(--ink-2);
}
.article-prose hr{border:0;height:1px;background:var(--line);margin:36px 0}
.article-prose table{width:100%;border-collapse:collapse;margin:18px 0}
.article-prose th, .article-prose td{
  padding:10px 14px;text-align:left;
  border-bottom:1px solid var(--line);
}
.article-prose th{font-family:var(--font-display);font-weight:600;font-size:14px;color:var(--ink-3);text-transform:uppercase;letter-spacing:.05em}
.article-prose code{
  background:var(--cream-100);
  padding:2px 6px;border-radius:6px;
  font-family:ui-monospace, "SF Mono", Menlo, monospace;
  font-size:.92em;color:var(--ink);
}

/* In-article CTA card */
.in-article-cta{
  margin:36px 0;
  background:linear-gradient(135deg,#FFF1DA 0%,#FFE0BC 100%);
  border:1px solid #E8C99D;
  border-radius:var(--radius-xl);
  padding:28px;
  display:flex;align-items:center;gap:24px;
  position:relative;overflow:hidden;
}
@media (max-width:560px){.in-article-cta{flex-direction:column;text-align:left;align-items:flex-start}}
.in-article-cta::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(400px 200px at 90% 30%, rgba(242,160,42,.20), transparent 60%);
}
.in-article-cta img{
  width:80px;height:80px;flex:0 0 80px;
  filter:drop-shadow(0 10px 14px rgba(120,40,6,.20));
}
.in-article-cta-body{flex:1;position:relative;z-index:1}
.in-article-cta-body h4{
  font-family:var(--font-display);font-weight:600;font-size:18px;color:var(--ink);
  margin:0 0 6px;line-height:1.3;
}
.in-article-cta-body p{margin:0;color:var(--ink-2);font-size:14px}
.in-article-cta-body .btn{margin-top:14px;font-size:14px;padding:10px 18px}

/* Article footer / related */
.article-foot{
  margin-top:64px;padding-top:36px;border-top:1px solid var(--line);
  display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap;
}
.article-foot a{color:var(--orange-deep);font-weight:600;font-size:14px}
.article-foot a:hover{text-decoration:underline}

/* Standfirst (article lede paragraph) */
.article-standfirst{
  margin-top:20px;font-size:20px;line-height:1.5;
  color:var(--ink-2);max-width:62ch;text-wrap:pretty;
  font-family:var(--font-body);font-weight:400;
}
@media (max-width:560px){.article-standfirst{font-size:18px}}

/* Related-links list */
.related-links{margin-top:14px}
.related-links li{margin-bottom:8px;list-style:disc;margin-left:22px}
.related-links a{color:var(--orange-deep);font-weight:600;text-decoration:none}
.related-links a:hover{text-decoration:underline}

/* CTA stores inside in-article-cta — small stacked stores */
.in-article-cta .cta-stores{
  margin-top:14px;
  display:flex;flex-wrap:wrap;gap:8px;
}
.in-article-cta .cta-stores .store{padding:10px 14px;min-height:48px;border-radius:12px}
.in-article-cta .cta-stores .store .store-text strong{font-size:14px}
.in-article-cta .cta-stores .store .store-text small{font-size:9px}
.in-article-cta .cta-stores .store .store-svg{width:18px;height:18px;flex:0 0 18px}

/* Footer trademark disclaimer */
.footer-disclaimer{
  margin-top:16px;padding-top:14px;border-top:1px dashed var(--line);
  font-size:12px;line-height:1.5;color:var(--ink-4);
  max-width:80ch;
}

/* "From the blog" section on homepage */
.from-blog-section{padding:80px 0 40px}
.from-blog-section .section-head{margin-bottom:32px}

/* Read time meta */
.article-meta span:nth-child(1){color:var(--ink-3)}