.lookaa-dazn-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.lookaa-dazn-card a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.lookaa-dazn-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.lookaa-dazn-card:hover img {
  transform: scale(1.05);
}

.lookaa-dazn-overlay-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%; /* hauteur du dégradé en bas */
  background: linear-gradient(
    to top,
    rgba(0,0,0,1) 0%,      /* noir plein en bas */
    rgba(0,0,0,0.6) 30%,   /* un peu moins noir */
    rgba(0,0,0,0.0) 100%   /* transparent en haut */
  );
  pointer-events: none;
}

.lookaa-dazn-live {
  position: absolute;
  top: 6px;
  left: 6px;
  background: transparent;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.lookaa-dazn-live i {
  font-size: 10px;
}

.lookaa-dazn-info {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 2;
  color: white;
}

.lookaa-dazn-title {
  font-size: 18px;
  font-weight: bold;
}

.lookaa-dazn-subtitle {
  font-size: 13px;
  opacity: 0.9;
}