.post-body .post-body {
  --ink: #111827;
  --muted: #667085;
  --brand: #4f46e5;
  --brand-dark: #312e81;
  --accent: #f43f5e;
  --soft: #f5f3ff;
  --soft-accent: #fff1f2;
  --line: #e5e7eb;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  --radius: 14px;
}
.post-body .lead {
  font-size: 1.12em;
  color: #344054;
}
.post-body .quote {
  margin: 30px 0;
  padding: 24px;
  background: linear-gradient(135deg, var(--soft) 0%, #ffffff 100%);
  border: 1px solid #ddd6fe;
  border-left: 5px solid var(--brand);
  border-radius: var(--radius);
  font-size: 1.05em;
  line-height: 1.65;
  color: #1f2937;
}
.post-body .split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}
.post-body .mini-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.post-body .mini-card .eyebrow {
  margin-bottom: 10px;
  color: var(--brand);
  font-weight: 850;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.post-body .mini-card p:last-child {
  margin-bottom: 0;
}
.post-body .contrast {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 34px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.post-body .contrast div {
  padding: 28px;
}
.post-body .contrast div:first-child {
  background: var(--soft-accent);
}
.post-body .contrast div:last-child {
  background: var(--soft);
}
.post-body .contrast span {
  display: block;
  margin-bottom: 10px;
  font-weight: 850;
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}
.post-body .examples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 10px;
}
.post-body .example {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px 18px 20px;
  position: relative;
  box-shadow: var(--shadow);
}
.post-body .example::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  background: var(--accent);
  border-radius: 0 4px 4px 0;
}
.post-body .example p {
  margin: 0;
  font-size: 0.95em;
}
.post-body .meaning-block {
  margin: 30px 0 8px;
  border: 1px solid #ddd6fe;
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(79, 70, 229, 0.08);
}
.post-body .meaning-head {
  padding: 24px 26px 20px;
  border-bottom: 1px solid #e9d5ff;
  background: linear-gradient(135deg, #312e81 0%, #4f46e5 100%);
  color: #fff;
}
.post-body .meaning-head h3 {
  margin: 0;
  color: #fff;
}
.post-body .meaning-head p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95em;
}
.post-body .meaning-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}
.post-body .meaning-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 22px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.post-body .meaning-item:nth-child(odd) {
  border-right: 1px solid var(--line);
}
.post-body .meaning-item:last-child {
  grid-column: 1 / -1;
  border-bottom: 0;
  background: linear-gradient(135deg, #fff1f2 0%, #ffffff 78%);
}
.post-body .meaning-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--brand-dark);
  font-weight: 850;
  font-size: 0.9rem;
  border: 1px solid #ddd6fe;
}
.post-body .meaning-item strong {
  display: block;
  margin-bottom: 6px;
  color: #111827;
}
.post-body .meaning-item p {
  margin: 0;
  color: #475467;
  font-size: 0.94em;
}
.post-body .behavior-panel {
  margin: 28px 0 18px;
  padding: 24px;
  border: 1px solid #e0e7ff;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.post-body .behavior-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.post-body .behavior-card {
  min-height: 152px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.post-body .behavior-label {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.post-body .behavior-card p {
  margin: 0;
  color: #344054;
  font-size: 0.95em;
}
.post-body .warning {
  margin: 30px 0;
  padding: 28px;
  background: var(--soft-accent);
  border: 1px solid #fecdd3;
  border-radius: var(--radius);
}
.post-body .warning strong {
  display: block;
  margin-bottom: 12px;
  color: #9f1239;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}
.post-body .warning p:last-child {
  margin-bottom: 0;
}
.post-body .steps {
  counter-reset: step;
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.post-body .step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
}
.post-body .step::before {
  content: counter(step);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  font-weight: 900;
  font-size: 1.1rem;
}
.post-body .step h3 {
  margin-top: 0;
}
.post-body .step p:last-child {
  margin-bottom: 0;
}
.post-body .questions {
  margin: 26px 0;
  padding: 26px;
  background: #f8fafc;
  border-left: 5px solid var(--brand);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.post-body .questions p {
  margin: 0 0 10px;
  color: #334155;
  font-weight: 700;
}
.post-body .questions p:last-child {
  margin-bottom: 0;
}
.post-body .final-block {
  margin-top: 44px;
  padding: 32px;
  border-radius: 18px;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: #fff;
}
.post-body .final-block h2 {
  color: #fff;
}
.post-body .final-block p {
  color: rgba(255, 255, 255, 0.88);
}
.post-body .final-lines {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.35;
  color: #fff;
}
@media (max-width: 900px) {
  .post-body .split,
  .post-body .contrast,
  .post-body .examples,
  .post-body .meaning-grid,
  .post-body .behavior-grid {
    grid-template-columns: 1fr;
  }
  .post-body .meaning-item,
  .post-body .meaning-item:nth-child(odd) {
    border-right: 0;
  }
  .post-body .meaning-item:last-child {
    grid-column: auto;
  }
}
@media (max-width: 560px) {
  .post-body .quote,
  .post-body .warning,
  .post-body .questions,
  .post-body .final-block {
    padding: 22px;
  }
  .post-body .step {
    grid-template-columns: 1fr;
  }
  .post-body .step::before {
    width: 42px;
    height: 42px;
  }
}