/* Blog content classes - shared across all blog posts */

.blog-para {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: rgb(51 65 85);
  margin-bottom: 1.5rem;
}
.dark .blog-para {
  color: rgb(203 213 225);
}

.blog-section {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: rgb(15 23 42);
  margin-bottom: 1.5rem;
}
.dark .blog-section {
  color: rgb(241 245 249);
}

.blog-subsection {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
  color: rgb(15 23 42);
  margin-bottom: 1.5rem;
  margin-top: 2.5rem;
}
.dark .blog-subsection {
  color: rgb(241 245 249);
}

.vignette {
  background-color: rgb(241 245 249);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-left-width: 4px;
  border-left-color: rgb(99 102 241);
}
.dark .vignette {
  background-color: rgb(30 41 59);
  border-left-color: rgb(129 140 248);
}

.vignette-text {
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: rgb(15 23 42);
  margin-bottom: 1rem;
}
.dark .vignette-text {
  color: rgb(241 245 249);
}

.vignette-text-cont {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: rgb(51 65 85);
}
.dark .vignette-text-cont {
  color: rgb(203 213 225);
}

.blog-quote {
  /* Reserved for future use - blockquote styling */
  display: block;
}

.blog-pullquote {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
  color: rgb(15 23 42);
  font-style: italic;
  text-align: center;
  padding: 2rem;
  margin: 2rem 0;
  background-color: rgb(241 245 249);
  border-left: 4px solid rgb(99 102 241);
  border-right: 4px solid rgb(99 102 241);
  border-radius: 0.5rem;
  position: relative;
}
.dark .blog-pullquote {
  color: rgb(241 245 249);
  background-color: rgb(30 41 59);
  border-left-color: rgb(129 140 248);
  border-right-color: rgb(129 140 248);
}
.blog-pullquote::before {
  content: '"';
  font-size: 4rem;
  line-height: 1;
  color: rgb(99 102 241);
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  opacity: 0.3;
  font-family: Georgia, serif;
}
.dark .blog-pullquote::before {
  color: rgb(129 140 248);
}

/* Footer classes */
.blog-footer-section {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgb(226 232 240);
}
.dark .blog-footer-section {
  border-top-color: rgb(51 65 85);
}

.blog-footer-cta {
  background-color: rgb(241 245 249);
  border-radius: 0.5rem;
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .blog-footer-cta {
    padding: 2rem;
  }
}
.dark .blog-footer-cta {
  background-color: rgb(30 41 59);
}

.blog-footer-text {
  color: rgb(51 65 85);
  line-height: 1.75rem;
  font-style: italic;
}
.dark .blog-footer-text {
  color: rgb(203 213 225);
}

.blog-footer-nav {
  background-color: rgb(238 242 255);
  border-top: 1px solid rgb(199 210 254);
  margin-top: 4rem;
}
.dark .blog-footer-nav {
  background-color: rgb(23 37 84);
  border-top-color: rgb(30 58 138);
}

.blog-btn-group {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 640px) {
  .blog-btn-group {
    flex-direction: row;
  }
}

.blog-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  color: white;
  background-color: rgb(99 102 241);
  transition: background-color 0.2s;
}
.blog-btn-primary:hover {
  background-color: rgb(79 70 229);
}
.dark .blog-btn-primary {
  background-color: rgb(79 70 229);
}
.dark .blog-btn-primary:hover {
  background-color: rgb(67 56 202);
}

.blog-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  color: white;
  background-color: rgb(22 163 74);
  transition: background-color 0.2s;
}
.blog-btn-secondary:hover {
  background-color: rgb(21 128 61);
}
.dark .blog-btn-secondary {
  background-color: rgb(21 128 61);
}
.dark .blog-btn-secondary:hover {
  background-color: rgb(20 83 45);
}
