/* Réinitialisation de la marge et de la padding */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  color: #333;
}

/* Shortcode news */
.container-news {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.card.news {
  margin: 20px 0;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 8px;
}

.header-news {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.date-news {
  background-color: #333;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  font-size: 12px;
  margin-right: 20px;
}

.title-news {
  font-size: 18px;
  margin: 0;
}

.excerpt-news {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.button-news {
  text-align: right;
}

.button-news a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.line-button-news {
  border-top: 1px solid #ccc;
  margin-top: 10px;
}