/* ══════════════════════════════════════════════════
   Eventoo Expositions — [eventoo_expositions]
   Grid propre : logo + nom
   ══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;600;700&display=swap');

.evexp-wrap {
  font-family: 'Jost', sans-serif;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 12px 60px;
}

/* ── Grid — 5 colonnes desktop, adaptatif ── */
.evexp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* ── Card ── */
.evexp-card {
  background: #fff;
  border: 1.5px solid #EBEBEB;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 14px 16px;
  gap: 12px;
  transition: box-shadow .22s, transform .22s, border-color .22s;
  cursor: default;
}

.evexp-card:hover {
  box-shadow: 0 8px 30px rgba(27,35,64,.10);
  transform: translateY(-3px);
  border-color: #E8622A;
}

/* Card cliquable (avec lien) */
.evexp-card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

/* ── Logo ── */
.evexp-logo-wrap {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.evexp-logo {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform .25s ease;
}

.evexp-card:hover .evexp-logo {
  transform: scale(1.05);
}

/* ── Initiales fallback ── */
.evexp-initials {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #1B2340;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: .04em;
}

/* ── Séparateur ── */
.evexp-card::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #E8622A;
  border-radius: 2px;
  margin: 0 auto;
  opacity: 0;
  transition: opacity .22s;
}
.evexp-card:hover::after { opacity: 1; }

/* ── Info ── */
.evexp-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  width: 100%;
}

.evexp-name {
  font-size: .88rem;
  font-weight: 700;
  color: #1B2340;
  text-align: center;
  line-height: 1.3;
  word-break: break-word;
}

.evexp-title {
  font-size: .75rem;
  font-weight: 400;
  color: #6B7280;
  text-align: center;
  line-height: 1.3;
}

/* ── Empty ── */
.evexp-empty {
  text-align: center;
  padding: 40px;
  color: #6B7280;
  font-style: italic;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .evexp-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 820px) {
  .evexp-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

@media (max-width: 560px) {
  .evexp-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .evexp-logo-wrap { height: 80px; }
  .evexp-name { font-size: .8rem; }
}
