/* Event Notification - ใช้ Place Detail Style */

.en-gallery {
  position: relative;
  width: 100%;
  height: 240px;
  background: #f5f5f5;
  overflow: hidden;
}

.en-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s;
}

.en-slide.active { opacity: 1; }

.en-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.en-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.95);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.2s;
}

.en-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}

.en-prev { left: 0.75rem; }
.en-next { right: 0.75rem; }

.en-counter {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.en-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 0;
  background: #fff;
}

.en-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  transition: all 0.3s;
  cursor: pointer;
}

.en-dot.active {
  width: 20px;
  border-radius: 3px;
  background: #d4af37;
}
