.retromix-events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}

.retromix-event-card {
  position: relative;
  background: #f5f5f5;
  border: 4px solid #000;
  box-shadow: 10px 10px 0 #5da7da;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.retromix-event-card--featured {
  background: #fff8df;
  box-shadow: 12px 12px 0 #f2559b;
  transform: translateY(-2px);
}

.retromix-event-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: #f2559b;
  color: #000;
  border: 3px solid #000;
  padding: 8px 12px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.75px;
}

.retromix-event-image {
  display: block;
  aspect-ratio: 4 / 3;
  background: #121212;
  overflow: hidden;
  border-bottom: 4px solid #000;
  text-decoration: none;
}

.retromix-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.retromix-event-card:hover .retromix-event-image img {
  transform: scale(1.03);
}

.retromix-event-image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f2559b, #47c266, #5da7da);
}

.retromix-event-placeholder {
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  letter-spacing: 1px;
  color: #000;
  background: rgba(245, 245, 245, 0.92);
  border: 3px solid #000;
  padding: 10px 18px;
}

.retromix-event-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.retromix-event-date {
  display: inline-block;
  align-self: flex-start;
  background: #47c266;
  border: 3px solid #000;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 8px 12px;
  margin-bottom: 16px;
}

.retromix-event-card--featured .retromix-event-date {
  background: #5da7da;
}

.retromix-event-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  line-height: 0.95;
  letter-spacing: 0.5px;
  margin: 0 0 14px;
}

.retromix-event-title a {
  color: #000;
  text-decoration: none;
}

.retromix-event-title a:hover {
  color: #000;
}

.retromix-event-meta {
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  color: #222;
}

.retromix-event-time {
  margin-bottom: 4px;
}

.retromix-event-excerpt {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  margin-bottom: 22px;
}

.retromix-event-actions {
  margin-top: auto;
}

.retromix-button {
  display: inline-block;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 18px;
  border: 3px solid #000;
  transition: transform 0.15s ease;
}

.retromix-button:hover {
  transform: translate(-2px, -2px);
}

.retromix-button--ticket {
  background: #f2559b;
  color: #000;
}

.retromix-button--details {
  background: #5da7da;
  color: #000;
}

.retromix-button--soldout {
  background: #000;
  color: #fff;
}

.retromix-events-empty {
  border: 4px solid #000;
  padding: 28px;
  background: #f5f5f5;
  font-family: "Inter", sans-serif;
  box-shadow: 10px 10px 0 #f2559b;
}

@media (max-width: 980px) {
  .retromix-events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .retromix-event-title {
    font-size: 34px;
  }

  .retromix-event-card {
    box-shadow: 9px 9px 0 #5da7da;
  }

  .retromix-event-card--featured {
    box-shadow: 10px 10px 0 #f2559b;
    transform: translateY(-2px);
  }
}

@media (max-width: 767px) {
  .retromix-events-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .retromix-event-card {
    box-shadow: 7px 7px 0 #5da7da;
    transform: none;
  }

  .retromix-event-card--featured {
    box-shadow: 7px 7px 0 #f2559b;
    transform: none;
  }

  .retromix-event-content {
    padding: 20px;
  }

  .retromix-event-title {
    font-size: 30px;
  }

  .retromix-event-badge {
    top: 12px;
    left: 12px;
  }
}
