/*!*******************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[15].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[15].oneOf[10].use[3]!./styles/news-prose.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************/
/*
 * Blog article Markdown typography (from divstudio news module, adapted for OptRouter).
 */

.news-prose {
  color: rgb(51 65 85);
  font-size: 1.0625rem;
  line-height: 1.9;
  letter-spacing: 0.005em;
  word-spacing: 0.02em;
  text-wrap: pretty;
}

.news-prose > * + * {
  margin-top: 1.4em;
}

.news-prose p {
  color: rgb(51 65 85);
}

.news-prose h2 {
  margin-top: 3em;
  margin-bottom: 0.8em;
  font-size: 1.75rem;
  font-weight: 700;
  color: rgb(15 23 42);
  letter-spacing: -0.015em;
  line-height: 1.35;
  scroll-margin-top: 6rem;
}

@media (min-width: 640px) {
  .news-prose h2 {
    font-size: 2rem;
  }
}

.news-prose h3 {
  margin-top: 2.25em;
  margin-bottom: 0.6em;
  font-size: 1.3rem;
  font-weight: 600;
  color: rgb(15 23 42);
  line-height: 1.4;
  scroll-margin-top: 6rem;
}

.news-prose a {
  color: var(--color-brand, rgb(79 70 229));
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news-prose strong {
  color: rgb(15 23 42);
  font-weight: 600;
}

.news-prose ul {
  list-style: none;
  padding-left: 0;
}

.news-prose ul > li {
  position: relative;
  padding-left: 1.5em;
}

.news-prose ul > li::before {
  content: "";
  position: absolute;
  left: 0.35em;
  top: 0.85em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--color-brand, rgb(129 140 248));
}

.news-prose ol {
  list-style: decimal;
  padding-left: 1.5em;
}

.news-prose blockquote {
  margin: 2em 0;
  padding: 1em 1.5em;
  border-left: 3px solid var(--color-brand, rgb(99 102 241));
  background: rgba(238, 242, 255, 0.5);
  border-radius: 0 0.5rem 0.5rem 0;
}

.news-prose code {
  font-family: ui-monospace, monospace;
  font-size: 0.9em;
  background: rgb(238 242 255);
  color: rgb(67 56 202);
  padding: 0.15em 0.45em;
  border-radius: 0.3rem;
}

.news-prose pre {
  background: rgb(15 23 42);
  color: rgb(226 232 240);
  padding: 1.2em 1.4em;
  border-radius: 0.75rem;
  overflow-x: auto;
  margin: 2em 0;
}

.news-prose pre code {
  background: transparent;
  color: inherit;
  padding: 0;
}

.news-prose table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.95rem;
  border: 1px solid rgb(226 232 240);
  border-radius: 0.75rem;
  overflow: hidden;
  margin: 2em 0;
}

.news-prose th,
.news-prose td {
  padding: 0.75em 1em;
  text-align: left;
  border-bottom: 1px solid rgb(241 245 249);
}

.news-prose hr {
  border: 0;
  height: 1px;
  background: rgb(226 232 240);
  margin: 3em 0;
}

.news-prose img {
  border-radius: 0.75rem;
  margin: 2em auto;
  max-width: 100%;
  height: auto;
}

