.agenSC-evenements {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}
.agenSC-carte {
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
  border: 1px solid var(--dark-blue);
  transition: all .3s ease;
  overflow: hidden;
  position: relative;
  background: white;
}
.agenSC-lien_global {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.agenSC-lien_global:hover {
  text-decoration: none;
  color: inherit;
}
.agenSC-lien_global:hover .agenSC-carte {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  background-color: rgba(0, 0, 0, .05);
}
.agenSC-carte-desactivee {
  opacity: .8;
  filter: grayscale(.5);
  border-color: #bdc3c7;
}
.agenSC-carte-desactivee .agenSC-miniature img {
  filter: grayscale(.9);
}
.agenSC-contenu {
  display: flex;
  min-height: 100px;
  align-items: stretch;
}
.agenSC-dates {
  flex: 0 0 140px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .75rem;
}
.agenSC-bloc-dates {
  text-align: center;
}
.agenSC-comparaison-dates {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}
.agenSC-date-seule {
  display: flex;
  justify-content: center;
}
.agenSC-colonne-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 50px;
}
.agenSC-jour-semaine {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .2rem;
}
.agenSC-jour-mois {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .15rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .3);
}
.agenSC-mois {
  font-size: .9rem;
  color: rgba(255, 255, 255, .9);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .5px;
}
.agenSC-fleche {
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.agenSC-infos {
  flex: 1;
  padding: .75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.agenSC-titre {
  margin: 0 0 .4rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--darker-blue);
  font-variant: small-caps;
}
.agenSC-horaires {
  margin: 0 0 .3rem 0;
  color: var(--dark-blue);
  font-style: oblique 5deg;
  font-weight: 400;
  font-size: .9rem;
}
.agenSC-info_desactive {
  font-style: italic;
  color: var(--primary-blue);
  font-size: .8rem;
  margin: -.2rem 0 .5rem 0;
  font-weight: 400;
}
.agenSC-lieu {
  margin: 0 0 .2rem 0;
  color: var(--darker-blue);
  font-weight: 600;
}
.agenSC-organisateur {
  margin: 0;
  color: var(--primary-blue);
}
.agenSC-miniature {
  flex: 0 0 140px;
  padding: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, snow 0%, gainsboro 100%);
}
.agenSC-miniature img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.agenSC-vide {
  text-align: center;
  padding: 1.5rem;
  color: var(--primary-blue);
  font-style: italic;
  background: #f8fafc;
  border-radius: 6px;
  border: 1px solid #e1e8ed;
}

@media screen and (max-width: 768px) {
  .agenSC-contenu {
    min-height: auto;
  }
  .agenSC-dates {
    flex: 0 0 70px;
  }
  .agenSC-date-seule {
    flex-direction: row;
    justify-content: center;
  }
  .agenSC-comparaison-dates {
    flex-direction: column;
    gap: .2rem;
  }
  .agenSC-colonne-date {
    flex-direction: row;
    gap: .3rem;
    min-width: auto;
    justify-content: center;
  }
  .agenSC-jour-mois {
    font-size: 1.4rem;
  }
  .agenSC-fleche {
    transform: rotate(90deg);
  }
  .agenSC-fleche svg {
    transform: scale(1, 2);
  }
  .agenSC-titre {
    text-align: center;
  }
  .agenSC-jour-semaine,
  .agenSC-horaires,
  .agenSC-lieu,
  .agenSC-organisateur,
  .agenSC-miniature {
    display: none;
  }
}