/* [project]/src/app/blog/blog.css [app-client] (css) */
.blog-content {
  color: #374151;
  line-height: 1.8;
}

.blog-content h2 {
  color: #1a1a1a;
  text-shadow: 0 0 1px #ffbf00;
  border-bottom: 4px solid #ffbf00;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  font-size: 2.25rem;
  font-weight: 900;
}

.blog-content h3 {
  color: #1a1a1a;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
  font-weight: 800;
}

.blog-content h4 {
  color: #1a1a1a;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.blog-content p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.blog-content strong {
  color: #1a1a1a;
  font-weight: 700;
}

.blog-content ul, .blog-content ol {
  margin: 2rem 0;
  padding-left: 0;
}

.blog-content li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  font-size: 1.125rem;
  line-height: 1.75;
  position: relative;
}

.blog-content ul li:before {
  content: "✓";
  color: #ffbf00;
  font-size: 1.25rem;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.blog-content ol {
  counter-reset: item;
}

.blog-content ol li {
  counter-increment: item;
}

.blog-content ol li:before {
  content: counter(item) ".";
  color: #ffbf00;
  font-size: 1.25rem;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.blog-content a {
  color: #ffbf00;
  font-weight: 600;
  text-decoration: underline;
  transition: color .2s;
}

.blog-content a:hover {
  color: #d4a000;
}

.blog-content blockquote {
  color: #1a1a1a;
  background: linear-gradient(to right, #fffbeb, #0000);
  border-left: 6px solid #ffbf00;
  border-radius: 0 1rem 1rem 0;
  margin: 2.5rem 0;
  padding: 1.5rem 2rem;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 600;
}

.blog-content img {
  border-radius: 1rem;
  margin: 2.5rem 0;
  box-shadow: 0 10px 30px #0000001a;
}

.blog-content hr {
  opacity: .3;
  border: none;
  border-top: 2px solid #ffbf00;
  margin: 3rem 0;
}

/*# sourceMappingURL=src_app_blog_blog_70824f33.css.map*/