/* GoPapi — blog / GEO content typography. Scoped to .brutal-home so it inherits
   the Swiss-minimal tokens (ink #141312 / paper #F4F1EC / red #CA2525) from brutal.css.
   Kept intentionally small — the base system does the heavy lifting. */

.brutal-home .gp-blog-wrap { max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); }

/* --- blog index grid --- */
.brutal-home .gp-post-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1px; background: rgba(20,19,18,0.14); border: 1px solid rgba(20,19,18,0.14);
  margin-top: 40px;
}
.brutal-home .gp-post {
  background: var(--paper-2, #FBFAF7); padding: 34px 32px 30px; display: flex; flex-direction: column;
  text-decoration: none; color: var(--ink, #141312); min-height: 260px;
  transition: transform .5s cubic-bezier(.16,1,.3,1), background .3s;
}
.brutal-home .gp-post:hover { background: #fff; transform: translateY(-3px); }
.brutal-home .gp-post .k {
  font-family: "Space Mono", monospace; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--pink, #CA2525);
}
.brutal-home .gp-post h3 {
  font-family: "Schibsted Grotesk", sans-serif; font-weight: 600; letter-spacing: -0.02em; line-height: 1.1;
  font-size: clamp(1.3rem, 2.1vw, 1.7rem); margin: 14px 0 12px;
}
.brutal-home .gp-post p { color: var(--ink-2, #56524B); font-size: .98rem; line-height: 1.5; }
.brutal-home .gp-post .meta {
  margin-top: auto; padding-top: 20px; font-family: "Space Mono", monospace; font-size: .7rem;
  letter-spacing: .06em; color: #8a857d; display: flex; gap: 14px;
}

/* --- article prose --- */
.brutal-home .gp-article { max-width: 760px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px) 40px; }
.brutal-home .gp-article > * { max-width: 68ch; }
.brutal-home .gp-article h2 {
  font-family: "Schibsted Grotesk", sans-serif; font-weight: 600; letter-spacing: -0.025em;
  font-size: clamp(1.5rem, 3vw, 2.05rem); line-height: 1.12; margin: 2.4em 0 .6em; color: var(--ink);
}
.brutal-home .gp-article h3 {
  font-family: "Schibsted Grotesk", sans-serif; font-weight: 600; font-size: 1.24rem;
  margin: 1.8em 0 .5em; letter-spacing: -0.01em;
}
.brutal-home .gp-article p { font-size: 1.12rem; line-height: 1.72; color: #2a2825; margin: 0 0 1.15em; }
.brutal-home .gp-article a { color: var(--pink, #CA2525); text-decoration: underline; text-underline-offset: 3px; }
.brutal-home .gp-article ul, .brutal-home .gp-article ol { margin: 0 0 1.3em 1.1em; padding: 0; }
.brutal-home .gp-article li { font-size: 1.1rem; line-height: 1.65; color: #2a2825; margin-bottom: .5em; }
.brutal-home .gp-article strong { font-weight: 600; color: var(--ink); }

/* the GEO "answer block" — the self-contained, quotable 40–60 word unit */
.brutal-home .gp-answer {
  border-left: 3px solid var(--pink, #CA2525); background: var(--paper-2, #FBFAF7);
  padding: 20px 26px; margin: 1.4em 0 1.8em; font-size: 1.12rem; line-height: 1.6; color: var(--ink);
}
.brutal-home .gp-answer p { margin: 0; font-size: inherit; }

/* pull-stat */
.brutal-home .gp-stat {
  display: flex; align-items: baseline; gap: 16px; margin: 1.8em 0; padding: 22px 0;
  border-top: 1px solid rgba(20,19,18,0.14); border-bottom: 1px solid rgba(20,19,18,0.14);
}
.brutal-home .gp-stat .n {
  font-family: "Schibsted Grotesk", sans-serif; font-weight: 800; letter-spacing: -0.03em;
  font-size: clamp(2.4rem, 6vw, 3.6rem); color: var(--pink, #CA2525); line-height: .9;
}
.brutal-home .gp-stat .t { font-size: 1rem; color: var(--ink-2, #56524B); line-height: 1.4; }

.brutal-home .gp-sources { margin-top: 3em; padding-top: 1.4em; border-top: 1px solid rgba(20,19,18,0.14); }
.brutal-home .gp-sources h4 {
  font-family: "Space Mono", monospace; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: #8a857d; margin-bottom: .8em;
}
.brutal-home .gp-sources li { font-size: .92rem; color: var(--ink-2); line-height: 1.5; }

/* inline CTA card inside articles + comparison page */
.brutal-home .gp-cta-card {
  background: var(--ink, #141312); color: var(--paper, #F4F1EC); padding: clamp(28px, 5vw, 48px);
  margin: 2.6em auto; max-width: 760px; display: flex; flex-direction: column; gap: 16px;
}
.brutal-home .gp-cta-card h3 {
  font-family: "Schibsted Grotesk", sans-serif; font-weight: 700; letter-spacing: -0.02em;
  font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.1; color: var(--paper); margin: 0;
}
.brutal-home .gp-cta-card p { color: rgba(244,241,236,.82); margin: 0; font-size: 1.05rem; line-height: 1.5; }
.brutal-home .gp-cta-card .btn { align-self: flex-start; margin-top: 6px; }

/* comparison page criteria table */
.brutal-home .gp-criteria { width: 100%; border-collapse: collapse; margin: 30px 0; }
.brutal-home .gp-criteria th, .brutal-home .gp-criteria td {
  text-align: left; padding: 16px 18px; border-bottom: 1px solid rgba(20,19,18,0.14); vertical-align: top;
  font-size: 1rem; line-height: 1.5;
}
.brutal-home .gp-criteria th {
  font-family: "Space Mono", monospace; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-2, #56524B); font-weight: 400;
}
.brutal-home .gp-criteria td:first-child { font-weight: 600; color: var(--ink); width: 30%; }
