/* =========================================================
   MCM ARTICLE BREVET — STYLE GÉNÉRAL
   ========================================================= */


/* =========================================================
   01. VARIABLES
   ========================================================= */

.mcm-article-brevet {
  --mcm-blue: #18557a;
  --mcm-dark-blue: #003f66;
  --mcm-light-blue: #20b9d6;
  --mcm-cyan: #54c1df;
  --mcm-orange: #e65714;
  --mcm-text: #666666;
  --mcm-beige: #fffce5;
  --mcm-pale-blue: #e0f1f5;
  --mcm-hero-blue: #e7f7fc;

  width: 100%;
  color: var(--mcm-text);
}


/* =========================================================
   02. TYPOGRAPHIE GÉNÉRALE
   ========================================================= */

.mcm-article-brevet p {
  color: var(--mcm-text);
  line-height: 1.55;
}

.mcm-article-brevet h2 {
  color: var(--mcm-blue) !important;
  margin: 0 0 22px !important;
}

.mcm-article-brevet h3 {
  color: var(--mcm-light-blue) !important;
  margin: 0 0 16px !important;
}


/* =========================================================
   03. ESPACEMENT DES SECTIONS
   ========================================================= */

.mcm-article-brevet .mcm-article-section {
  margin: 0 auto 55px;
}

/* =========================================================
   CHECKLIST – CASES À COCHER
   ========================================================= */

.mcm-article-brevet .mcm-formule-contenu ul.mcm-checklist {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.mcm-article-brevet .mcm-formule-contenu ul.mcm-checklist li {
  position: relative;
  padding-left: 34px !important;
  margin: 8px 0 !important;
}

/* Carré vide */

.mcm-article-brevet .mcm-formule-contenu ul.mcm-checklist li::before {
  content: "" !important;

  position: absolute;
  left: 0;
  top: 5px;

  width: 17px;
  height: 17px;

  background: #ffffff;
  border: 2px solid #50c0df;
  border-radius: 3px;

  box-sizing: border-box;
}
/* =========================================================
   04. TITRES CENTRÉS AVEC TRAITS
   ========================================================= */

.mcm-article-brevet .mcm-titre-centre {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  text-align: center;
  letter-spacing: 2px;
}

.mcm-article-brevet .mcm-titre-centre::before,
.mcm-article-brevet .mcm-titre-centre::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #86827b;
}


/* =========================================================
   05. HERO
   Fond pleine largeur + contenu largeur utile
   ========================================================= */

.mcm-article-brevet .mcm-article-hero {
  position: relative;
  z-index: 1;

  width: 100%;
  max-width: 1400px;
  margin: 0 auto 45px;
  padding: 35px 40px;
  box-sizing: border-box;

  background: var(--mcm-hero-blue);
}

/* Fond pleine largeur */

.mcm-article-brevet .mcm-article-hero::before {
  content: "";
  position: absolute;
  z-index: -1;

  top: 0;
  bottom: 0;
  left: 50%;

  width: 100vw;
  transform: translateX(-50%);

  background: var(--mcm-hero-blue);
}

/* Texte + image */

.mcm-article-brevet .mcm-article-hero-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 45px;
  align-items: center;
  width: 100%;
}

/* Badge */

.mcm-article-brevet .mcm-article-badge {
  display: inline-block;

  margin-bottom: 14px;
  padding: 7px 16px;

  background: #0d537d;
  color: #ffffff !important;

  border-radius: 8px;

  font-size: 20px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
}

/* H1 */

.mcm-article-brevet .mcm-article-hero h1 {
  margin: 0 0 20px !important;

  color: var(--mcm-dark-blue) !important;

  font-size: 30px !important;
  line-height: 1.08 !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

/* Chapô */

.mcm-article-brevet .mcm-article-chapo {
  max-width: 760px;
  margin: 0 0 22px !important;

  color: var(--mcm-text) !important;

  font-size: 19px !important;
  line-height: 1.55 !important;
}

/* Image HERO */

.mcm-article-brevet .mcm-article-hero-image {
  text-align: center;
}

.mcm-article-brevet .mcm-article-hero-image img {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
}


/* =========================================================
   06. BOUTONS
   ========================================================= */

.mcm-article-brevet .mcm-article-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 20px;

  background: var(--mcm-blue);
  color: #ffffff !important;

  border-radius: 999px;

  text-decoration: none !important;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;

  transition: all .25s ease;
}

.mcm-article-brevet .mcm-article-btn-orange,
.mcm-article-brevet .mcm-article-hero .mcm-article-btn {
  background: var(--mcm-orange);
}

.mcm-article-brevet .mcm-article-btn:hover,
.mcm-article-brevet .mcm-article-hero .mcm-article-btn:hover {
  background: var(--mcm-cyan);
  color: #ffffff !important;
  transform: translateY(-2px);
}


/* =========================================================
   07. MOT DU COACH
   ========================================================= */

.mcm-article-brevet .mcm-article-coach {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 35px;
  align-items: center;
}

.mcm-article-brevet .mcm-article-coach-image {
  text-align: center;
}

.mcm-article-brevet .mcm-article-coach-image img {
  display: block;
  width: 160px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.mcm-article-brevet .mcm-article-quote {
  font-size: 18px;
  line-height: 1.35;
}

.mcm-article-brevet .mcm-article-signature {
  margin-bottom: 0;
  font-weight: 700;
}


/* =========================================================
   08. EN 30 SECONDES
   ========================================================= */

.mcm-article-brevet .mcm-article-resume {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 30px;
  align-items: center;
}

.mcm-article-brevet .mcm-article-resume-image {
  text-align: center;
}

.mcm-article-brevet .mcm-article-resume-image img {
  max-width: 150px;
  height: auto;
}

.mcm-article-brevet .mcm-article-resume-content {
  padding: 34px 42px;

  background: var(--mcm-pale-blue);
  border-radius: 30px;
}

.mcm-article-brevet .mcm-article-resume-content ol {
  margin: 0;
  padding-left: 28px;
}

.mcm-article-brevet .mcm-article-resume-content li {
  margin: 12px 0;

  color: var(--mcm-text) !important;

  font-size: 20px !important;
  line-height: 1.35 !important;
  font-weight: 700 !important;
}


/* =========================================================
   09. TABLEAUX
   ========================================================= */

.mcm-article-brevet .mcm-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 28px 0 35px;
}

.mcm-article-brevet .mcm-table {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto !important;

  border: 2px solid #0c70ad !important;
  border-collapse: collapse !important;
  border-spacing: 0 !important;

  background: #ffffff !important;
}

.mcm-article-brevet .mcm-table th {
  padding: 14px 18px !important;

  border: 2px solid #0c70ad !important;
  background: #ffffff !important;
  color: #2eb8d4 !important;

  font-size: 22px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  text-align: center !important;
  vertical-align: middle !important;
}

.mcm-article-brevet .mcm-table td {
  padding: 22px 24px !important;

  border: 2px solid #0c70ad !important;
  background: #ffffff !important;
  color: var(--mcm-text) !important;

  font-size: 18px !important;
  line-height: 1.4 !important;
  font-weight: 700 !important;
  vertical-align: top !important;
}

.mcm-article-brevet .mcm-table th:first-child,
.mcm-article-brevet .mcm-table td:first-child {
  width: 28%;
}

.mcm-article-brevet .mcm-table th:last-child,
.mcm-article-brevet .mcm-table td:last-child {
  width: 72%;
}


/* =========================================================
   10. BLOCS CONSEIL JAUNES
   ========================================================= */

.mcm-article-brevet .mcm-article-conseil {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  align-items: center;

  margin: 35px 0;
  padding: 28px 35px;

  background: var(--mcm-beige);
  border-radius: 30px;
}

.mcm-article-brevet .mcm-article-conseil-image {
  text-align: center;
}

.mcm-article-brevet .mcm-article-conseil-image img {
  max-width: 110px;
  height: auto;
}

.mcm-article-brevet .mcm-article-conseil-title {
  margin-bottom: 8px;

  color: var(--mcm-orange) !important;
  font-weight: 800;
}

.mcm-article-brevet .mcm-article-conseil-content p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   11. FORMULES / LISTES AVEC BARRE BLEUE
   ========================================================= */

.mcm-article-brevet .mcm-formules-brevet {
  width: 100%;
}

.mcm-article-brevet .mcm-formule-section {
  margin-bottom: 28px;
}

.mcm-article-brevet .mcm-formule-section h3 {
  margin: 0 0 18px !important;
  color: var(--mcm-light-blue) !important;
}

.mcm-article-brevet .mcm-formule-contenu {
  position: relative;
  margin-left: 75px;
  padding-left: 28px;
}

.mcm-article-brevet .mcm-formule-contenu::before {
  content: "";
  position: absolute;

  top: 3px;
  bottom: 3px;
  left: 0;

  width: 8px;
  background: var(--mcm-light-blue);
}

.mcm-article-brevet .mcm-formule-contenu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mcm-article-brevet .mcm-formule-contenu li {
  margin: 4px 0;
  padding: 0;

  color: var(--mcm-text) !important;

  font-size: 20px !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
}

.mcm-article-brevet .mcm-formule-contenu li::before {
  content: none !important;
}


/* =========================================================
   12. BLOCS FOND BEIGE
   ========================================================= */

.mcm-article-brevet .mcm-article-section-beige {
  padding: 35px;

  background: var(--mcm-beige);
  border-radius: 30px;
}


/* =========================================================
   13. CADEAU
   ========================================================= */

.mcm-article-brevet .mcm-article-cadeau {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 35px;
  align-items: center;
}

.mcm-article-brevet .mcm-article-cadeau-image {
  text-align: center;
}

.mcm-article-brevet .mcm-article-cadeau-image img {
  max-width: 100%;
  height: auto;
}


/* =========================================================
   14. FICHES CLÉ EN MAIN
   ========================================================= */

.mcm-article-brevet .mcm-article-fiches {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 40px;
  align-items: center;
}

.mcm-article-brevet .mcm-article-fiches-image {
  text-align: center;
}

.mcm-article-brevet .mcm-article-fiches-image img {
  max-width: 100%;
  height: auto;
}


/* =========================================================
   15. ERREURS FRÉQUENTES
   ========================================================= */

.mcm-article-brevet .mcm-erreurs-liste {
  margin: 30px 0 40px;
  padding: 0 !important;

  list-style: none !important;
}

.mcm-article-brevet .mcm-erreurs-liste li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;

  margin: 0 0 18px !important;
  padding: 0 !important;

  color: var(--mcm-text) !important;

  font-size: 20px !important;
  line-height: 1.4 !important;
  font-weight: 500 !important;
}

.mcm-article-brevet .mcm-erreurs-liste li > span {
  font-size: 25px !important;
  line-height: 1.2;
  text-align: center;
}


/* =========================================================
   16. FAQ
   ========================================================= */

.mcm-article-brevet .mcm-home-faq {
  max-width: 1400px;
  margin: 35px auto;
}

.mcm-article-brevet .mcm-home-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.mcm-article-brevet .mcm-home-faq-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mcm-article-brevet .mcm-home-faq-item {
  overflow: hidden;

  background: #ffffff;
  border: 1px solid #f1f1f1;
  border-radius: 12px;

  box-shadow: 0 4px 14px rgba(0,0,0,.04);
}

.mcm-article-brevet .mcm-home-faq-question {
  display: grid;
  grid-template-columns: 52px 1fr 30px;
  gap: 16px;
  align-items: center;

  width: 100%;
  padding: 18px 20px;

  border: none;
  background: #ffffff;
  color: #0c70ad;

  font-family: inherit;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  text-align: left;

  cursor: pointer;
}

.mcm-article-brevet .mcm-home-faq-question:hover {
  background: #fbfdfe;
}

.mcm-article-brevet .mcm-home-faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  background: #e6f5fa;
  border-radius: 50%;

  font-size: 18px;
}

.mcm-article-brevet .mcm-home-faq-arrow {
  color: #0c70ad;
  font-size: 28px;
  line-height: 1;
  text-align: center;
}

.mcm-article-brevet .mcm-home-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.mcm-article-brevet .mcm-home-faq-item.active .mcm-home-faq-answer {
  max-height: 1500px !important;
}

.mcm-article-brevet .mcm-home-faq-answer p {
  margin: 0 20px 20px 88px;
  padding: 20px 22px;

  background: #f3f3f3;
  border-radius: 12px;

  color: var(--mcm-text) !important;

  font-size: 17px !important;
  line-height: 1.55 !important;
}


/* =========================================================
   17. QUESTION DIRECTE
   ========================================================= */

.mcm-article-brevet .mcm-question-directe {
  margin: 60px auto;
}

.mcm-article-brevet .mcm-question-card {
  padding: 45px 40px;

  background: var(--mcm-hero-blue);
  border-radius: 35px;

  text-align: center;
}

.mcm-article-brevet .mcm-question-card h3 {
  color: #0c70ad !important;
  font-size: 28px !important;
}

.mcm-article-brevet .mcm-question-intro {
  max-width: 900px;
  margin: 0 auto 25px;

  font-size: 19px;
}

.mcm-article-brevet .mcm-question-cta {
  font-size: 21px;
  font-weight: 700;
}


/* =========================================================
   18. PRODUIT
   ========================================================= */

.mcm-article-brevet .mcm-article-produit {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: center;
}

.mcm-article-brevet .mcm-article-produit-image {
  text-align: center;
}

.mcm-article-brevet .mcm-article-produit-image img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.mcm-article-brevet .mcm-article-atouts {
  margin: 20px 0 25px;
  padding: 0;

  list-style: none;
}

.mcm-article-brevet .mcm-article-atouts li {
  margin-bottom: 7px;

  color: var(--mcm-orange);

  font-size: 20px;
}


/* =========================================================
   19. AUTEUR / AUTEURE
   ========================================================= */

.mcm-article-brevet .mcm-article-auteur {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 30px;
  align-items: center;
}

.mcm-article-brevet .mcm-article-auteur-image {
  text-align: center;
}

.mcm-article-brevet .mcm-article-auteur-image img {
  width: 130px;
  height: 130px;

  object-fit: cover;
  border-radius: 50%;
}

.mcm-article-brevet .mcm-article-auteur-nom {
  color: var(--mcm-blue) !important;

  font-size: 20px;
  font-weight: 800;
}


/* =========================================================
   20. VOIR AUSSI
   ========================================================= */

.mcm-article-brevet .mcm-article-voir-aussi {
  margin: 22px 0 0;
  padding-left: 28px !important;
}

.mcm-article-brevet .mcm-article-voir-aussi li {
  margin-bottom: 14px !important;

  color: var(--mcm-text) !important;

  font-size: 19px !important;
  line-height: 1.4 !important;
  font-weight: 700 !important;
}

.mcm-article-brevet .mcm-article-section:has(.mcm-article-voir-aussi) > p {
  font-size: 21px !important;
  line-height: 1.4 !important;
}


/* =========================================================
   21. MOBILE — RÈGLES GÉNÉRALES
   ========================================================= */

@media (max-width: 768px) {

  /* -------------------------------------------------------
     SECTIONS
     ------------------------------------------------------- */

  .mcm-article-brevet .mcm-article-section {
    margin-bottom: 38px;
  }


  /* -------------------------------------------------------
     TITRES CENTRÉS
     ------------------------------------------------------- */

  .mcm-article-brevet .mcm-titre-centre {
    gap: 10px;
    letter-spacing: 1px;
  }


  /* -------------------------------------------------------
     HERO MOBILE
     Corrige le décalage horizontal
     ------------------------------------------------------- */

  .mcm-article-brevet .mcm-article-hero {
    width: 100% !important;
    max-width: 100% !important;

    margin: 0 auto 38px !important;
    padding: 25px 20px !important;

    box-sizing: border-box !important;
  }

  .mcm-article-brevet .mcm-article-hero-grid {
    width: 100% !important;

    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .mcm-article-brevet .mcm-article-hero-content {
    width: 100%;
    min-width: 0;
  }

  .mcm-article-brevet .mcm-article-hero h1 {
    font-size: 25px !important;
    line-height: 1.08 !important;
  }

  .mcm-article-brevet .mcm-article-chapo {
    font-size: 17px !important;
    line-height: 1.45 !important;
  }

  .mcm-article-brevet .mcm-article-hero .mcm-article-btn {
    max-width: 100%;

    box-sizing: border-box;
    text-align: center;
  }

  .mcm-article-brevet .mcm-article-hero-image img {
    max-width: 300px !important;
    margin: 0 auto;
  }


  /* -------------------------------------------------------
     MOT DU COACH MOBILE
     Image → texte
     Le H2 reste au-dessus du bloc dans le HTML
     ------------------------------------------------------- */

  .mcm-article-brevet .mcm-article-coach {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    align-items: start !important;
  }

  .mcm-article-brevet .mcm-article-coach-image {
    width: 100%;
    margin: 0 auto 5px;

    text-align: center;
  }

  .mcm-article-brevet .mcm-article-coach-image img {
    width: 115px !important;
    max-width: 115px !important;
    height: auto;
    margin: 0 auto !important;
  }

  .mcm-article-brevet .mcm-article-coach-text {
    width: 100%;
  }

  .mcm-article-brevet .mcm-article-coach-text p {
    font-size: 17px !important;
    line-height: 1.55 !important;
    text-align: left;
  }

  .mcm-article-brevet .mcm-article-quote {
    font-size: 17px !important;
    line-height: 1.5 !important;
  }


  /* -------------------------------------------------------
     EN 30 SECONDES MOBILE
     ------------------------------------------------------- */

  .mcm-article-brevet .mcm-article-resume {
    grid-template-columns: 1fr;
  }

  .mcm-article-brevet .mcm-article-resume-image {
    display: none;
  }

  .mcm-article-brevet .mcm-article-resume-content {
    padding: 22px 24px;
  }

  .mcm-article-brevet .mcm-article-resume-content li {
    margin: 10px 0;

    font-size: 17px !important;
    line-height: 1.4 !important;
  }


  /* -------------------------------------------------------
     TABLEAUX MOBILE
     ------------------------------------------------------- */

  .mcm-article-brevet .mcm-table {
    width: 100%;
    min-width: 650px;
  }

  .mcm-article-brevet .mcm-table th,
  .mcm-article-brevet .mcm-table td {
    padding: 14px !important;
    font-size: 16px !important;
  }


  /* -------------------------------------------------------
     BLOCS CONSEIL JAUNES MOBILE
     Illustration → titre → texte
     ------------------------------------------------------- */

  .mcm-article-brevet .mcm-article-conseil {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;

    padding: 22px 20px !important;

    text-align: left;
  }

  .mcm-article-brevet .mcm-article-conseil-image {
    width: 100%;
    margin: 0 auto 4px;

    text-align: center;
  }

  .mcm-article-brevet .mcm-article-conseil-image img {
    display: block;
    max-width: 85px !important;
    height: auto;
    margin: 0 auto !important;
  }

  .mcm-article-brevet .mcm-article-conseil-content {
    width: 100%;
  }

  .mcm-article-brevet .mcm-article-conseil-title {
    margin: 0 0 8px !important;
    text-align: left;
  }


  /* -------------------------------------------------------
     FORMULES MOBILE
     ------------------------------------------------------- */

  .mcm-article-brevet .mcm-formule-contenu {
    margin-left: 15px;
    padding-left: 20px;
  }

  .mcm-article-brevet .mcm-formule-contenu::before {
    width: 6px;
  }

  .mcm-article-brevet .mcm-formule-contenu li {
    font-size: 17px !important;
  }


  /* -------------------------------------------------------
     CADEAU / FICHES / PRODUIT MOBILE
     ------------------------------------------------------- */

  .mcm-article-brevet .mcm-article-cadeau,
  .mcm-article-brevet .mcm-article-fiches,
  .mcm-article-brevet .mcm-article-produit {
    grid-template-columns: 1fr;
  }


  /* -------------------------------------------------------
     ERREURS FRÉQUENTES MOBILE
     ------------------------------------------------------- */

  .mcm-article-brevet .mcm-erreurs-liste li {
    grid-template-columns: 30px 1fr;
    gap: 10px;

    margin-bottom: 14px !important;

    font-size: 17px !important;
    line-height: 1.4 !important;
  }

  .mcm-article-brevet .mcm-erreurs-liste li > span {
    font-size: 21px !important;
  }


  /* -------------------------------------------------------
     FAQ MOBILE
     ------------------------------------------------------- */

  .mcm-article-brevet .mcm-home-faq-grid {
    grid-template-columns: 1fr;
  }

  .mcm-article-brevet .mcm-home-faq-question {
    grid-template-columns: 42px 1fr 24px;

    padding: 14px;

    font-size: 16px;
  }

  .mcm-article-brevet .mcm-home-faq-icon {
    width: 34px;
    height: 34px;

    font-size: 14px;
  }

  .mcm-article-brevet .mcm-home-faq-answer p {
    margin: 0 14px 14px;
    padding: 16px;

    font-size: 16px !important;
    line-height: 1.5 !important;
  }


  /* -------------------------------------------------------
     QUESTION DIRECTE MOBILE
     ------------------------------------------------------- */

  .mcm-article-brevet .mcm-question-card {
    padding: 32px 20px;
  }

  .mcm-article-brevet .mcm-question-card h3 {
    font-size: 23px !important;
  }


  /* -------------------------------------------------------
     AUTEUR / AUTEURE MOBILE
     Photo → nom → texte
     ------------------------------------------------------- */

  .mcm-article-brevet .mcm-article-auteur {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    align-items: start !important;
  }

  .mcm-article-brevet .mcm-article-auteur-image {
    width: 100%;
    margin: 0 auto 4px;

    text-align: center;
  }

  .mcm-article-brevet .mcm-article-auteur-image img {
    display: block;

    width: 100px !important;
    height: 100px !important;
    margin: 0 auto !important;

    object-fit: cover;
    border-radius: 50%;
  }

  .mcm-article-brevet .mcm-article-auteur-content {
    width: 100%;
  }

  .mcm-article-brevet .mcm-article-auteur-nom {
    margin-top: 0 !important;
  }


  /* -------------------------------------------------------
     VOIR AUSSI MOBILE
     ------------------------------------------------------- */

  .mcm-article-brevet .mcm-article-voir-aussi li {
    margin-bottom: 12px !important;
    font-size: 17px !important;
  }

}
