/**
 * @file
 * EDSbase : Feuille de styles dédiée à l'affichage des blocs RENDEZ-VOUS dans certains contenus.
 */

#rdvs > .inner {
  margin-bottom: 50px;
  padding: 40px 80px;
  background-color: #f3f2f1;
}
#rdvs > .inner > h3 {
  margin-bottom: 10px;
  font-family: 'soleil-extrabold';
  font-size: 2em;
}
article.node.rouge #rdvs > .inner > h3 {
  color: #eb5e71;
}
article.node.vert #rdvs > .inner > h3 {
  color: #6dbd8e;
}
article.node.orange #rdvs > .inner > h3 {
  color: #efbb7d;
}
#rdvs .rdv {
  margin-bottom: 30px;
  font-size: 1.25em;
}
#rdvs .rdv > h4 {
  margin-bottom: 5px;
  font-family: 'soleil-bold';
}
#rdvs .rdv > div {
  margin-bottom: 5px;
}
#rdvs .rdv .texte p,
#rdvs .rdv .texte ul {
  margin: 5px 0px;
}

/*--------- <= 900px ---------*/

@media only screen and (max-width: 900px) {

  #rdvs > .inner {
    padding: 40px;
  }

}

/*--------- <= 460px ---------*/

@media only screen and (max-width: 460px) {

  #rdvs > .inner {
    padding: 20px;
  }

}


