/* Reusable but site specific styles */
.butt{
	display: flex;
	width: fit-content;
	min-height: 40px;
	padding: 6px 8px;
	justify-content: space-between;
	align-items: center;
	flex-shrink: 0;
	color: var(--white, #FFF);
	font-size: 24px;
	font-weight: 900;
	line-height: 110%; /* 26.4px */
	text-transform: uppercase;
	text-decoration: none;
	background:var(--pale);
	color: var(--dark);
	border:2px solid var(--pale);
}

.butt:hover{
	background:var(--dark);
	color: var(--pale);
}

.butt_full{
	width: 100%;
}

.butt_accent{
	background: var(--accent, #F23D00);
	color: var(--pale);
	border-color: var(--accent);
}

.butt_active{
	background: var(--inactive, #C4C7CC);
	border-color: var(--inactive, #C4C7CC);
}


/* Gallery bits */

.gallery {
	background-color: var(--dark);
	padding: 0 2rem;
}

.gallery_image_grid {
	max-width:960px;
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: start;
	
}

.gallery_image {
	background-color: white;
	min-width: 100px;
	max-width: 260px;
	border: 4px solid #FFFFFF;
	filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.65));
}


.gallery_image:hover {
	transition: var(--transition);
	border-color: var(--dark);
}

.gallery_image:focus {
	opacity: 0.5;
}

.gallery_image figure {
	margin-bottom: 0;
}

.gallery_image img {
	display: block;
	width: 100%;
	height: auto;
}

.lf_slide_meta {
	display: none;
}

.pswp__slide_meta {
	position: absolute;
	bottom: 10px;
	left: 0;
	width: 100%;
	color: white;
	font-size: 1rem;
	text-align: center;
}

.slm_decade {
	font-weight: 800;
	font-size: 1.3rem;
}

.slm_title {
	font-weight: 600;
	font-size: 1.125rem;
}

.pswp__bg {
	background: var(--dark) !important;
}

.pswp__icn {
	fill: var(--pale) !important;
	color: var(--theme) !important;
}



.pswp__counter {
	height: 30px;
	margin: 15px 0 0 20px;
	font-size: 14px;
	line-height: 30px;
	color: var(--dark) !important;
	opacity: 0.85;
	background-color: white;
	padding: 0 4px;
	border-radius: 4px;
}

.slm_caption{
	color: white !important;
}
