/* ============================================
   Gurt AI — blog styles
   Loaded AFTER styles.css. Only defines .blog-* and .post-*
   classes so nothing on the existing pages is affected.
   ============================================ */

.blog-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Blog index ---------- */

.blog-hero {
  padding: 90px 0 54px;
  border-bottom: 1px solid var(--border);
}
.blog-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.blog-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent, #2FA84A);
  margin-bottom: 18px;
}
.blog-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5.4vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  color: var(--text);
}
.blog-hero p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-dim);
  margin: 0;
  max-width: 620px;
}

.blog-list {
  padding: 20px 0 90px;
}
.blog-card {
  display: block;
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.18s ease;
}
.blog-card:last-child { border-bottom: 0; }
.blog-card:hover { opacity: 0.66; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-mute);
  margin-bottom: 12px;
}
.blog-card-topic {
  font-weight: 600;
  color: var(--accent, #2FA84A);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 11.5px;
}
.blog-card h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(23px, 3vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--text);
}
.blog-card p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0;
}

/* ---------- Article ---------- */

.post-head {
  padding: 84px 0 40px;
}
.post-head h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(33px, 4.8vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  color: var(--text);
}
.post-standfirst {
  font-size: 19.5px;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0 0 28px;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-mute);
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.post-meta-dot { opacity: 0.5; }

.breadcrumb {
  font-size: 13.5px;
  color: var(--text-mute);
  margin-bottom: 26px;
}
.breadcrumb a { color: var(--text-mute); border-bottom: 1px solid transparent; }
.breadcrumb a:hover { color: var(--text); border-bottom-color: var(--border-strong); }
.breadcrumb span { opacity: 0.5; margin: 0 7px; }

.post-body {
  padding-bottom: 70px;
  font-size: 17.5px;
  line-height: 1.75;
  color: #2A241E;
}
.post-body > p { margin: 0 0 24px; }
.post-body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(25px, 3.2vw, 33px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 52px 0 18px;
  color: var(--text);
}
.post-body h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.35;
  margin: 36px 0 12px;
  color: var(--text);
}
.post-body ul, .post-body ol {
  margin: 0 0 26px;
  padding-left: 22px;
}
.post-body li { margin-bottom: 11px; }
.post-body li::marker { color: var(--text-mute); }
.post-body a {
  color: var(--text);
  border-bottom: 1.5px solid var(--accent, #2FA84A);
  font-weight: 500;
}
.post-body a:hover { background: rgba(47, 168, 74, 0.09); }
.post-body strong { font-weight: 600; color: var(--text); }

.post-body blockquote {
  margin: 34px 0;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--accent, #2FA84A);
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.45;
  color: var(--text);
}
.post-body blockquote p { margin: 0; }

.callout {
  margin: 36px 0;
  padding: 26px 28px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius, 20px);
}
.callout p { margin: 0; font-size: 16.5px; line-height: 1.65; }
.callout p + p { margin-top: 12px; }
.callout-label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent, #2FA84A);
  margin-bottom: 10px;
}

.post-table-wrap { overflow-x: auto; margin: 32px 0; }
.post-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  min-width: 460px;
}
.post-table th, .post-table td {
  text-align: left;
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
}
.post-table th {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.post-footer {
  padding: 34px 0 80px;
  border-top: 1px solid var(--border);
}
.post-footer h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.related-list { list-style: none; margin: 0; padding: 0; }
.related-list li { margin-bottom: 13px; }
.related-list a {
  font-size: 17px;
  color: var(--text);
  border-bottom: 1px solid var(--border-strong);
}
.related-list a:hover { border-bottom-color: var(--accent, #2FA84A); }

@media (max-width: 640px) {
  .blog-hero { padding: 62px 0 40px; }
  .post-head { padding: 56px 0 30px; }
  .post-body { font-size: 17px; }
  .post-standfirst { font-size: 18px; }
}
