/**
 * Event Single Page Styles
 */

.single-rgs-event #content {
	margin: 20px 0;
	width: 100%;
}

.single-rgs-event #content a:focus,
.single-rgs-event #content a:hover {
	color: #e57a3c;
}

/* Back link */
.ld-back-link {
	margin-bottom: 20px;
}

/* Event Gallery Grid */
.event-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 30px;
}

.event-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 4px;
}

@media (max-width: 768px) {
	.event-gallery {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.event-gallery {
		grid-template-columns: 1fr;
	}
}
