/* FL Programmation — Shortcodes CSS */

/* Grid */
.hef-sc-grid {
  display: grid;
  grid-template-columns: repeat(var(--hef-cols, 3), 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .hef-sc-grid { grid-template-columns: repeat(min(var(--hef-cols, 3), 2), 1fr); }
}
@media (max-width: 480px) {
  .hef-sc-grid { grid-template-columns: 1fr; }
}

/* Badge */
.hef-sc-badge {
  display: inline-block;
  padding: .2rem .7rem;
  background: #E8001E;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: 999px;
  margin-bottom: .5rem;
}

/* Event card */
.hef-sc-event-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.hef-sc-event-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.hef-sc-event-card__img { aspect-ratio: 16/9; overflow: hidden; }
.hef-sc-event-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hef-sc-event-card__body { padding: 1rem 1.25rem 1.25rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.hef-sc-event-card__title { font-size: 1.05rem; font-weight: 700; margin: 0; line-height: 1.3; }
.hef-sc-event-card__title a { color: inherit; text-decoration: none; }
.hef-sc-event-card__title a:hover { color: #E8001E; }

/* Meta */
.hef-sc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .85rem;
  font-size: .825rem;
  color: #6B7280;
}
.hef-sc-meta span { display: flex; align-items: center; gap: .25rem; }

/* Button */
.hef-sc-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: auto;
  padding: .5rem 1.1rem;
  background: #E8001E;
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  width: fit-content;
  transition: background .2s;
}
.hef-sc-btn:hover { background: #B80018; color: #fff; }

/* Artist */
.hef-sc-artist { display: flex; flex-direction: column; gap: 1rem; }
.hef-sc-artist__header { display: flex; align-items: center; gap: 1rem; }
.hef-sc-artist__photo {
  width: 80px; height: 80px;
  border-radius: 50%; object-fit: cover;
  border: 3px solid #F5A800;
  flex-shrink: 0;
}
.hef-sc-artist--card { background: #fff; border: 1px solid #E5E7EB; border-radius: 12px; padding: 1.25rem; box-shadow: 0 2px 8px rgba(0,0,0,.06); align-items: center; text-align: center; }
.hef-sc-artist__photo--card { width: 100px; height: 100px; margin: 0 auto .75rem; }
.hef-sc-artist__name { font-size: 1.1rem; font-weight: 700; margin: 0; }
.hef-sc-artist__name--card { font-size: 1rem; }
.hef-sc-artist__desc { font-size: .875rem; color: #4B5563; line-height: 1.6; }
.hef-sc-artist__desc--short { font-size: .825rem; }

/* Video */
.hef-sc-video { position: relative; padding-top: 56.25%; border-radius: 10px; overflow: hidden; background: #111; }
.hef-sc-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Edition */
.hef-sc-edition { display: flex; gap: 1.5rem; align-items: flex-start; }
.hef-sc-edition__photo { width: 160px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.hef-sc-edition__title { font-size: 1.25rem; font-weight: 700; margin: 0 0 .5rem; }
.hef-sc-edition__desc { font-size: .875rem; color: #4B5563; margin-top: .75rem; }

/* Venue */
.hef-sc-venue { border: 1px solid #E5E7EB; border-radius: 12px; padding: 1.25rem; background: #FAF6F0; }
.hef-sc-venue__name { font-size: 1.1rem; font-weight: 700; margin: 0 0 .5rem; display: flex; align-items: center; gap: .4rem; color: #E8001E; }
.hef-sc-venue__address { font-size: .875rem; color: #6B7280; margin: 0 0 .5rem; }
.hef-sc-venue__photo { width: 100%; border-radius: 8px; margin-top: .75rem; }

/* Logo */
.hef-sc-logo { display: inline-flex; align-items: center; }
