/* Event Info */

.eventinfo {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: 0 0 16px 16px;
}

.eventinfosmall {
  padding: 0 0 16px 0;
}

.eventinfo p {
  margin: 0;
}

.border {
  border-bottom: 2px solid #d20a5e;
}

/* Gros events */

.eventgridBig {
  width: 100%;
  height: 328px;
  display: flex;
  flex-direction: row;
  margin-bottom: 8px;
}

.eventBigimg {
  width: 100%;
}

.eventBigimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eventgridBig p {
  margin: 0;
}

/* Petits events */

.eventgrid {
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: row;
  margin-bottom: 8px;
}

.eventSmallimg {
  width: 50%;
}

.eventSmallimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nopic {
  height:auto;
}

.nopad {
  padding-left:0;
}


/* Taille mobile */
@media only screen and (max-width: 800px) {
  .eventgrid,
  .eventgridBig {
    height: auto;
    flex-direction: column;
    border-bottom: 2px solid #d20a5e;
  }

  .eventgrid img {
    padding-bottom: 8px;
  }

  .eventBigimg,
  .eventSmallimg {
    width: 100%;
    height: 240px;
    object-fit: cover;
  }

  .eventinfo {
    padding-left: 0;
    padding: 8px 0;
  }

  .border {
    border: none;
  }
}
