  .artigo-conteudo {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
  }

  /* Cabeçalhos dentro do artigo */
  .artigo-conteudo h2 {
    border-bottom: 2px solid #f0f4f8;
    padding-bottom: 8px;
    margin-top: 40px;
    font-weight: bold;
  }

  .artigo-conteudo h3 {
    color: #2c5282;
    margin-top: 30px;
    font-weight: bold;
  }

  /* Parágrafos e Links */
  .artigo-conteudo p {
    margin-bottom: 1.5rem;
  }

  .artigo-conteudo a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
  }

  .artigo-conteudo a:hover {
    text-decoration: underline;
  }

  /* Imagens e Legendas */
  .artigo-conteudo figure {
    margin: 25px 0;
    text-align: center;
  }

  /* Classe para imagens grandes */
  .artigo-conteudo .img-art {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto;
  }

  /* Classe para imagens pequenas do passo-a-passo */
  .artigo-conteudo .img-art-small {
    max-width: 200px !important;
    height: auto !important;
    display: block;
    margin: 15px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
  }

  .artigo-conteudo figcaption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    font-style: italic;
  }

  /* Listas */
  .artigo-conteudo .ul-edit, 
  .artigo-conteudo ol {
    background-color: #f8fafc;
    padding: 20px 20px 20px 40px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    list-style-position: outside;
  }

  .artigo-conteudo li {
    margin-bottom: 10px;
  }

  /* Responsividade */
  @media (max-width: 600px) {
    .artigo-conteudo {
      padding: 15px;
    }
    .artigo-conteudo h2 {
      font-size: 1.5rem;
    }
  }
