.concerts {
  display: flex;
  flex-wrap: wrap;
  min-width: 320px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  padding-left: 32px;
  padding-right: 32px;
}

.concerts-list h2 {
  font-family: "rift-soft", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 32px;
  margin-top: 48px;
  margin-bottom: 48px;
  min-width: 320px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 44px;
  padding-right: 32px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #323232;
  padding-bottom: 32px;
  text-align: center;
  justify-content: center;
}

a.all-dates {
  display: flex;
  align-items: center;
  min-width: 320px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 44px;
  padding-right: 32px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
  margin-top: 24px;
}

a.all-dates span:hover {
  background: rgb(204, 106, 128);
  background: linear-gradient(
    90deg,
    rgba(204, 106, 128, 1) 0%,
    rgba(142, 78, 152, 1) 100%
  );
}

a.all-dates span {
  display: inline-block;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 48px;
  padding-right: 48px;
  border-radius: 28px;
  background: rgb(195, 78, 104);
  background: linear-gradient(
    90deg,
    rgba(195, 78, 104, 1) 0%,
    rgba(118, 60, 127, 1) 100%
  );
  color: #ffffff;
}

.concerts-list {
  margin-bottom: 48px;
}

.concerts-list h2 i {
  color: #cc6a80;
  margin-right: 8px;
  font-size: 24px;
}

html body main section.concerts-list div.concerts div.concert-card:hover {
  background-color: #2b2b2b;
}
.concerts .concert-card a {
  display: flex;
  width: 100%;
}

.concerts .concert-card {
  width: 30%;
  padding: 24px;
  display: flex;
  align-items: center;
  font-size: 18px;
  margin-bottom: 24px;
  background-color: #141414;
  min-width: 256px;
}

.concerts a .concert-card {
  color: #ffffff;
}

.concerts div .date h4 {
  width: 100%;
  font-weight: 300;
  text-align: center;
  font-size: 20px;
  color: #cecece;
}

.concerts div .date h5 {
  width: 100%;
  font-weight: 400;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  margin-top: 8px;
  text-transform: uppercase;
}

.concerts .date {
  margin-right: 12px;
  min-width: 60px;
}

.concerts a .ville {
  width: 100%;
  font-weight: 300;
  font-size: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 24px;
  color: #ffffff;
}

.concerts .infos {
  width: 100%;
  font-weight: 500;
  font-size: 22px;
  color: #cecece;
  margin-top: 4px;
  color: #cc6a80;
  font-size: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 24px;
}

.concerts .infos a i {
  color: #ffffff;
  font-size: 14px;
}

.concerts .ticket {
  border-left: 3px solid #cc6a80;
  padding-right: 12px;
  padding-left: 12px;
}

.concerts .infos a {
  color: #cc6a80;
  font-weight: 600;
}

/* Media Queries */
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */

/* Mobile */
/* ------------------------------------------------------------------------ */

@media only screen and (min-width: 0px) and (max-width: 480px) {
  /* General */
  /* ------------------------------------------------------------------------ */

  .concerts {
    justify-content: space-between;
  }

  .concerts .concert-card {
    width: 100%;
  }

  .concerts .date {
    margin-right: 12px;
    min-width: 40px;
  }

  .concerts .concert-card {
    font-size: 16px;
  }

  .concerts a .ville {
    font-size: 18px;
    height: 22px;
  }

  .concerts .infos {
    font-size: 18px;
    height: 22px;
  }

  .concerts div .date h4 {
    font-size: 16px;
  }

  .concerts div .date h5 {
    font-size: 14px;
  }

  .all-dates {
    text-align: center;
  }

  .concerts {
    padding-left: 0px;
    padding-right: 0px;
  }
}

/* Tablette Portrait */
/* ------------------------------------------------------------------------ */

@media only screen and (min-width: 480px) and (max-width: 800px) {
  /* General */
  /* ------------------------------------------------------------------------ */
  .concerts {
    justify-content: space-between;
  }

  .concerts .concert-card {
    width: 100%;
  }
}

/* Tablette paysage */
/* ------------------------------------------------------------------------ */
@media only screen and (min-width: 800px) and (max-width: 960px) {
  /* General */
  /* ------------------------------------------------------------------------ */

  .concerts .concert-card {
    width: 48%;
    padding: 24px;
    font-size: 18px;
    min-width: 336px;
  }
}

/* Petit écran */
/* ------------------------------------------------------------------------ */
@media only screen and (min-width: 961px) and (max-width: 1279px) {
  /* General */
  /* ------------------------------------------------------------------------ */
  .concerts {
    justify-content: space-between;
  }

  .concerts .date {
    margin-right: 12px;
    min-width: 60px;
  }

  .concerts .concert-card {
    width: 48%;
    padding: 24px;
    font-size: 18px;
    min-width: 416px;
  }
}
