/* ==========================================================================
   Custom Gallery ([ef_gallery] shortcode)
   Enqueued directly by the shortcode — do not rely on style.css, which is
   dropped by Avada's CSS compiler (unregistered avada-stylesheet dependency).
   ========================================================================== */

.ef-gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.ef-gallery__item {
	margin: 0;
}

.ef-gallery__item img {
	display: block;
	width: 100%;
	height: auto;
	border: 0 !important;
}

/* Stack on mobile */
@media (max-width: 767px) {
	.ef-gallery {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}
