/* line 4, article.scss */
:root {
  --accent: #ff6f20;
  --accent-hover: #e05a0e;
  --toc-color: #1a7b8c;
  --highlight-bg: #55a6b4;
  --text-primary: #1e1e1e;
  --text-muted: rgba(0, 0, 0, 0.5); }

/* line 27, article.scss */
.article-custom p {
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 32px;
  margin: 0 0 20px 0 !important; }
  @media (max-width: 768px) {
    /* line 27, article.scss */
    .article-custom p {
      font-size: 18px;
      line-height: 28px; } }
/* line 37, article.scss */
.article-custom h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: normal;
  margin: 40px 0 20px 0 !important; }
  @media (max-width: 768px) {
    /* line 37, article.scss */
    .article-custom h2 {
      font-size: 24px; } }
/* line 47, article.scss */
.article-custom h3 {
  font-size: 26px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: normal;
  margin: 30px 0 15px 0 !important; }
  @media (max-width: 768px) {
    /* line 47, article.scss */
    .article-custom h3 {
      font-size: 20px; } }
/* line 58, article.scss */
.article-custom h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--toc-color);
  line-height: 32px;
  margin: 20px 0 4px 0 !important; }
  @media (max-width: 768px) {
    /* line 58, article.scss */
    .article-custom h4 {
      font-size: 18px;
      line-height: 28px; } }
/* line 69, article.scss */
.article-custom strong {
  font-weight: 600;
  color: inherit; }
/* line 72, article.scss */
.article-custom b {
  font-weight: 600;
  color: var(--toc-color); }
/* line 73, article.scss */
.article-custom .accent {
  color: var(--toc-color); }
/* line 74, article.scss */
.article-custom a {
  color: var(--accent);
  text-decoration: none; }
  /* line 77, article.scss */
  .article-custom a:hover {
    text-decoration: underline; }
/* line 80, article.scss */
.article-custom img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 20px 0; }
/* line 95, article.scss */
.article-custom ul {
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 32px;
  margin: 0 0 20px 0 !important;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px; }
  @media (max-width: 768px) {
    /* line 95, article.scss */
    .article-custom ul {
      font-size: 18px;
      line-height: 28px; } }
  /* line 109, article.scss */
  .article-custom ul li {
    font-size: 22px;
    line-height: 32px;
    padding-left: 30px;
    position: relative; }
    @media (max-width: 768px) {
      /* line 109, article.scss */
      .article-custom ul li {
        font-size: 18px;
        line-height: 28px; } }
    /* line 118, article.scss */
    .article-custom ul li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 7px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      border: 2px solid var(--toc-color);
      background: transparent; }
/* line 132, article.scss */
.article-custom ol {
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 32px;
  margin: 0 0 20px 0 !important;
  padding-left: 30px;
  list-style: decimal;
  display: flex;
  flex-direction: column;
  gap: 10px; }
  @media (max-width: 768px) {
    /* line 132, article.scss */
    .article-custom ol {
      font-size: 18px;
      line-height: 28px; } }
  /* line 147, article.scss */
  .article-custom ol li::marker {
    font-weight: 600;
    color: var(--toc-color);
    font-size: 22px; }
    @media (max-width: 768px) {
      /* line 147, article.scss */
      .article-custom ol li::marker {
        font-size: 18px; } }
  /* line 155, article.scss */
  .article-custom ol li {
    font-size: 22px;
    line-height: 32px; }
    @media (max-width: 768px) {
      /* line 155, article.scss */
      .article-custom ol li {
        font-size: 18px;
        line-height: 28px; } }
    /* line 162, article.scss */
    .article-custom ol li ul {
      margin: 8px 0 0 0 !important;
      padding-left: 0; }
/* line 172, article.scss */
.article-custom nav.article-toc {
  background-color: #f4f4f2;
  border-radius: 20px;
  padding: 40px;
  margin: 20px 0; }
  /* line 178, article.scss */
  .article-custom nav.article-toc h2 {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 30px 0 !important; }
  /* line 185, article.scss */
  .article-custom nav.article-toc .article-toc__columns {
    display: flex;
    gap: 40px; }
    @media (max-width: 768px) {
      /* line 185, article.scss */
      .article-custom nav.article-toc .article-toc__columns {
        flex-direction: column;
        gap: 20px; } }
  /* line 192, article.scss */
  .article-custom nav.article-toc ul {
    flex: 1;
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 20px; }
    /* line 202, article.scss */
    .article-custom nav.article-toc ul li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 20px;
      font-weight: 500;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.4;
      padding-left: 0; }
      /* line 214, article.scss */
      .article-custom nav.article-toc ul li::before {
        display: none; }
      /* line 216, article.scss */
      .article-custom nav.article-toc ul li span {
        font-weight: 700;
        color: var(--toc-color);
        min-width: 24px;
        flex-shrink: 0; }
      /* line 223, article.scss */
      .article-custom nav.article-toc ul li a {
        color: var(--text-muted);
        text-decoration: none; }
        /* line 226, article.scss */
        .article-custom nav.article-toc ul li a:hover {
          color: var(--toc-color);
          text-decoration: underline; }
/* line 235, article.scss */
.article-custom blockquote.article-highlight {
  background-color: var(--highlight-bg);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 20px 0; }
  /* line 241, article.scss */
  .article-custom blockquote.article-highlight p {
    font-weight: 600;
    font-size: 26px;
    line-height: 32px;
    color: #ffffff;
    margin: 0 !important; }
    @media (max-width: 768px) {
      /* line 241, article.scss */
      .article-custom blockquote.article-highlight p {
        font-size: 20px;
        line-height: 28px; } }
/* line 255, article.scss */
.article-custom figure.article-image {
  margin: 20px 0;
  padding: 0; }
  /* line 259, article.scss */
  .article-custom figure.article-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 0 0 10px 0; }
  /* line 266, article.scss */
  .article-custom figure.article-image figcaption {
    font-size: 16px;
    font-weight: 400;
    color: #999999;
    line-height: 1.5;
    text-align: center; }

/* line 280, article.scss */
.article-cta {
  display: flex;
  justify-content: center;
  margin: 20px 0; }
  /* line 285, article.scss */
  .article-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 40px;
    background-color: var(--accent);
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #ffffff;
    font-size: 24px;
    line-height: normal;
    white-space: nowrap;
    text-decoration: none; }
    /* line 302, article.scss */
    .article-cta__button:hover {
      background-color: var(--accent-hover);
      color: #ffffff;
      text-decoration: none; }
    @media (max-width: 768px) {
      /* line 285, article.scss */
      .article-cta__button {
        width: 100%;
        justify-content: center;
        font-size: 18px;
        padding: 16px 24px; } }
