/*
 * NPC Blog Formatting
 * Version: 1.0.3
 *
 * Job:
 * - Controls blog article typography and spacing only.
 * - Link colors are NOT controlled here.
 *
 * Scope:
 * Only styles elements inside .npc-blog-content.
 *
 * Elementor usage:
 * Add this class to the Blog Article Template Post Content widget:
 * Advanced > CSS Classes > npc-blog-content
 */

.npc-blog-content,
.npc-blog-content * {
  box-sizing: border-box;
}

/* Main blog article wrapper */
.npc-blog-content {
  font-family: Georgia, serif;
  color: #111111;
}

/* General text */
.npc-blog-content p,
.npc-blog-content li,
.npc-blog-content td,
.npc-blog-content th,
.npc-blog-content blockquote {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5em;
  color: #111111;
}

/* Paragraph spacing */
.npc-blog-content p {
  margin: 0 0 1.15em;
}

.npc-blog-content p:last-child {
  margin-bottom: 0;
}

/* H1 / H2 headings */
.npc-blog-content h1,
.npc-blog-content h2 {
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1em;
  color: #E30613;
  margin: 1.35em 0 0.55em;
}

/* H3 and smaller subheadings */
.npc-blog-content h3,
.npc-blog-content h4,
.npc-blog-content h5,
.npc-blog-content h6 {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2em;
  color: #E30613;
  margin: 1.25em 0 0.5em;
}

/* Lists */
.npc-blog-content ul,
.npc-blog-content ol {
  margin: 0 0 1.15em 1.25em;
  padding-left: 1.1em;
}

.npc-blog-content li {
  margin-bottom: 0.45em;
}

/* Images inside article content */
.npc-blog-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.25em auto;
}

/* Tables inside article content */
.npc-blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25em 0;
}

.npc-blog-content th,
.npc-blog-content td {
  border: 1px solid #dddddd;
  padding: 10px 12px;
  text-align: left;
}

/* Tablet typography */
@media (max-width: 1024px) {
  .npc-blog-content p,
  .npc-blog-content li,
  .npc-blog-content td,
  .npc-blog-content th,
  .npc-blog-content blockquote {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5em;
  }

  .npc-blog-content h1,
  .npc-blog-content h2 {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.1em;
  }

  .npc-blog-content h3,
  .npc-blog-content h4,
  .npc-blog-content h5,
  .npc-blog-content h6 {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.2em;
  }
}

/* Mobile typography */
@media (max-width: 767px) {
  .npc-blog-content p,
  .npc-blog-content li,
  .npc-blog-content td,
  .npc-blog-content th,
  .npc-blog-content blockquote {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
  }

  .npc-blog-content h1,
  .npc-blog-content h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1em;
  }

  .npc-blog-content h3,
  .npc-blog-content h4,
  .npc-blog-content h5,
  .npc-blog-content h6 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2em;
  }
}