/* ═══════════════════════════════════════════
   PAGE CONTENT — Prose Typography
   ═══════════════════════════════════════════ */

.page-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Headings */
.page-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.page-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 32px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.page-content h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 24px;
  margin-bottom: 8px;
  line-height: 1.4;
}

/* Paragraphs */
.page-content p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 20px;
}

/* Strong */
.page-content strong {
  color: var(--navy);
  font-weight: 600;
}

/* Links */
.page-content a {
  color: var(--blue-bright);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, color 0.3s;
}
.page-content a:hover {
  color: var(--cyan-dim);
  border-bottom-color: var(--cyan-dim);
}

/* Unordered Lists */
.page-content ul,
.page-content ol {
  margin: 0 0 24px 0;
  padding-left: 24px;
}
.page-content ul {
  list-style: none;
  padding-left: 0;
}
.page-content ul li {
  position: relative;
  padding-left: 24px;
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 8px;
}
.page-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue-bright));
}

/* Ordered Lists */
.page-content ol li {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 8px;
  padding-left: 4px;
}
.page-content ol li::marker {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue-bright);
}

/* Images */
.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin: 32px 0;
}

/* Blockquotes */
.page-content blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--ice-light);
  border-left: 4px solid var(--cyan);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
}
.page-content blockquote p {
  margin-bottom: 0;
}

/* Tables */
.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 0.95rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.page-content thead th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  text-align: left;
  padding: 14px 20px;
}
.page-content tbody td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-600);
}
.page-content tbody tr:nth-child(even) {
  background: var(--frost);
}
.page-content tbody tr:last-child td {
  border-bottom: none;
}

/* Horizontal Rule */
.page-content hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan-dim), transparent);
  margin: 48px 0;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .page-content {
    max-width: 100%;
  }
  .page-content h2 {
    font-size: 1.35rem;
    margin-top: 36px;
  }
}
