/**
                        * 2008 - 2020 (c) Prestablog
                        *
                        * MODULE PrestaBlog
                        *
                        * @author    Prestablog
                        * @copyright Copyright (c) permanent, Prestablog
                        * @license   Commercial
*/
/* ================================
   ARTICLE SEO - AVECTONVELO
   ================================ */

.article-seo {
  font-family: "Open Sans", Arial, sans-serif;
  color: #2b2b2b;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 15px;
  line-height: 1.7;
}

/* TITRE PRINCIPAL */
.article-seo h1 {
  font-size: 32px;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* TITRES H2 */
.article-seo h2 {
  font-size: 22px;
  font-weight: 600;
  color: #1e3a5f;
  margin-top: 35px;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* PARAGRAPHES */
.article-seo p {
  font-size: 16px;
  margin-bottom: 12px;
}

/* INTRODUCTION */
.article-seo .article-introduction p {
  font-size: 17px;
  color: #444;
}

/* LIENS */
.article-seo a {
  color: #1e73be;
  text-decoration: none;
}

.article-seo a:hover {
  text-decoration: underline;
}

/* FAQ */
.article-seo h2 + p strong {
  display: inline-block;
  margin-bottom: 5px;
  color: #1e3a5f;
}

/* CTA */
.article-seo .article-cta {
  margin-top: 40px;
  text-align: center;
}

.article-seo .article-cta .btn {
  background-color: #1e73be;
  color: #ffffff;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  display: inline-block;
}

.article-seo .article-cta .btn:hover {
  background-color: #155a93;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .article-seo h1 {
    font-size: 26px;
  }

  .article-seo h2 {
    font-size: 20px;
  }

  .article-seo p {
    font-size: 15px;
  }
}

                    