/* Pangea blog — shared article styles. Palette/type mirror apps/landing/index.html. */
:root {
  --paper: #faf5ec;
  --cream: #f1e3ce;
  --sand: #ddbe97;
  --tan: #c99c6f;
  --caramel: #b0703c;
  --espresso: #5a3b24;
  --ink: #3c2a1d;
  --ink-soft: #715c49;
  --line: #e7d9c4;
  --white: #fffdf8;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "General Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.topbar {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.topbar .wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand svg {
  width: 30px;
  height: 30px;
  display: block;
}
.brand .word {
  font-family: "Funnel Display", Aleo, Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--espresso);
}
.topbar .cta {
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  background: var(--espresso);
  color: var(--paper);
  padding: 10px 20px;
  border-radius: 999px;
}
main {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 0;
}
article h1 {
  font-family: Aleo, Georgia, serif;
  font-weight: 700;
  font-size: clamp(30px, 5vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.byline {
  margin-top: 14px;
  font-size: 15px;
  color: var(--ink-soft);
}
article h2 {
  font-family: Aleo, Georgia, serif;
  font-weight: 700;
  font-size: clamp(22px, 3.5vw, 28px);
  line-height: 1.25;
  margin: 44px 0 4px;
}
article h3 {
  font-family: Aleo, Georgia, serif;
  font-size: 20px;
  margin: 28px 0 2px;
}
article p {
  margin-top: 14px;
  font-size: 17px;
}
article p:first-of-type {
  font-size: 19px;
  color: var(--ink);
}
article ul,
article ol {
  margin: 14px 0 0 24px;
  font-size: 17px;
}
article li {
  margin-top: 8px;
}
article a {
  color: var(--caramel);
  text-decoration-color: var(--sand);
}
article strong {
  font-weight: 600;
}
.tablewrap {
  overflow-x: auto;
  margin-top: 18px;
}
table.cmp {
  border-collapse: collapse;
  width: 100%;
  font-size: 16px;
}
table.cmp th,
table.cmp td {
  border: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}
table.cmp thead th {
  background: var(--cream);
  font-weight: 600;
}
table.cmp tbody tr:nth-child(even) {
  background: var(--white);
}
.faq {
  margin-top: 18px;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.faq summary {
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
}
.faq p {
  margin-top: 10px;
  color: var(--ink-soft);
}
.ctaband {
  background: var(--espresso);
  color: var(--paper);
  border-radius: 20px;
  padding: 36px 32px;
  margin: 52px 0 0;
  text-align: center;
}
.ctaband h2 {
  font-family: Aleo, Georgia, serif;
  font-size: 26px;
  margin: 0;
}
.ctaband p {
  margin-top: 10px;
  color: var(--cream);
}
.ctaband .btn {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  background: var(--paper);
  color: var(--espresso);
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 999px;
}
.ctaband .note {
  margin-top: 12px;
  font-size: 14px;
  color: var(--sand);
}
footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 56px;
  font-size: 14px;
  color: var(--ink-soft);
}
footer a {
  color: var(--ink-soft);
}
/* blog index */
.postlist {
  list-style: none;
  margin: 32px 0 0;
}
.postlist li {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  margin: 0;
}
.postlist a {
  font-family: Aleo, Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
}
.postlist a:hover {
  color: var(--caramel);
}
.postlist .date {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: var(--ink-soft);
}
.postlist .desc {
  margin-top: 8px;
  font-size: 16px;
  color: var(--ink-soft);
}
