/* =============================================
   Text Block — ACE Design System
   Free-form rich-text container for slots
   ============================================= */

.text-block {
  font-family: 'Montserrat', system-ui, sans-serif;
  color: #333333;
}

/* --- Style variants --- */
.text-block--body {
  font-size: 1rem;
  line-height: 1.7;
}

.text-block--lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #1a1a1a;
}

.text-block--small {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #555555;
}

/* --- Rich text elements --- */
.text-block p {
  margin: 0 0 1rem;
}

.text-block p:last-child {
  margin-bottom: 0;
}

.text-block em,
.text-block i {
  font-style: italic;
  color: #1a1a1a;
}

.text-block strong,
.text-block b {
  font-weight: 700;
  color: #1a1a1a;
}

.text-block a {
  color: #0056A6;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.text-block a:hover {
  color: #003087;
}

.text-block a:focus-visible {
  outline: 2px solid #0056A6;
  outline-offset: 2px;
  border-radius: 2px;
}

.text-block blockquote {
  margin: 1rem 0;
  padding-left: 1.25rem;
  border-left: 3px solid #0056A6;
  font-style: italic;
  color: #1a1a1a;
}

.text-block ul,
.text-block ol {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}

.text-block li {
  margin-bottom: 0.5rem;
}

.text-block h3,
.text-block h4 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0 0 0.75rem;
}

.text-block h3 {
  font-size: 1.25rem;
}

.text-block h4 {
  font-size: 1.125rem;
}
