<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*--------------------------------------------------------------
# Global Styles
--------------------------------------------------------------*/
#venues {
	margin-top: 10em;
}


#venues .tabs {
	display: grid;
	grid-gap: 1px;
	grid-template-columns: repeat(4, 1fr);
	list-style: none;
	margin-bottom: 0;
	padding: 0;
	text-align: center;
	width: 100%;
}

#venues .tabs &gt; li {
	border-top: 2px solid #d6a478;
	border-left: 2px solid #d6a478;
	border-right: 2px solid #d6a478;
	line-height: 1;
	padding: 1rem;
	font-size: 1rem;
	transition: background-color .25s ease-in-out 0s, 
				border-color .25s ease-in-out 0s,
				color .25s ease-in-out 0s;
}

#venues .tabs &gt; li:not(.active):hover {
	background-color: #353e49;
	border-color: #353e49;
	color: #fff;
	cursor: pointer;
}

#venues .tabs &gt; li.active,
#venues .tabs &gt; li.active:hover {
	background-color: #d6a478;
	color: #fff;
}

#venues .tabs &gt; li.active {
	font-weight: bold;
}

#venues .tab-items .wp-block-group__inner-container {
	display: grid;
	grid-template-areas: 'stack';
	align-items: start;
}


#venues .tab-item {
	border-bottom: 20px solid #d6a478;
	border-top: 20px solid #d6a478;
	grid-area: stack;
	overflow: hidden;
	opacity: 0;
	transition: opacity .25s ease-in-out 0s, z-index .25s ease-in-out 0s;
	z-index: 0;
}

#venues .tab-item.active {
	opacity: 1;
	z-index: 1;
}

#venues .tab-item .wp-block-media-text__content {
	background-color: ;
    max-width: 85ch;
}


#venues  .tab-item .wp-block-media-text__media {
	align-self: stretch;
	display: grid;
	overflow: hidden;
}

#venues  .tab-item .wp-block-media-text__media img {
    align-self: stretch;
    object-fit: cover;
	transition: transform 500ms ease-in-out 250ms;
}


#venues .wp-block-image figcaption {
	display: none;
}


#venues .tab-item ul.list--column {
	margin: 0 auto;
    max-width: max-content;
	padding: 0;
}

#venues .tab-item ul.list--column &gt; li {
	flex: 1 0 auto;
	text-align: left;
	margin-left: 1em;
}

#venues .tab-item .wp-block-buttons {
	margin-top: 2em;
}


@media (min-width: 801px) {
	#venues .tabs {
		grid-gap: 5px;
	}

	#venues .tabs &gt; li {
		font-size: 1.5rem;
	}

	#venues .tab-item ul.list--column {
		column-count: 2;
		column-gap: 4em;
	}

	#venues .tab-item .wp-block-buttons {
		justify-content: start;
	}
}

</pre></body></html>