/**
 * Premium Media Grid Override — responsive filter dropdown
 *
 * On desktop: shows the Isotope filter tabs (.premium-gallery-cats-container)
 * On mobile:  hides the tabs and shows the <select> dropdown instead.
 */

/* Mobile dropdown — hidden by default */
.gbp-gallery-filter-dropdown {
	display: none;
}

.pa-gallery-img .premium-gallery-caption{
	font-weight: 600;
}

/* Mobile breakpoint: swap tabs for dropdown */
@media (max-width: 767px) {
	.premium-img-gallery-filter .premium-gallery-cats-container {
		display: none !important;
	}

	.gbp-gallery-filter-dropdown {
		display: block !important;
		width: 100%;
	}
}

/* Dropdown select styling */
.gbp-gallery-filter-select {
	width: 100%;
	padding: 10px 36px 10px 10px;
	font-size: 15px;
	line-height: 1.4;
	color: #1a1a1a;
	background-color: #ffffff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a1a1a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: calc(100% - 12px) center;
	border: 1px solid #D5D7DA;
	border-radius: 8px;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.gbp-gallery-filter-select:focus {
	outline: 2px solid #0073aa;
	outline-offset: 1px;
	border-color: #0073aa;
}
