/* pastille date */
.pgut-events__date-short{
 background-color:#000000;
  color:#ffffff;
 border-radius: 50%;
 overflow: hidden;
 width: 64px;
 height: 64px;
}
@media (min-width: 1440px){
  .pgut-events__date-short{
    width: 94px;
    height: 94px;
  }
}

.pgut-events__date-short__inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position:relative;
  height: 100%;
}

.pgut-events__date-short__day{
  font-size: clamp(1.50rem, 0.793rem + 1.2717vw, 1.9375rem);
  font-weight: 600;
}

.pgut-events__date-short__month{
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
}

/* filtres */

.pgut-events__filters{
  margin-bottom: 30px;
  display: flex;
  flex-direction:row ;
  flex-wrap: wrap
}

/* filtres boutons */
.pgut-events__filters a.pgut-events__button-filter{

}
.pgut-events__filters a.pgut-events__button-filter.pgut-events__button-filter__selected{
  font-weight: bold;
}

/* filtres select */
.pgut-events__filters__select{

}
.pgut-events__filters__select__title{

}

/* liste des termes */
.pgut-events__terms
{
  display: flex;
  flex-direction: row;
  gap:10px
}
.pgut-events__term
{
  display: inline-flex;
  font-size: clamp(0.6875rem, 0.5629rem + 0.3468vw, 0.875rem);
  padding:5px 10px;
  background: #fff;
  border-radius: 12px;
}

/* liste des date */
.pgut-events__grid__dates{
    max-width: 100%;
    overflow: auto;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.pgut-events__grid__dates__list{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 15px;
}

.pgut-events__grid__dates__list__year{
  font-size: rem-calc(16px);
  color:#000000;
  font-weight: 600;
}

.pgut-events__grid__dates__list__month{
  font-size: rem-calc(16px);
  color:#000000;
  text-decoration: none;

  &:hover, &:active, &:focus{
    text-decoration: underline;
  }
}

/* Listing */
.pgut-events__list{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 15px;
}

.pgut-events__list__month{
  display: flex;
  flex-direction: column;
  gap:0;
  flex: 1;
  margin-bottom: 10px;
}
.pgut-events__list__month:last-child{
  margin-bottom: 0;
}
@media (min-width: 1024px){
  .pgut-events__list__month{
    flex-direction: row;
    gap:15px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1440px){
  .pgut-events__list__month{
    gap:50px;
  }
}

.pgut-events__list__month__label{
  width: 150px;
  font-size: 1.4em;
  font-weight: bold;
}
.pgut-events__list__month__content{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap:10px;
}

.pgut-events__list__day{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap:5px;
  background: lightgrey;
  border-radius: 20px;
  padding:5px;
}
@media (min-width: 1440px){
  .pgut-events__list__day{
    gap:45px;
    padding:15px;
  }
}

.pgut-events__list__day__content{
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 5px;
  padding: 10px;
}

.pgut-events__list__post{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap:5px;
}

/* card listing */

.pgut-events__list__post{
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-decoration: none;
  font-size: clamp(0.75rem, 0.5007rem + 0.6936vw, 1.125rem);

  .pgut-events__list__post__title
  {
    font-size: 1.1em;
    font-weight: bold;
  }

  .pgut-events__list__post__date-text,
  .pgut-events__list__post__timeslot
  {
    font-size: 0.9em;
  }
}

/* card event - grille */

.pgut-card-event{
  position: relative;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1440px){
  .pgut-card-event{
    padding-top: 35px;
  }
}

.pgut-card-event .pgut-events__date-short{
  position: absolute;
  top: 0;
  left:10px;
}
@media (min-width: 1440px){
  .pgut-card-event .pgut-events__date-short{
    width: 70px;
    height: 70px;
    left:20px;
  }
}

.pgut-card-event__inner{
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 10px;
  background-color: lightgrey;
  padding: 40px 15px 15px 15px;
  flex: 1;
}
@media (min-width: 1440px){
  .pgut-card-event__inner{
    gap: 15px;
    border-radius: 20px;
    padding: 50px 30px 30px 30px;
  }
}

/*** single meta block ***/
.powergut-events-meta {
  display: flex;
  flex-direction: column;
  gap:7px;
}
@media (min-width: 1440px){
  .powergut-events-meta {
    gap:15px;
  }
}

.powergut-events-meta__container {
  align-items: flex-start !important;
}

.powergut-events-meta__content {
  display: flex;
  flex-direction: row;
  gap:5px;
}

.powergut-events-meta__before{

}
.powergut-events-meta__value{

}
.powergut-events-meta__after{

}