.wgm_events {
    margin: 0 auto;
    display: grid;
    gap: 1rem;
    grid-gap: 1rem;
    width: 100%;
}

.wgm_event_box {
  border: 1px solid black;
  padding: 10px;
  border-radius: 5px;
}

.wgm_range {
	display:flex;
}

.wgm_events{
	margin: 10px 0;
}

@media (max-width: 400px){
	.wgm_event_box{
		text-align: center;
	}
}

@media (min-width: 400px) {
    .wgm_events { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 600px) {
    .wgm_events { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 800px) {
    .wgm_events { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1000px) {
    .wgm_events { grid-template-columns: repeat(5, 1fr); }
}

@media (min-width: 1200px) {
    .wgm_events { grid-template-columns: repeat(6, 1fr); }
}

.wgm_event_title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    margin-top: 0px;
	text-align: center;
}

@keyframes wgm_glowEffect {
  0% {
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.7); 
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.9), 0 0 30px rgba(0, 123, 255, 0.7); 
  }
  100% {
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.7);
  }
}

.wgm_glow {
	transition: box-shadow 0.3s ease-in-out;
	animation: wgm_glowEffect 1s forwards;
}