.pc-widget{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  padding:22px;
}
.pc-widget__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.pc-widget__title{
  margin:0;
  font-size:34px;
  line-height:1.1;
}
.pc-tarifs{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  padding:10px 18px;
  border-radius:999px;
  background:#5b463c;
  color:#fff;
  font-weight:600;
}
.pc-grid{
  display:grid;
  column-gap:36px;
  row-gap:14px;
  grid-template-columns: repeat(var(--pc-cols, 3), 1fr);
}
.pc-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.pc-item__date{color:rgba(0,0,0,.68);}
.pc-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:120px;
  padding:10px 14px;
  border-radius:8px;
  color:#fff;
  font-weight:700;
  text-decoration:none;
  user-select:none;
}
.pc-badge--complet{
  background:var(--pc-complet,#F28C8C);
  cursor:default;
  pointer-events:none;
  opacity:.95;
}
.pc-badge--inscrire{
  background:var(--pc-inscrire,#8CCB8C);
}


@media (max-width: 767px){
  .pc-widget__header{
    flex-wrap: wrap;
  }
  .pc-tarifs{
    max-width: 100%;
    width: 100%;
    justify-content: center;
  }
  .pc-item{
    flex-wrap: wrap;
  }
  .pc-badge{
    min-width: 0;
    width: 100%;
    justify-content: center;
  }
}
