
.paragraph--type--content {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  background-color: #fff;
  margin: 0 auto;
  padding: 20px 0;
}

/* Headings */
.paragraph--type--content h1,
.paragraph--type--content h2,
.paragraph--type--content h3,
.paragraph--type--content h4,
.paragraph--type--content h5,
.paragraph--type--content h6 {
  font-family: "Roboto Slab", Georgia, serif;
  color: #111;
  line-height: 1.3;
  margin: 1.2em 0 0.5em;
}

.paragraph--type--content h1 { font-size: 2.2rem; border-bottom: 2px solid #e00; padding-bottom: .3em; }
.paragraph--type--content h2 { font-size: 1.8rem; border-left: 4px solid #e00; padding-left: .5em; }
.paragraph--type--content h3 { font-size: 1.4rem; color: #444; }
.paragraph--type--content h4 { font-size: 1.2rem; color: #555; }

/* Paragraphs and inline text */
.paragraph--type--content p {
  margin-bottom: 1.1em;
}

.paragraph--type--content strong { font-weight: 700; }
.paragraph--type--content em { font-style: italic; }
.paragraph--type--content mark { background: #fff3cd; color: #222; padding: 0 .2em; }

/* Links */
.paragraph--type--content a {
  color: #e00;
  text-decoration: none;
  border-bottom: 1px solid rgba(224,0,0,0.3);
  transition: color 0.2s, border-color 0.2s;
}
.paragraph--type--content a:hover {
  color: #b30000;
  border-color: rgba(179,0,0,0.6);
}

/* Lists */
.paragraph--type--content ul,
.paragraph--type--content ol {
  margin: 0 0 1.2em 2em;
  padding: 0;
}
.paragraph--type--content li {
  margin-bottom: 0.4em;
}
.paragraph--type--content ul li::marker {
  color: #e00;
}

/* Blockquotes */
.paragraph--type--content blockquote {
  border-left: 4px solid #e00;
  padding-left: 1em;
  margin: 1.2em 0;
  font-style: italic;
  color: #555;
  background: #fafafa;
}

/* Images and media */
.paragraph--type--content img,
.paragraph--type--content figure img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}
.paragraph--type--content figure {
  margin: 1.2em 0;
  text-align: center;
}
.paragraph--type--content figcaption {
  font-size: 0.9em;
  color: #777;
  margin-top: 0.5em;
  text-align: center;
}

/* Tables */
.paragraph--type--content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 0.95em;
}
.paragraph--type--content th,
.paragraph--type--content td {
  border: 1px solid #ddd;
  padding: 0.75em;
}
.paragraph--type--content th {
  background: #f5f5f5;
  font-weight: 600;
}
.paragraph--type--content tr:nth-child(even) {
  background: #fafafa;
}

/* Embedded videos / iframes */
.paragraph--type--content iframe {
  max-width: 100%;
  border: none;
  aspect-ratio: 16 / 9;
}

/* Captions / credits */
.paragraph--type--content .credit,
.paragraph--type--content .caption {
  font-size: 0.85em;
  color: #666;
  text-align: right;
  margin-top: -0.5em;
}

/* Horizontal rule */
.paragraph--type--content hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2em 0;
}

/* Pullquotes or highlighted text */
.paragraph--type--content .pullquote {
  font-size: 1.3em;
  font-style: italic;
  color: #333;
  border-left: 5px solid #e00;
  padding-left: 1em;
  margin: 1.5em 0;
  background: #fdfdfd;
}

/* Code blocks / preformatted text */
.paragraph--type--content pre,
.paragraph--type--content code {
  font-family: "Courier New", Courier, monospace;
  background: #f7f7f7;
  border-radius: 4px;
}
.paragraph--type--content pre {
  padding: 1em;
  overflow-x: auto;
}
.paragraph--type--content code {
  padding: 0.2em 0.4em;
}

/* Responsive typography */
@media (max-width: 768px) {
  .paragraph--type--content {
    font-size: 15px;
    padding: 15px;
  }
  .paragraph--type--content h1 { font-size: 1.8rem; }
  .paragraph--type--content h2 { font-size: 1.5rem; }
  .paragraph--type--content h3 { font-size: 1.2rem; }
}

