/*
 Theme Name:   Golf Today Directory Site
 Theme URI:    https://octopress.co/
 Description:  This is a bespoke child theme built by Octopress. It requires the Bricks Builder parent theme framework.
 Author:       Octopress
 Author URI:   https://octopress.co/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/


/* change scroll offset because I have a sticky header now */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}
/* adjust scroll offset for mobile header */
@media( max-width: 767px){
    html {
        scroll-padding-top: 60px;
    }  
}


.gt-facilities-list {
	list-style:none;
	padding:0;
	margin:0 0 1.5rem 0;
	column-count: 2;
}

.gt-facility-item {
	display:flex;
	align-items:center;
	gap:.5rem;
	margin:0 0 .4rem 0;
}

.gt-facility-item.is-unavailable .gt-facility-label {
	text-decoration: line-through;
	color: var(--neutral-d-1);
}

.gt-facility-icon {
	flex:0 0 auto;
	display:inline-block;
}

.gt-icon-available {
	color:#2ecc71;
}

.gt-icon-unavailable {
	color:#e74c3c;
	opacity:.6;
}

.gt-facility-label {
	line-height: 1.4em;
	font-weight: 500;
}



.gt-club-list__item.Military .membership {
	color: var(--military);
	background-color: var(--military-l-3);
}
.gt-club-list__item.Private .membership {
	color: var(--private);
	background-color: var(--private-l-3);
}
.gt-club-list__item.Public .membership {
	color: var(--public);
	background-color: var(--public-l-3);
}
.gt-club-list__item.Resort .membership {
	color: var(--resort);
	background-color: var(--resort-l-3);
}
.gt-club-list__item.Semi-Private .membership {
	color: var(--semi-private);
	background-color: var(--semi-private-l-3);
}






























