/* =========================
   Alldotech Prose System
========================= */

.alldotech-prose {
  color: #222;
  font-size: 16px;
  line-height: 1.8;
  word-break: break-word;
}

/* Headings */
.alldotech-prose h1,
.alldotech-prose h2,
.alldotech-prose h3,
.alldotech-prose h4,
.alldotech-prose h5,
.alldotech-prose h6 {
  color: #111;
  line-height: 1.3;
  font-weight: 700;
  margin-top: 1.8em;
  margin-bottom: 0.8em;
}

.alldotech-prose h1 {
  font-size: 42px;
}

.alldotech-prose h2 {
  font-size: 32px;
}

.alldotech-prose h3 {
  font-size: 24px;
}

.alldotech-prose h4 {
  font-size: 20px;
}

/* Paragraph */
.alldotech-prose p {
  margin-bottom: 1.2em;
}

/* Lists */
.alldotech-prose ul,
.alldotech-prose ol {
  margin-bottom: 1.2em;
  padding-left: 1.5em;
}

.alldotech-prose li {
  margin-bottom: 0.5em;
}

/* Links */
.alldotech-prose a {
  color: #0066cc;
  text-decoration: none;
}

.alldotech-prose a:hover {
  text-decoration: underline;
}

/* Images */
.alldotech-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 1.5em 0;
}

/* Tables */
.alldotech-prose table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5em;
}

.alldotech-prose th,
.alldotech-prose td {
  border: 1px solid #ddd;
  padding: 12px;
}

/* Blockquote */
.alldotech-prose blockquote {
  border-left: 4px solid #ddd;
  padding-left: 1em;
  color: #666;
  margin: 1.5em 0;
}

/* Code */
.alldotech-prose code {
  background: #f5f5f5;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.9em;
}