/* Basic content styling for CMS-driven text sections */
.text-editor h1, .text-editor h2, .text-editor h3, .text-editor h4, .text-editor h5, .text-editor h6 {
  margin: 0.6em 0 0.4em;
  font-weight: 600;
}

.text-editor p { margin: 0 0 1em; }

.text-editor ul, .text-editor ol { margin: 0.5em 0 1em 1.5em; }

.text-editor a { color: rgba(var(--primary),1); text-decoration: none; }
.text-editor a:hover { text-decoration: underline; }

.text-editor img { max-width: 100%; height: auto; border-radius: 4px; }

/* Tables */
.text-editor table { width: 100%; border-collapse: collapse; margin: 1em 0; }
.text-editor th, .text-editor td { border: 1px solid rgba(0,0,0,.1); padding: 8px; }

/* Quotes */
.text-editor blockquote { border-left: 3px solid rgba(var(--secondary),.5); padding-left: 12px; color: rgba(var(--dark),.8); }