/* ── Bandeau défilant ───────────────────────────────────── */
.qwest-banner {
  background: #1a1a2e;
  color: #EBD3AF;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.qwest-banner__track {
  display: inline-flex;
  animation: qwest-scroll linear infinite;
}

.qwest-banner__content {
  display: inline-block;
  padding-right: 60px;
}

@keyframes qwest-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Widget événements ──────────────────────────────────── */
.qwest-ew {
  padding: 20px 0 40px;
}

.qwest-ew__empty {
  text-align: center;
  padding: 40px 20px;
  font-size: 16px;
  color: #888;
  font-style: italic;
}

.qwest-ew__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 0 20px;
}

/* Card */
.qwest-ew__card {
  display: flex;
  flex-direction: column;
  background: #FBF2EB;
  overflow: hidden;
}

/* Thumb */
.qwest-ew__thumb {
  position: relative;
  width: 100%;
  height: 200px;
  background-color: #1a1a2e;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.qwest-ew__thumb--no-img {
  background: linear-gradient(135deg, #1a1a2e 0%, #2a2a4e 100%);
}

/* Badge type */
.qwest-ew__badge {
  position: relative;
  z-index: 2;
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  margin: 0 0 12px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: normal;
}

/* Body */
.qwest-ew__body {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.qwest-ew__title {
  font-size: 18px;
  font-weight: 800;
  color: #1a1a2e;
  text-transform: uppercase;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.qwest-ew__desc {
  font-size: 13px;
  color: #4a3a28;
  line-height: 1.55;
  margin: 0 0 14px;
  flex: 1;
}

/* Meta list */
.qwest-ew__meta {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.qwest-ew__meta li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: #32323E;
}

.qwest-ew__icon {
  font-size: 14px;
  flex-shrink: 0;
  line-height: 1;
}

/* Bouton */
.qwest-ew__btn {
  display: inline-block;
  background: #DE624E;
  color: #EBD3AF;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 11px 20px;
  text-decoration: none;
  box-shadow: inset 4px 4px 0px -1px #EBD3AF;
  transition: transform 0.18s ease;
  align-self: flex-start;
  margin-top: auto;
}

.qwest-ew__btn:hover {
  transform: scale(1.05);
  color: #EBD3AF;
  text-decoration: none;
}

/* Desktop */
@media (min-width: 768px) {
  .qwest-ew__grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 48px;
  }

  .qwest-ew__thumb {
    height: 220px;
  }

  .qwest-banner {
    font-size: 15px;
    padding: 12px 0;
  }
}
