/* ═══════════════════════════════════════════════════════════════
   assets/css/typography.css
   Typography scale from jobera-handoff.md section 2
   Blog content styles (single post)
   ═══════════════════════════════════════════════════════════════ */

/* ── Type scale ── */
.text-10 { font-size: 10px; }
.text-11 { font-size: 11px; }
.text-12 { font-size: 12px; }
.text-13 { font-size: 13px; }
.text-14 { font-size: 14px; }
.text-15 { font-size: 15px; }
.text-16 { font-size: 16px; }
.text-19 { font-size: 19px; }
.text-22 { font-size: 22px; }
.text-24 { font-size: 24px; }
.text-32 { font-size: 32px; }

/* ── Article content typography ── */
.jb-entry-content {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text);
  max-width: var(--content-w);
}

.jb-entry-content h1,
.jb-entry-content h2,
.jb-entry-content h3,
.jb-entry-content h4,
.jb-entry-content h5,
.jb-entry-content h6 {
  font-family: var(--font-euclid);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
  margin: 2em 0 .6em;
}

.jb-entry-content h1 { font-size: 32px; }
.jb-entry-content h2 { font-size: 24px; }
.jb-entry-content h3 { font-size: 20px; }
.jb-entry-content h4 { font-size: 18px; }
.jb-entry-content h5 { font-size: 16px; }
.jb-entry-content h6 { font-size: 15px; }

.jb-entry-content p {
  margin: 0 0 1.4em;
}

.jb-entry-content a {
  color: var(--ac);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-base);
}
.jb-entry-content a:hover {
  color: var(--ac-hover);
}

.jb-entry-content ul,
.jb-entry-content ol {
  margin: 0 0 1.4em;
  padding-left: 1.6em;
  list-style: revert;
}

.jb-entry-content li {
  margin-bottom: .4em;
}

.jb-entry-content blockquote {
  border-left: 3px solid var(--ac);
  padding: 16px 24px;
  margin: 2em 0;
  background: var(--color-al);
  border-radius: 0 10px 10px 0;
  font-size: 17px;
  font-style: italic;
  color: var(--color-sec);
}

.jb-entry-content pre {
  background: var(--color-alt);
  border: 1px solid var(--color-bd);
  border-radius: var(--r-card);
  padding: 20px;
  overflow-x: auto;
  margin: 1.6em 0;
  font-size: 14px;
  line-height: 1.5;
}

.jb-entry-content code {
  background: var(--color-alt);
  border: 1px solid var(--color-bd);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: .9em;
  font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
}

.jb-entry-content pre code {
  background: none;
  border: none;
  padding: 0;
}

.jb-entry-content img {
  border-radius: var(--r-card);
  margin: 1.6em 0;
  width: 100%;
  height: auto;
}

.jb-entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.6em 0;
  font-size: 14px;
}

.jb-entry-content th {
  background: var(--color-alt);
  font-weight: 700;
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--color-bd);
}

.jb-entry-content td {
  padding: 10px 14px;
  border: 1px solid var(--color-bd);
}

.jb-entry-content tr:nth-child(even) td {
  background: var(--color-alt);
}

.jb-entry-content hr {
  border: none;
  border-top: 1px solid var(--color-bd);
  margin: 2.4em 0;
}

/* ── Page/post titles ── */
.jb-page-title {
  font-family: var(--font-euclid);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin: 0 0 12px;
}

.jb-section-title {
  font-family: var(--font-euclid);
  font-size: 19px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 16px;
}

@media (max-width: 1024px) {
  .jb-page-title {
    font-size: 22px;
  }
  .jb-entry-content {
    font-size: 15px;
  }
  .jb-entry-content h2 { font-size: 20px; }
  .jb-entry-content h3 { font-size: 18px; }
}
