.mdt-event-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

html[dir="rtl"] .mdt-event-grid {
  direction: ltr;
}

html[dir="rtl"] .mdt-event-left,
html[dir="rtl"] .mdt-event-right {
  direction: rtl;
}

.mdt-event-left,
.mdt-event-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mdt-event-right .mdt-card {
  margin-bottom: 0;
}

.mdt-ticket-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 900px) {
  .mdt-event-grid {
    grid-template-columns: 1fr;
  }
  .mdt-event-right {
    order: 2;
  }
  .mdt-event-left {
    order: 1;
  }
}

.mdt-stadium-map-wrap {
  width: 100%;
}

.mdt-stadium-map {
  width: 100%;
  max-width: 100%;
  overflow: visible !important;
  min-height: 420px;
}

.mdt-map-viewport {
  width: 100%;
  height: clamp(260px, 50vw, 620px);
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 12px;
}

.mdt-map-canvas {
  width: 100%;
  height: 100%;
  transform-origin: 50% 50%;
  will-change: transform;
}

.mdt-map-toolbar {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}

.mdt-map-toolbar .mdt-btn {
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
}

.mdt-stadium-map svg {
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  display: block;
}

.mdt-stadium-map svg path,
.mdt-stadium-map svg polygon,
.mdt-stadium-map svg rect,
.mdt-stadium-map svg circle,
.mdt-stadium-map svg ellipse,
.mdt-stadium-map svg line {
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.mdt-stadium-map svg path:hover,
.mdt-stadium-map svg polygon:hover,
.mdt-stadium-map svg rect:hover,
.mdt-stadium-map svg circle:hover,
.mdt-stadium-map svg ellipse:hover,
.mdt-stadium-map svg line:hover {
  opacity: 0.75;
}

.mdt-stadium-map svg .is-active {
  opacity: 0.7;
}

.mdt-stadium-map svg text {
  pointer-events: none;
  user-select: none;
}
