@font-face {
    font-family: "PP Pier Sans";
    font-weight: 400;
    src: url("../fonts/PPPierSans-Regular.woff") format("woff");
}
@font-face {
    font-family: "PP Pier Sans";
    font-weight: 400;
    font-style: italic;
    src: url("../fonts/PPPierSans-Italic.woff") format("woff");
}
@font-face {
    font-family: "PP Pier Sans";
    font-weight: 500;
    src: url("../fonts/PPPierSans-Medium.woff") format("woff");
}
@font-face {
    font-family: "PP Pier Sans";
    font-weight: 700;
    src: url("../fonts/PPPierSans-Bold.woff") format("woff");
}
@font-face {
    font-family: "Gazpacho Heavy";
    font-weight: 400;
    src: url("../fonts/GazpachoHeavy.woff") format("woff");
}

/* set variables */
:root {
  --heading: 'Gazpacho Heavy', sans-serif;
  --text: 'PP Pier Sans', sans-serif;
  --icons: 'Font Awesome 6 Pro';
  --white: #ffffff;
  --black: #261D1C;
  --storm: #303A42;
  --seafarer: #47616E;
  --orange: #C58019;
  --lilac: #857C93;
  --lupin: #AC8796;
  --atlantic: #587D89;
  --squall: #545E69;
  --sky: #7C9CAA;
  --breeze: #A2CACE;
  --beachglass: #C1CBC2;
  --shale: #C2C0B7;
  --fog: #D3D1D1;
  --haze: #EFEFEF;
  --transition-fast: all 100ms ease-out;
  --transition-normal: all 200ms ease-out;
  --transition-slow: all 400ms ease-out;
}

/* box sizing rules */
*,*::before,*::after {
  box-sizing: border-box;
}

/* set html core defaults */
html {
  min-height: 100%;
  overflow-y: scroll;
	scroll-behavior: smooth;
}

/* remove default margin */
body,h1,h2,h3,h4,p,ul,ol,li,figure,figcaption,blockquote,dl,dd {
  margin: 0;
}

/* set core body defaults */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
	height: 100%;
  margin: 0 auto;
  text-rendering: optimizeSpeed;
  background: var(--white);
  font-family: var(--text);
  font-size: clamp(1.125rem, 1.0539rem + 0.1961vw, 1.25rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.4;
}
body:not(.home) {
  padding-top: var(--header-height, 0px);
}

/* remove list styles, padding, and margins on ul, ol elements without a class attribute */
ul:not([class]),ol:not([class]) {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* remove list styles on ul, ol elements with a class attribute */
ul[class],ol[class] {
  list-style-type: none;
	padding: 0;
}

/* make images easier to work with */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.main img,
.wp-block-image,
.wp-block-image img {
  border-radius: 20px;
}

/* inherit fonts for inputs and buttons */
input,button,textarea,select {
  font: inherit;
}

/* remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* default font styles */

h1 {
  font-family: var(--heading);
	font-size: clamp(2.25rem, 1.2159rem + 2.9545vw, 3.875rem);
  font-weight: 400;
  color: var(--seafarer);
	line-height: 1.1;
  margin-bottom: 25px;
}
h2 {
  position: relative;
  font-family: var(--text);
  font-size: clamp(1.25rem, 0.9128rem + 0.9302vw, 1.75rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
}
  h2.subtitle {
    font-size: clamp(1.375rem, 1.2652rem + 0.4878vw, 1.875rem);
    color: var(--storm);
    text-transform: none;
    margin-bottom: 0;
  }
h3 {
  font-family: var(--text);
  font-size: clamp(1.3rem, 1.0868rem + 0.5882vw, 1.45rem);
  font-weight: 700;
  color: var(--storm);
  line-height: 1.1;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
}
h4 {
  font-family: var(--heading);
  font-size: clamp(1.2rem, 1.2868rem + 0.5882vw, 1.875rem);
  font-weight: 400;
  color: var(--lilac);
  line-height: 1.2;
  margin-bottom: 20px;
}
h5 {
  font-family: var(--text);
  font-size: clamp(1.1rem, 1.1618rem + 0.5882vw, 1.45rem);
  font-weight: 700;
  color: var(--seafarer);
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 20px;
}
h6 {
  font-family: var(--text);
  font-size: clamp(1.1rem, 0.9118rem + 0.5882vw, 1.5rem);
  font-weight: 700;
  color: var(--storm);
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.main p a,
.wp-block-group p a,
.main ul a,
.wp-block-group ul a,
.main ol a,
.wp-block-group ol a,
.main blockquote a,
.wp-block-group blockquote a {
  font-weight: 700;
  text-decoration: 1px underline solid;
}
@media screen and (max-width: 768px) {
  
}
@media screen and (max-width: 580px) {
  
}

/* default link styles */

a {
  color: var(--seafarer);
  text-decoration: none;
  text-decoration-skip-ink: auto;
	transition: var(--transition-normal);
}
a:hover,
a:focus {
  color: var(--squall);
  text-decoration: none;
}
@media screen and (max-width: 400px) {
	a {
    word-break: break-word;
  }
}

/* default element styles */

.container {
  position: relative;
  width: 100%;
  max-width: 1440px;
  padding: 0 3vw;
  margin: 0 auto;
}
.main:after {
  content: '';
  clear: both;
  display: table;
}
.main ul,
.wp-block-list {
  list-style: outside disc !important;
  padding-left: 20px;
  margin: 0 0 30px 20px !important;
}
.wp-block-list {
  margin-top: 1.2rem !important;
}
  .main ul ul,
  .wp-block-list ul {
    list-style: outside circle;
    padding: 5px 0;
  }
  .wp-block-list li {
    padding-bottom: 5px;
  }
.main ol,
ol.wp-block-list {
  list-style: outside decimal !important;
  margin: 0 0 30px 20px !important;
}
  ol.wp-block-list li {
    padding-bottom: 8px;
  }
.main .nomargin {
  margin: 0;
}
hr {
  width: 100%;
  height: 1px;
  color: var(--shale);
  background: var(--shale);
  border: 0;
  padding: 0;
  margin: 40px 0;
}
  hr::after {
    content: '';
    clear: both;
    display: table;
  }
.wp-block-image .alignleft,
.alignleft {
  float: left;
  margin: 0 40px 40px 0;
}
.wp-block-image .aligncenter,
.aligncenter {
  float: none;
}
.wp-block-image img.aligncenter,
img.aligncenter,
figure.aligncenter,
picture.aligncenter {
  margin: 0 auto;
}
  .wp-block-image .aligncenter > img,
  .aligncenter > img,
  .aligncenter > picture {
    margin: 0 auto 40px;
  }
.wp-block-image .alignright,
.alignright {
  float: right;
  margin: 0 0 40px 40px;
}
.wp-block-image figcaption {
  font-size: 14px;
  font-style: italic;
}
.centered {
  grid-column: 1 / -1;
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin: 0 0 40px;
}
.wp-block-image .alignleft,
.wp-block-image .aligncenter,
.wp-block-image .alignright,
.alignleft,
.aligncenter,
.alignright,
embed,
iframe,
object {
  max-width: 100%;
}
embed,
iframe,
object {
  display: block;
  margin: 0 auto;
}
.wp-block-embed__wrapper iframe,
.wp-block-embed__wrapper > embed {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
@media screen and (min-width: 1025px) {
  .wp-block-embed__wrapper {
    max-width: 60vw !important;
    margin-left: auto;
    margin-right: auto;
  }
}
.to-top-btn {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  font-size: 22px;
  color: var(--orange);
  text-align: center;
  background: var(--white);
  border: 4px solid var(--orange);
  border-radius: 50%;
  transition: var(--transition-fast);
}
#topcontrol {
  z-index: 10;
}
	.to-top-btn:hover,
  .to-top-btn:focus {
	  color: var(--white);
	  background: var(--orange);
	}
.button,
.gform_button.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 25px;
  font-family: var(--text);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 50px;
  text-align: center;
  transition: var(--transition-normal);
  cursor: pointer;
}
  .button:hover,
  .button:focus {
    color: var(--white);
    background: var(--seafarer);
    border: 1px solid var(--seafarer);
  }
  .button:not(.more-btn):after {
    position: relative;
    top: 1px;
    content: '\f178';
    font-family: var(--icons);
    line-height: 1.1;
  }
.button.outlined {
  color: var(--orange);
  background: transparent;
  border: 2px solid var(--orange);
}
  .button.outlined:hover,
  .button.outlined:focus {
    color: var(--white);
    background: var(--seafarer);
    border: 2px solid var(--seafarer);
  }
.share-button {
  position: absolute;
  bottom: -25px;
  right: var(--wp--style--root--padding-right);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 22px;
  color: var(--white);
  background: var(--orange);
  border: 4px solid var(--white);
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
}
  .share-button:hover,
  .share-button:focus {
    color: var(--white);
    background: var(--atlantic);
    overflow: visible;
  }
  .share-button:after {
    content: 'Share this page';
    visibility: hidden;
    width: max-content;
    background: var(--seafarer);
    font-family: var(--text);
    font-size: 12px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.5px;
    text-align: center;
    padding: 7px 12px;
    border-radius: 8px;
    position: absolute;
    z-index: 1;
    top: calc(100% + 9px);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
    text-transform: none;
  }
  .share-button:hover:after,
  .share-button:focus:after {
    visibility: visible;
    opacity: 1;
  }
  .share-button:before {
    content: "";
    position: absolute;
    bottom: -9px;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent var(--seafarer) transparent;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .share-button:hover:before,
  .share-button:focus:before {
    opacity: 1;
  }
@media screen and (max-width: 1200px) {
	img {
	  max-width: 100%;
	  height: auto;
	}
	.attachment-post-thumbnail {
	  max-width: 100%;
	  height: auto;
	}
}
@media screen and (max-width: 1024px) {
	.wp-block-image .alignleft,
  .wp-block-image .aligncenter,
  .wp-block-image .alignright {
    float: none;
    width: 100%;
    margin: 0 auto 40px;
  }
  #hero .share-button {
    top: -25px;
    bottom: auto;
  }
  #venue-description header .share-button {
    top: 0;
  }
}
@media screen and (min-width: 1201px) {
  
}
@media screen and (min-width: 1025px) {
	.slide-up {
    position: relative;
	  top: 90px;
	  opacity: 0;
	}
	.slide-up.in-view {
	  animation: slideUp 1s 1 ease-out forwards;
	}
    .slide-up.delayed.in-view {
      animation-delay: 200ms !important;
    }
    .slide-up.delayed-02.in-view {
      animation-delay: 400ms !important;
    }
    .slide-up.delayed-03.in-view {
      animation-delay: 600ms !important;
    }
    .slide-up.delayed-04.in-view {
      animation-delay: 800ms !important;
    }
  .blur-in {
	  opacity: 0;
	}
	.blur-in.in-view {
	  animation: blurIn 750ms 1 ease-out forwards;
	}
  .slide-up.blur-in.in-view {
	  animation: blurIn 750ms 1 ease-out forwards, slideUp 1s 1 ease-out forwards;
	}
  .fade-in {
    filter: blur(4px);
	  opacity: 0;
	}
	.fade-in.in-view {
	  animation: fadeIn 1s 1 ease-out forwards;
	}
  .fade-in.delayed.in-view {
    animation-delay: 200ms;
	}
  .fade-in.delayed.in-view.more {
    animation-delay: 400ms;
	}
  .fade-in.delayed.in-view.most {
    animation-delay: 600ms;
	}
	@keyframes slideUp {
		0% {
      filter: blur(5px);
		  top: 90px;
		  opacity: 0;
		}
    40% {
		  top: 70px;
		  opacity: 0;
		}
		100% {
      filter: blur(0px);
		  top: 0;
		  opacity: 1;
		}
	}
  @keyframes fadeIn {
		0% {
      filter: blur(4px);
		  opacity: 0;
		}
		100% {
      filter: blur(0);
		  opacity: 1;
		}
	}
  @keyframes blurIn {
		0% {
		  filter: blur(6px);
      opacity: 0;
		}
		100% {
		  filter: blur(0px);
      opacity: 1;
		}
	}
}
@media screen and (max-width: 1200px) {
	.attachment-post-thumbnail,
	.alignleft,
	.aligncenter,
	.alignright {
	  float: none;
	  display: block;
    width: auto !important;
	  max-width: 100%;
	  margin: 0 auto 30px;
	}
  .alignleft img,
	.aligncenter img,
	.alignright img {
	  margin: 0 auto;
	}
}
@media screen and (max-width: 580px) {
  .to-top-btn {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}

/* main content styles */

.main {
  padding: 60px 0;
}
.blue-bg {
  background-color: var(--blue);
}
  .blue-bg * {
    color: var(--white);
  }
.grey-bg {
  background-color: var(--grey);
}
.main p,
.main ul,
.main ol {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .main {
    padding: 30px 0;
  }
}

/* drawer */

#drawer .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 7px 40px 12px;
  background: var(--darkblue);
  border-radius: 0 0 30px 30px;
}
  #drawer .left,
  #drawer .right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  #drawer .left {
    flex-direction: row;
  }
    #drawer .left li:not(:last-child) {
      margin-right: 30px;
    }
  #drawer a,
  #drawer span {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
  }
    #drawer a:hover {
      color: var(--lightblue);
    }
@media screen and (min-width: 1025px) {
  #drawer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 7px 40px 12px;
    background: var(--darkblue);
    border-radius: 0 0 30px 30px;
  }
}
@media screen and (min-width: 769px) {
  #drawer .left li:not(:last-child) {
    margin-right: 40px;
  }
  #drawer .right li:not(:first-child) {
    margin-left: 40px;
  }
  #drawer .left,
  #drawer .right {
    display: flex;
    flex-direction: row;
  }
}
@media screen and (max-width: 580px) {
  #drawer .container {
    padding: 12px 20px 17px;
    border-radius: 0;
  }
  #drawer .left,
  #drawer .right {
    line-height: 1.1;
  }
  #drawer .left {
    flex-direction: column;
  }
  #drawer .left li:not(:last-child) {
    margin: 0;
  }
}

/* header */

.header-placeholder {
  display: none;
}
#header {
  z-index: 10;
  width: 100%;
  height: auto;
  padding: 20px 0;
  transition: transform .30s ease-out, background .20s ease-out, box-shadow .20s ease-out;
  will-change: transform;
}
body.home #header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  background: linear-gradient(rgba(48, 58, 66, 1), rgba(48, 58, 66, 0)), linear-gradient(rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%, rgba(0, 0, 0, 0) 100%);
}
body:not(.home) #header {
  position: sticky;
  top: 0;
  left: 0;
  transform: none;
  background: rgba(48,58,66,1);
  box-shadow: 0 0 20px rgba(0,0,0,0.35);
}
body.home #header.sticky,
#header.sticky {
  position: sticky;
  z-index: 11;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.5);
}
body.home.admin-bar #header,
body.admin-bar #header {
  top: 32px;
}
#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: none;
  padding: 0 15vw;
}
@media screen and (max-width: 1366px) {
  #header .container {
    padding-right: 10vw;
    padding-left: 10vw;
  }
}
@media screen and (max-width: 1024px) {
  #header .container {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
  #header .custom-logo-link {
    position: relative;
    z-index: 10;
    display: block;
    width: 200px;
    max-width: 50%;
    height: auto;
    transition: var(--transition-normal);
  }
  html.hide-scroll body:not(.is-private-event) #header .custom-logo-link {
    width: 100px;
  }
  body.is-private-event #header .custom-logo-link {
    width: 140px;
  }
    #header .custom-logo-link img {
      width: 100%;
      max-width: none;
    }
  #header.sticky .custom-logo-link {
    opacity: 0.3;
  }
#header .button {
  padding: 10px 20px;
}
#header .button.outlined {
  color: var(--white);
  background: transparent;
  border: 1px solid var(--white);
}
  #header .button.outlined:hover,
  #header .button.outlined:focus {
    color: var(--white);
    background: var(--seafarer);
    border: 1px solid var(--seafarer);
  }
#header .search-btn {
  font-size: 28px;
  color: var(--white);
}
#header .menu-buttons {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}
  #header .menu-buttons .search-btn {
    position: relative;
    z-index: 10;
    font-size: 28px;
    color: var(--white);
    margin-left: 20px;
  }
  #header .menu-buttons .search-btn:hover,
  #header .menu-buttons .search-btn:focus {
    color: var(--orange);
  }
  #header.sticky .search-btn:hover,
  #header.sticky .search-btn:focus,
  body.home #header.sticky .menu-buttons .search-btn:hover,
  body.home #header.sticky .menu-buttons .search-btn:focus {
    color: var(--orange);
  }
#search-overlay {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 300ms cubic-bezier(.42,.97,.52,1.49);
}
#search-overlay.active {
  display: flex;
}
#search-bar {
  position: relative;
  z-index: 10000;
  display: none;
  opacity: 0;
  visibility: hidden;
  margin-bottom: 10vh;
  transition: var(--transition-slow);
}
#search-overlay.active,
#search-bar.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}
#search-bar label[for="search"],
label[for="search1"] {
  font-size: 0rem;
}
#search-bar,
#search-bar form {
  display: flex;
  align-items: center;
}
#search-bar #search {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--black);
  line-height: 60px;
  text-align: center;
  min-width: 75vw;
  height: 60px;
  padding: 0 10px;
  border-radius: 12px;
  border: 1px solid var(--white);
  transition: var(--transition-normal);
}
  #search-bar #search::placeholder {
    color: #707070;
  }
  #search-bar #search:focus::placeholder {
    color: transparent;
  }
#search-bar .fa-times {
  display: inline-flex;
  font-size: 3.375rem;
  color: var(--white);
  margin-left: 20px;
  transform: scale(0.8);
  cursor: pointer;
  transition: var(--transition-normal);
}
  #search-bar .fa-times:hover,
  #search-bar .fa-times:focus {
    color: var(--orange);
    transform: scale(1);
  }
@media screen and (min-width: 1025px) {
  #search-bar #search {
    font-size: 1.625rem;
    min-width: 830px;
  }
}
@media screen and (max-width: 580px) {
  #header .custom-logo-link {
    width: 100px;
  }
  #search-bar .fa-times {
    font-size: 2.375rem;
  }
}
@media only screen and (hover: none) and (pointer: coarse) {
  #header .custom-logo-link {
    width: 100px;
  }
  #search-bar .fa-times {
    font-size: 2.375rem;
  }
}

/* hero banner */

#hero {
  position: relative;
  min-height: 40vh;
  background: var(--white);
}
  #hero .hero-image {
    position: absolute;
    z-index: 7;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
    #hero .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  #hero:not(.interior):after {
    content: '';
    position: absolute;
    z-index: 8;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 98px;
    background-image: url('../images/wave-bg.png');
    background-size: cover;
  }
  #hero .location-marker {
    content: '';
    position: absolute;
    z-index: 9;
    bottom: 150px;
    right: var(--wp--style--root--padding-right);
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px 20px;
    background: rgba(133,124,147,0.7);
    border-radius: 50px;
    font-size: 13px;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: 0.5px;
  }
@media screen and (min-width: 769px) {
  #hero {
    min-height: 800px;
  }
}

/* footer */

#footer {
  position: relative;
  padding: 100px 0;
  margin-top: auto;
  background: var(--storm);
}
#footer.private-footer {
  padding: 30px 0;
}
#footer .footer-background {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
  #footer .footer-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
  }
#footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: none;
  gap: 40px;
  padding: 0 15vw;
}
@media screen and (max-width: 1366px) {
  #footer .container {
    padding-right: 10vw;
    padding-left: 10vw;
  }
}
@media screen and (max-width: 1024px) {
  #footer .container {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
#footer.private-footer .container {
  justify-content: center;
}
#footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
  #footer .footer-content .custom-logo-link {
    position: relative;
    z-index: 9;
    display: block;
    width: 200px;
    height: auto;
  }
  #footer.private-footer .footer-content .custom-logo-link {
    width: 110px;
  }
    #footer .footer-content .custom-logo-link img {
      width: 100%;
      max-width: none;
    }
.footer-logo__socials {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 30px;
}
#footer.private-footer .footer-logo__socials {
  width: 100%;
  flex-direction: row-reverse;
  align-items: center;
}
#footer .footer-socials {
  display: flex;
  gap: 20px;
}
  #footer .footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 26px;
    color: var(--storm);
    background: var(--white);
    border-radius: 50%;
  }
  #footer.private-footer .footer-socials a {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
    #footer .footer-socials a:hover,
    #footer .footer-socials a:focus {
      color: var(--white);
      background: var(--orange);
    }
  #footer .footer-logo__socials img {
    max-width: 170px;
  }
.footer-nav a {
  display: inline-block;
  font-size: clamp(0.9375rem, 0.7598rem + 0.4902vw, 1.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  padding: 4px 0;
}
  .footer-nav li:hover a,
  .footer-nav li:focus a {
    color: var(--orange);
  }
.footer-nav h4 {
  font-size: clamp(1.25rem, 0.8946rem + 0.9804vw, 1.875rem);
}
.footer-map a {
  display: block;
}
.footer-map img {
  border: 8px solid rgba(255,255,255,0.2);
  border-radius: 8px;
}
#footer .copyright {
  flex-basis: 100%;
  font-size: 15px;
  color: var(--white);
  letter-spacing: 1px;
}
@media (min-width: 1201px) {
  #footer .container {
    justify-content: space-between;
  }
  .footer-map {
    flex: 1;
    justify-items: flex-end;
  }
}
@media (max-width: 1200px) {
  #footer .copyright {
    text-align: center;
  }
}
@media (max-width: 768px) {
  #footer {
    padding: 60px 0;
  }
  #footer .footer-content {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-areas: 'logo logo' 'nav1 nav2';
    gap: 3rem 2rem;
  }
  .footer-logo__socials {
    grid-area: logo;
    align-items: center;
  }
  .footer-nav:nth-child(2) {
    grid-area: nav1;
  }
  .footer-nav:nth-child(3) {
    grid-area: nav2;
  }
}

/* share buttons modal */

.share-modal {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.6);
	z-index: 1000;
  opacity: 0;
	transition: opacity 0.3s ease;
}
.share-modal.visible {
  opacity: 1;
}
.share-modal[hidden] {
	display: none;
}
.share-modal__inner {
	position: relative;
	max-width: 460px;
	width: 90%;
	padding: 3.4rem 2rem 2rem;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.share-modal__close {
	position: absolute;
  top: 10px;
  right: 20px;
	border: 0;
	background: 0;
	font-size: 2.2rem;
  color: var(--storm);
	cursor: pointer;
}
  .share-modal__close:hover,
  .share-modal__close:focus {
    color: var(--orange);
    transform: scale(1.1);
  }
.share-options {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
	margin-top: 1.5rem;
}
.share-option {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.6rem 1rem;
	border: 0;
	border-radius: 6px;
	background: #ebebeb;
	color: #111;
	font-size: 0.95rem;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
  transition: var(--transition-normal);
}
.share-option:hover,
.share-option:focus {
	background: var(--shale);
}
#share-modal-title {
	font-size: clamp(1.5rem, 1.2868rem + 0.5882vw, 1.875rem);
  color: var(--seafarer);
	text-align: center;
}
@media (max-width: 580px) {
  .share-options {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* gravity forms */

.gform_heading {
  padding-bottom: 40px !important;
}
.gform_validation_errors {
  margin-bottom: 40px !important;
}
.gform-theme--framework .gfield--input-type-datepicker.gfield--datepicker-default-icon .ginput_container_date input {
	width: 100% !important;
}
.gform-theme--framework .gf_page_steps {
  justify-content: center;
  margin-block-end: 0 !important;
}
.gform-theme--framework .gf_page_steps .gf_step_number {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  background: var(--fog);
  border-radius: 50%;
  border: 0;
}
.gform-theme--framework .gf_page_steps .gf_step_active .gf_step_number {
  color: var(--white);
  background: var(--seafarer);
}
.gform-theme--framework .gf_page_steps .gf_step_first.gf_step_last {
  display: none;
}
.gform-theme--framework .gf_page_steps .gf_step_label {
  font-size: 18px;
  font-weight: 600;
  color: var(--storm);
  letter-spacing: 1px;
  line-height: 1.2;
}
.gform_wrapper {
  margin: 0 auto;
}
.gform_required_legend {
  display: none;
}
.gfield_required.gfield_required_asterisk {
  font-size: 16px !important;
}
.gform_wrapper .ginput_container input,
.gform_wrapper .ginput_container select {
  font-size: 18px !important;
}
.gfield-choice-input + label {
  cursor: pointer;
}
.gform_button.button,
.gform_next_button,
.gform_prev_button,
.gform_previous_button {
  padding: 15px 25px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--white);
  line-height: 1.1 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  border: 1px solid var(--orange) !important;
  border-radius: 50px !important;
  text-align: center !important;
  transition: var(--transition-normal) !important;
  cursor: pointer !important;
}
  .gform_button.button:hover,
  .gform_button.button:focus {
    color: var(--white) !important;
    background: var(--seafarer) !important;
    border: 1px solid var(--seafarer) !important;
  }
.gform_previous_button {
  border: 1px solid var(--breeze) !important;
}
@media screen and (min-width: 1025px) {
  .gform_validation_errors {
    max-width: 70vw !important;
    margin: 0 auto 40px !important;
  }
  .gform_wrapper form#gform_2,
  .gform_wrapper form#gform_3,
  .gform_wrapper form {
    max-width: 50vw !important;
    margin: 0 auto !important;
  }
}
@media screen and (min-width: 451px) {
  .gform-theme--framework .gf_page_steps .gf_step {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 450px) {
  .gform-theme--framework .gf_page_steps {
    justify-content: start;
    margin-bottom: 50px !important;
  }
  .gform-theme--framework .gf_page_steps .gf_step_number {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}

/* gutenberg styles */

:root :where(.is-layout-constrained) > * {
  margin-block-start: 1.5rem;
}
:root :where(.is-layout-constrained) > .wp-block-heading:not(:first-of-type) {
  margin-block-start: 2rem;
}
.is-layout-flex {
  align-items: baseline;
}
.wp-block-group {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}
body > .wp-block-group {
  padding-right: 15vw;
  padding-left: 15vw;
}
body > .wp-block-group p {
  margin-bottom: 20px;
}
.has-global-padding > .wp-block-image.alignfull {
  margin-right: 0;
  margin-left: 0;
}
@media screen and (max-width: 1366px) {
  body > .wp-block-group {
    padding-right: 10vw;
    padding-left: 10vw;
  }
}
@media screen and (max-width: 1024px) {
  body > .wp-block-group {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
.wp-block-group > .wp-block-group.wp-block-group-is-layout-flow {
  padding-right: 0;
  padding-left: 0;
}
.wp-block-group p + p {
  margin-top: 30px;
}
#hero + .wp-block-group {
  padding-top: 20px;
  padding-bottom: 80px;
}
.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: none;
}
.wp-block-media-text:last-of-type {
  padding-bottom: 30px;
}
.has-haze-background-color + .has-haze-background-color {
  padding-top: 20px;
}
.wp-block-embed {
  padding: 30px 0;
}
.wp-block-pullquote {
  padding: 0;
}
.wp-block-pullquote p {
  position: relative;
  display: inline;
  font-size: clamp(1.25rem, 1.1677rem + 0.3659vw, 1.625rem);
  font-weight: 500;
  color: var(--storm);
  line-height: 1.4;
  margin: 0;
}
  .wp-block-pullquote p:before,
  .wp-block-pullquote p:after {
    position: absolute;
    font-family: var(--icons);
    font-size: 38px;
    font-weight: 700;
    color: var(--sky);
    opacity: 0.3;
  }
  .wp-block-pullquote p:before {
    top: -20px;
    left: -30px;
    content: '\f10d';
  }
  .wp-block-pullquote p:after {
    bottom: -20px;
    right: -30px;
    content: '\f10e';
  }
.wp-block-pullquote cite {
  font-size: 1rem;
  font-weight: 700;
  font-style: normal;
  color: var(--atlantic);
  line-height: 1.2;
  margin: 25px 0 0;
}
@media (min-width: 1025px) {
  div:not(#news-content) ~ .wp-block-pullquote {
    max-width: 60vw;
  }
}
@media (max-width: 1024px) {
  .wp-block-columns,
  .wp-block-buttons {
    flex-direction: column !important;
    flex-wrap: wrap;
    align-items: center;
  }
}
@media (max-width: 768px) {
  body .is-layout-flex {
    flex-direction: column;
  }
  body .is-layout-flex.wp-container-core-group-is-layout-f286d47d {
    flex-direction: column-reverse;
  }
  .wp-block-group {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.wp-block-buttons {
  margin-bottom: 30px !important;
}
.wp-block-buttons + * {
  margin-top: 60px;
}
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 25px;
  font-family: var(--text);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 50px;
  text-align: center;
  transition: var(--transition-normal);
  cursor: pointer;
}
:root :where(.wp-block-button.is-style-outline--1 .wp-block-button__link) {
  padding: 15px 25px !important;
  border-width: 1px !important;
}
.wp-block-button__link:hover,
.wp-block-button__link:focus {
  color: var(--white);
  background: var(--seafarer);
  border: 1px solid var(--seafarer);
}
  .wp-block-button__link:after {
    position: relative;
    top: 1px;
    content: '\f178';
    font-family: var(--icons);
    line-height: 1.1;
  }
.wp-block-image,
.wp-block-image img {
  max-height: 100%;
}

/* vertical‑align helper classes for Group→Row and Columns */
.vac-align-flex-start { align-items: flex-start !important; }
.vac-align-center     { align-items: center      !important; }
.vac-align-flex-end   { align-items: flex-end    !important; }
.vac-align-stretch    { align-items: stretch     !important; }
.vac-align-baseline   { align-items: baseline    !important; }

/* media & text block */

.wp-block-media-text {
  margin-block-end: 60px;
}
.wp-block-media-text > .wp-block-media-text__content {
  background: var(--haze);
  padding: 3rem 2rem 2rem;
  margin: -1rem 0;
  border-radius: 0 0 20px 20px;
}
.has-haze-background-color .wp-block-media-text > .wp-block-media-text__content {
  background: var(--white);
}
.wp-block-media-text .wp-block-media-text__media img {
  border-radius: 20px;
}
@media (min-width: 600px) {
	.wp-block-media-text.image-on-right-custom {
		grid-template-areas: "content media";
		grid-template-columns: 1fr auto;
	}
	.wp-block-media-text.image-on-right-custom .wp-block-media-text__media {
		grid-column: 2;
    width: auto;
		max-width: 100%;
	}
  .wp-block-media-text.image-on-right-custom .wp-block-media-text__media img {
    width: 100%;
    height: auto;
    display: block;
  }
  .wp-block-media-text > .wp-block-media-text__content {
    padding: 2rem;
    margin: 0;
  }
  .wp-block-media-text > .wp-block-media-text__content .wp-block-buttons {
    margin-top: 20px !important;
  }
	.wp-block-media-text.image-on-right-custom .wp-block-media-text__content {
    padding: 0;
		grid-column: 1;
	}
  .wp-block-media-text > .wp-block-media-text__content {
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 0 20px 20px 0;
  }
  .wp-block-media-text.has-media-on-the-right > .wp-block-media-text__content {
    border-radius: 20px 0 0 20px;
  }
}

/* venues - singular  */

#venue-banner .container {
  display: flex;
  gap: 60px;
}
#venue-image,
#venue-description {
  flex-basis: 50%;
}
#venue-image {
  position: relative;
}
  #venue-image img {
    width: 100%;
    object-fit: cover;
  }
  #venue-image .open-video-modal {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    padding-left: 10px;
    font-size: 60px;
    color: var(--white);
    background: var(--orange);
    border-radius: 50%;
  }
    #venue-image .open-video-modal:hover,
    #venue-image .open-video-modal:focus {
      transform: scale(1.05);
    }
    #venue-image .open-video-modal:active {
      transform: scale(1);
    }
#venue-description {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
}
  #venue-description > h2 {
    margin: 0;
  }
  #venue-description header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
  }
    #venue-description header h1 {
      flex: 1;
      margin: 0;
    }
    #venue-description header .share-button {
      position: relative;
      bottom: auto;
      right: auto;
    }
  #venue-description .date {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    margin-top: -25px;
  }
    #venue-description .date i {
      color: var(--atlantic);
    }
  #venue-description .venue-address {
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
  }
    #venue-description .venue-address i {
      font-size: 42px;
      color: var(--orange);
    }
    #venue-description .venue-address p {
      font-size: clamp(0.875rem, 0.7907rem + 0.2326vw, 1rem);
      font-weight: 700;
      line-height: 1.2;
      margin: 0;
    }
    #venue-description .venue-address a.map-link {
      display: inline-flex;
      align-self: normal;
      align-items: center;
      font-size: 14px;
      font-weight: 500;
      color: var(--atlantic);
      text-decoration: underline;
      padding-left: 15px;
      border-left: 1px solid #b4b4b4;
    }
      #venue-description .venue-address a:hover,
      #venue-description .venue-address a:focus {
        color: var(--orange);
      }
  #venue-description .venue-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    gap: 20px;
    margin-top: auto;
  }
    #venue-description .venue-buttons > div {
      display: flex;
      flex-direction: column;
    }
      #venue-description .venue-buttons > div span {
        display: block;
        font-size: 14px;
        text-align: center;
      }
.video-modal-wrap {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: fit-content;
  min-width: 50vw;
  border-radius: 10px;
  z-index: 9999;
}
.video-modal {
  background: #000;
  padding: 0.8rem;
  border-radius: 8px;
  height: auto;
}
.close-video-modal {
  position: absolute;
  top: -60px;
  left: 49%;
  transform: translateX(-50%);
  font-size: 3.375rem;
  color: var(--white);
  text-decoration: none;
  transform: scale(0.8);
}
  .close-video-modal:hover,
  .close-video-modal:focus {
    color: var(--orange);
    transform: scale(1);
  }
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 0;
}
@media screen and (max-width: 768px) {
  .video-modal-wrap {
    min-width: 80vw;
  }
  #venue-image .open-video-modal {
    width: 80px;
    height: 80px;
    font-size: 42px;
    padding-left: 6px;
  }
}
#venue-details {
  background: var(--haze);
}
#venue-details .container {
  display: flex;
  gap: 60px;
  align-items: start;
}
  #venue-details h2 {
    color: var(--seafarer);
  }
#venue-sidebar {
  flex-basis: 30%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: baseline;
  padding: 30px;
  background: var(--white);
  border-radius: 20px;
}
  #venue-sidebar hr {
    margin: 0;
  }
  #venue-sidebar > h2 {
    margin: 0;
  }
  #venue-sidebar > picture img {
    border-radius: 0;
  }
  #venue-sidebar .venue-table {
    font-size: 90%;
    line-height: 1.2;
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
  }
    #venue-sidebar .venue-table .fa-star,
    #venue-sidebar .venue-table .fa-star-half-alt {
	  font-size: clamp(0.8125rem, 0.5982rem + 0.4464vw, 1rem);
      color: var(--orange);
    }
    #venue-sidebar .venue-table tbody td {
      padding: 20px;
    }
    #venue-sidebar .venue-table tbody tr td:first-child {
      width: 55%;
    }
    #venue-sidebar .venue-table tbody tr td:last-child {
      width: 45%;
    }
    #venue-sidebar .venue-table tbody tr:nth-child(odd) {
      background: var(--haze);
    }
    #venue-sidebar .amenities-list {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
      #venue-sidebar .amenities-list div,
      #venue-sidebar .amenities-list > label {
        display: flex;
        gap: 10px;
        align-items: center;
      }
      #venue-sidebar .amenities-list i {
        font-size: 20px;
        color: var(--orange);
      }
      #venue-sidebar .amenities-list i.disabled {
        color: var(--fog);
      }
    .sidebar-cta {
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: center;
      width: 100%;
      padding: 30px;
      margin-top: 30px;
      background: var(--seafarer);
      text-align: center;
      border-radius: 20px;
    }
    .sidebar-cta.moved {
      margin-top: 0;
    }
      .sidebar-cta p {
        font-size: clamp(1.125rem, 1.0701rem + 0.2439vw, 1.375rem);
        color: var(--white);
        margin: 0;
      }
      .sidebar-cta h2 {
        font-size: clamp(1.5rem, 1.3902rem + 0.4878vw, 2rem);
        color: var(--white);
        text-transform: none;
        margin: 0;
      }
      .sidebar-cta .button:hover,
      .sidebar-cta .button:focus {
        color: var(--seafarer);
        background: var(--white);
      }
#venue-content {
  flex-basis: 70%;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: baseline;
  padding: 30px;
  background: var(--white);
  border-radius: 20px;
}
  #venue-content .venue-overview p:last-child {
    margin-bottom: 0;
  }
  #venue-content .button.outlined {
    align-self: center;
  }
  #venue-content .additional-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
/* .gallery-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 2.06fr 1fr;
  grid-auto-rows: auto;
  grid-template-areas:
    "large top"
    "large bottom";
}
.gallery-grid > a:nth-child(1) {
  height: 100%;
  grid-area: large;
}
  .gallery-grid > a:nth-child(1) img {
    height: 100%;
    object-fit: cover;
  }
.gallery-grid > a:nth-child(2) {
  grid-area: top;
}
.gallery-grid > a:nth-child(3) {
  grid-area: bottom;
}
.gallery-grid .gallery-grid-row a {
  grid-column: 1 / -1;
  display: inline-block;
  width: calc(33.333% - 13.33px);
}
.gallery-grid-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
} */
.lightbox-thumb {
  position: relative;
  background: var(--storm);
  border-radius: 20px;
  flex: 1;
  display: block;
}
  .lightbox-thumb picture {
    display: block;
    width: 100%;
    height: 100%;
  }
    .lightbox-thumb picture img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  .lightbox-thumb img {
    border-radius: 20px;
    transition: var(--transition-normal);
  }
.gallery-grid-row .lightbox-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
  .lightbox-thumb:hover img {
    opacity: 0.3;
  }
.lightbox-thumb i {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  font-size: 60px;
  color: var(--white);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  transition: var(--transition-normal);
  pointer-events: none;
}
  .lightbox-thumb:hover i {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
@media screen and (min-width: 1025px) {
  #venue-details.news .container {
    max-width: 1366px;
  }
}
@media screen and (max-width: 1024px) {
  #venue-banner .container {
    flex-direction: column-reverse;
  }
  #venue-details .container {
    flex-direction: column;
  }
  #venue-content {
    gap: 30px;
  }
  .gallery-grid,
  .gallery-grid-row {
    gap: 10px;
  }
  .lightbox-thumb:hover i {
    transform: translate(-50%, -50%) scale(0.6);
  }
}
@media screen and (max-width: 1024px) {
  .gallery-grid .gallery-grid-row a {
    height: 90px;
    width: calc(17.666% - 17.666px);
  }
}
@media screen and (max-width: 768px) {
  .gallery-grid .gallery-grid-row a {
    width: calc(18.1% - 18.1px);
  }
}
@media screen and (max-width: 580px) {
  #venue-sidebar > picture img {
    max-width: 200px;
  }
  #venue-sidebar .venue-table tbody,
  #venue-sidebar .venue-table tbody tr {
    display: flex;
    flex-direction: column;
  }
  #venue-sidebar .venue-table tbody tr {
    padding: 15px 0;
  }
  #venue-sidebar .venue-table tbody tr td,
  #venue-sidebar .venue-table tbody tr td:first-child,
  #venue-sidebar .venue-table tbody tr td:last-child {
    width: 100%;
    padding: 0 15px;
  }
  #venue-description .venue-buttons {
    gap: 10px;
  }
  #venue-description .venue-buttons .button {
    padding: 10px 15px;
  }
  .gallery-grid-row {
    gap: 10px;
  }
  .gallery-grid .gallery-grid-row a {
    height: 50px;
    width: calc(17% - 10px);
    border-radius: 10px;
  }
  .gallery-grid .gallery-grid-row a img {
    border-radius: 10px;
  }
  .gallery-grid .gallery-grid-row .lightbox-thumb i {
    font-size: 30px;
  }
}

/* venues/accommodations/tours/events archive */

#venue-archive {
  background: var(--haze);
}
#venue-archive .container {
  display: flex;
  gap: 60px;
}
#venue-archive #venue-sidebar {
  flex-basis: 25%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: normal;
  padding: 0;
  background: transparent;
  border-radius: 0;
}
  #venue-archive #venue-sidebar .found-posts {
    display: flex;
    gap: 30px;
    padding: 10px 15px;
    background: var(--seafarer);
    border-radius: 12px;
    font-size: clamp(0.875rem, 0.7907rem + 0.2326vw, 1rem);
    color: var(--white);
  }
#venue-filters {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: baseline;
  width: 100%;
  padding: 30px;
  background: var(--white);
  border-radius: 20px;
}
  #venue-filters h2 {
    font-size: clamp(1.5rem, 1.4177rem + 0.3659vw, 1.875rem);
    margin: 0;
  }
  #venue-filters .filter-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
    #venue-filters .filter-group > div {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    #venue-filters .filter-group > div.checkbox {
      flex-direction: row;
    }
    #venue-filters .filter-group > div.checkboxes {
      flex-direction: column;
    }
      #venue-filters .filter-group > div.checkboxes .heading {
        font-size: clamp(1.125rem, 1.0539rem + 0.1961vw, 1.25rem);
        margin-bottom: 10px;
      }
      #venue-filters .filter-group > div.checkboxes .checkbox label {
        font-size: 16px;
      }
    #venue-filters .filter-group .select-wrapper {
      position: relative;
      width: 100%;
    }
      #venue-filters .filter-group .select-wrapper i {
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        pointer-events: none;
        font-size: 16px;
        color: #474747;
      }
    #venue-filters .filter-group label {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    #venue-filters .filter-group select,
    #venue-filters .filter-group input[type="number"],
    #venue-filters .filter-group input[type="text"] {
      width: 100%;
      padding: 10px 20px;
      background-color: var(--white);
      border: 1px solid #8e8e8e;
      border-radius: 8px;
      font-size: 18px;
      color: var(--black);
      line-height: 1.1;
    }
    #venue-filters .filter-group select {
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
    }
      #venue-filters .filter-group option {
        color: var(--black);
      }
      #venue-filters .filter-group select:required:invalid,
      #venue-filters .filter-group option:first-child {
        color: #8e8e8e;
      }
    #venue-filters .filter-group .checkbox {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    #venue-filters .filter-group input[type="checkbox"] {
      width: 18px;
      height: 18px;
      margin: 0;
    }
    #venue-filters .reset-button {
      align-self: end;
      font-size: 14px;
      color: var(--atlantic);
      cursor: pointer;
      margin-top: 20px;
      border: 0;
      background: transparent;
      transition: var(--transition-normal);
    }
      #venue-filters .reset-button:hover,
      #venue-filters .reset-button:focus {
        color: var(--orange);
      }
    #venue-filters .tooltip {
      position: relative;
      display: inline-block;
      cursor: pointer;
      font-size: 16px;
      color: var(--atlantic);
    }
      #venue-filters .tooltip .tooltip-text {
        visibility: hidden;
        width: max-content;
        background: var(--atlantic);
        font-family: var(--text);
        font-size: 14px;
        font-weight: 400;
        color: var(--white);
        letter-spacing: 0.5px;
        text-align: center;
        padding: 9px 15px;
        border-radius: 8px;
        position: absolute;
        z-index: 1;
        bottom: 140%;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
        transition: opacity 0.3s;
        white-space: nowrap;
      }
      #venue-filters .tooltip:hover .tooltip-text {
        visibility: visible;
        opacity: 1;
      }
      #venue-filters .tooltip .tooltip-text::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: var(--atlantic) transparent transparent transparent;
      }
#venue-archive #venue-content.venue-list {
  flex-basis: 75%;
  background: transparent;
  border-radius: 0;
  padding: 0;
}
#venue-archive .searchable {
  display: none;
}
#venues-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}
  #venues-grid .venue-card {
    display: flex;
    flex-direction: column;
    min-height: 410px;
    background: var(--white);
    border-radius: 20px;
  }
  #venues-grid.events .venue-card {
    min-height: 430px;
  }
  #venues-grid a.venue-card:hover,
  #venues-grid a.venue-card:focus {
    box-shadow: 0 0 22px rgba(0, 0, 0, 0.2);
  }
  #venues-grid .venue-card-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }
  #venues-grid .venue-card-details h3 {
    margin-bottom: 0;
  }
  #venues-grid.virtual-tours .venue-card-details {
    flex-grow: 1;
    gap: 0;
  }
  #venues-grid.virtual-tours .venue-card-details h3 {
    margin-bottom: 15px;
  }
  #venues-grid.events .venue-card-details h3,
  #venues-grid.news .venue-card-details h3 {
    margin-bottom: 10px;
  }
  #venues-grid.news .venue-card-details .date-category {
    font-size: clamp(0.9375rem, 0.8963rem + 0.1829vw, 1.125rem);
  }
    #venues-grid.news .venue-card-details .date-category span.divider {
      color: var(--breeze);
      padding: 0 5px;;
    }
    #venues-grid.news .venue-card-details .date-category span.category {
      color: var(--atlantic);
    }
    #venues-grid.news .venue-card-details .event-date {
      min-height: 17px;
      font-size: 14px;
      color: var(--atlantic);
      line-height: 1.2;
      margin: 0;
    }
  #venues-grid.events .venue-card-details .event-dates,
  #venues-grid.events .venue-card-details .venue-card-organization {
    font-size: 14px;
    color: var(--atlantic);
    line-height: 1.2;
    margin: 0 0 5px;
  }
  #venues-grid.events .venue-card-details .event-dates {
    margin: 0 0 12px;
  }
  #venues-grid.events .venue-card-details .venue-card-organization {
    font-size: 18px;
    color: var(--seafarer);
    line-height: 1.2;
    margin: 0 0 5px;
  }
  #venues-grid.virtual-tours .venue-card-details .details-links {
    margin-top: auto;
  }
  #venues-grid.virtual-tours .venue-card-details a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid transparent;
    font-size: 18px;
  }
    #venues-grid.virtual-tours .venue-card-details a:hover,
    #venues-grid.virtual-tours .venue-card-details a:focus {
      color: var(--orange);
      background: var(--haze);
      border: 1px solid #dbdbdb;
    }
  #venues-grid.virtual-tours .venue-card-details i {
    font-size: 16px;
    padding-top: 3px;
    transition: var(--transition-normal);
  }
  #venues-grid.virtual-tours .venue-card-details i.fa-vr-cardboard,
  #venues-grid.virtual-tours .venue-card-details i.fa-circle-info {
    width: 25px;
    color: var(--orange);
    text-align: center;
    padding: 0;
  }
    #venues-grid.virtual-tours .venue-card-details a:hover i.fa-chevron-right,
    #venues-grid.virtual-tours .venue-card-details a:focus i.fa-chevron-right {
      padding-left: 5px;
    }
  #venues-grid .venue-card-details .max-capacity {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: clamp(0.8125rem, 0.7713rem + 0.1829vw, 1rem);
    color: var(--atlantic);
  }
  #venues-grid .venue-card-image {
    height: 275px;
    margin-top: auto;
  }
  #venues-grid.events .venue-card-image-link {
    display: block;
    height: 200px;
    margin-top: auto;
  }
  #venues-grid.events .venue-card-image {
    height: 200px;
  }
    #venues-grid img.venue-card-image,
    #venues-grid .venue-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      border-radius: 20px;
    }
    #venues-grid img.venue-card-image {
      height: 275px;
    }
    #venues-grid.events .venue-card-image,
    #venues-grid.events .venue-card-image img {
      object-position: top center;
    }
  #venues-grid.events .venue-card .button {
    align-self: flex-start;
  }
#no-results {
  width: 100%;
  padding: 30px;
  background: var(--white);
  border-radius: 20px;
}

@media screen and (max-width: 1200px) {
  #venue-archive #venue-sidebar {
    flex-basis: 30%;
  }
  #venue-archive #venue-content.venue-list {
    flex-basis: 70%;
  }
  #venues-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  #venue-archive #venue-sidebar {
    flex-basis: 35%;
  }
  #venue-archive #venue-content.venue-list {
    flex-basis: 65%;
  }
}
@media screen and (max-width: 768px) {
  #venue-archive .container {
    flex-direction: column;
  }
  #venue-archive #venue-sidebar,
  #venue-archive #venue-content.venue-list {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 580px) {
  #venues-grid {
    grid-template-columns: 1fr;
  }
  #venues-grid.venues {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
#tags-wrapper {
  padding-right: 3vw;
  padding-left: 3vw;
}
.post-tags {
  width: 100%;
  flex-basis: 100%;
  padding-right: var(--wp--style--root--padding-right);
  padding-left: var(--wp--style--root--padding-left);
  margin-bottom: 40px;
}
#venue-description .post-tags {
  padding: 0;
}
.post-tags.no-padding {
  padding-right: 0;
  padding-left: 0;
  margin-bottom: 0;
}
.post-tags.no-padding hr {
  margin: 25px 0 15px;
}
.associated-tags {
  font-size: 20px;
  color: var(--squall);
}
.post-tags.no-padding .associated-tags {
  font-size: 16px;
}
.associated-tags i {
  color: var(--lilac);
  margin-right: 7px;
}
.associated-tags span {
  display: inline-flex;
}
  .associated-tags a:hover,
  .associated-tags a:focus {
    color: var(--orange);
  }

/* image lightbox */

.lightbox {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lightbox img {
  max-width: 90%;
  max-height: 80vh;
  min-width: 80%;
  object-fit: contain;
  border-radius: 20px;
}
.lightbox #lightbox-caption {
  font-size: 1rem;
  color: var(--white);
  margin-top: 1vh;
}
#lightbox-close {
  position: absolute;
  top: 60px;
  right: 30px;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--white);
  transition: var(--transition-normal);
  cursor: pointer;
}
  #lightbox-close:hover,
  #lightbox-close:focus {
    color: var(--orange);
  }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  font-size: 4rem;
  color: var(--white);
  cursor: pointer;
  z-index: 10000;
  user-select: none;
  transform: scale(0.8);
  transition: var(--transition-normal);
}
  .lightbox-prev:hover,
  .lightbox-next:hover,
  .lightbox-prev:focus,
  .lightbox-next:focus {
    color: var(--orange);
    transform: scale(1);
  }
.lightbox-prev {
  left: 40px;
}
.lightbox-next {
  right: 40px;
}

/* jqueryui datepicker */

#ui-datepicker-div.ui-widget {
  font-family: var(--text);
  font-size: 0.75em;
}
.ui-widget-header:not(.ui-datepicker-header) {
  border: 1px solid var(--orange) !important;
  background: var(--orange) !important;
}
#ui-datepicker-div.ui-widget .ui-button,
#ui-datepicker-div.ui-widget .ui-state-default,
#ui-datepicker-div.ui-widget .ui-widget-content .ui-state-default,
#ui-datepicker-div.ui-widget .ui-widget-header .ui-state-default,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  color: var(--atlantic) !important;
}

/* news */

#venue-banner.news .container {
  align-items: center;
}
#news-content {
  background: var(--white);
  border-radius: 20px;
  padding: 30px 30px;
}
  #news-content .wp-block-heading {
    margin-top: 2.625rem;
  }
  #news-content .button.outlined {
    align-self: center;
    margin-bottom: 40px;
  }
#venues-grid.news .venue-card {
  min-height: 450px;
}
@media screen and (max-width: 1024px) {
  #venue-banner.news .container {
    gap: 30px;
  }
  #venue-banner.news .share-button {
    position: absolute;
    top: auto;
    bottom: -20px;
    right: 20px;
  }
  #venue-banner.news .share-button.no-hero {
    position: absolute;
    top: calc(100% + 30px);
    bottom: auto;
    right: 20px;
  }
}
@media screen and (max-width: 580px) {
  #venues-grid.news {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  #venues-grid.news .venue-card-image,
  #venues-grid.venues .venue-card-image {
    height: 140px;
  }
  #venues-grid.news .venue-card,
  #venues-grid.venues .venue-card {
    min-height: 0;
  }
  #venues-grid .venue-card-details h3 {
    word-break: break-word;
  }
}

/* team members */

#team-archive {
  background: var(--haze);
}
#team-archive .container {
  display: flex;
  gap: 60px;
}
#team-archive .team-group-title {
  color: var(--seafarer);
  grid-column: 1 / -1;
  margin: 0;
}
#team-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
#team-grid .team-group {
  grid-column: 1 / -1;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
}
#team-grid .team-group.sales-leadership {
  padding: 30px;
  background: rgba(192, 203, 194, 0.4);
  border-radius: 30px;
  justify-content: center;
}
  #team-grid .team-group.sales-leadership .team-group-title {
    color: var(--storm);
  }
  #team-grid .team-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: var(--white);
    border-radius: 20px;
    padding: 10px;
  }
  #team-grid .member-descriptive-heading {
    position: absolute;
    top: 15px;
    left: 30px;
    font-size: 14px;
    margin: 0;
  }
  #team-grid .meet-button {
    font-size: 16px;
    color: var(--seafarer);
  }
    #team-grid .meet-button:after {
      content: 'Meet Me';
      width: 90px;
      font-size: 16px;
      color: var(--seafarer);
      margin-left: 8px;
      transition: var(--transition-fast);
    }
    #team-grid .meet-button:hover,
    #team-grid .meet-button:focus,
    #team-grid .meet-button:hover:after,
    #team-grid .meet-button:focus:after {
      color: var(--orange);
    }
  #team-grid .team-card .member-image {
    position: relative;
  }
  #team-grid img.team-card-image,
  #team-grid .team-card-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: top center;
    border-radius: 20px;
  }
  #team-grid .team-card-image.default-image {
    object-position: bottom right;
  }
  #team-grid .team-card-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  #team-grid .team-card-details h3 {
    margin: 0;
    word-break: break-word;
  }
    #team-grid .team-card-details h3 span {
      font-size: 14px;
      color: var(--sky);
      margin-left: 10px;
    }
  #team-grid .team-card .button {
    margin-top: auto;
  }
  #team-grid .team-card-details .member-title {
    font-weight: 700;
    color: var(--atlantic);
    line-height: 1.2;
  }
  #team-grid .team-card-details .member-subtitle {
    font-size: 16px;
    margin: 0;
  }
  #team-grid .team-contact-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: clamp(0.9375rem, 0.8963rem + 0.1829vw, 1.125rem);
  }
  #team-grid .team-contact-details .contact i {
    width: 20px;
    color: var(--orange);
  }
  #team-grid .team-contact-details .contact:hover,
  #team-grid .team-contact-details .contact:focus {
    color: var(--atlantic);
  }
@media screen and (min-width: 769px) {
  #team-grid .meet-button {
    position: absolute;
    bottom: -10px;
    right: -10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  #team-grid .meet-button i {
    position: relative;
    z-index: 9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    font-size: 30px;
    color: var(--white);
    background: var(--orange);
    border-radius: 50%;
  }
  #team-grid .meet-button:after {
    content: 'Meet Me';
    position: absolute;
    z-index: 8;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 120px;
    font-size: 20px;
    color: var(--white);
    background: var(--atlantic);
    padding: 5px 0 5px 15px;
    border-radius: 20px 0 0 20px;
    opacity: 0;
    transition: var(--transition-fast);
  }
  #team-grid .meet-button:hover i,
  #team-grid .meet-button:focus i {
    color: var(--white);
    background: var(--atlantic);
  }
  #team-grid .meet-button:hover:after,
  #team-grid .meet-button:focus:after {
    right: 90%;
    opacity: 1;
    color: var(--white);
  }
}
@media screen and (max-width: 1366px) {
  #team-grid .team-group {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  #team-grid .team-group {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  #team-grid .team-group {
    grid-template-columns: 1fr;
  }
  #team-grid:not(.champions) .team-card {
    flex-direction: row;
    gap: 30px;
  }
  #team-grid:not(.champions) .team-card .member-image {
    flex-basis: 200px;
  }
  #team-grid:not(.champions) img.team-card-image,
  #team-grid:not(.champions) .team-card-image img {
    height: auto;
  }
  #team-grid .team-card .team-card-details {
    flex-basis: 100%;
  }
  #team-grid .member-descriptive-heading {
    position: relative;
    left: 0;
    top: 0;
  }
  #team-grid img.team-card-image, #team-grid .team-card-image img {
    height: 260px;
  }
}
@media screen and (max-width: 580px) {
  #team-grid:not(.champions) .team-card {
    flex-direction: column;
  }
  #team-grid .team-card-details h3 span {
    display: block;
    margin-left: 0;
  }
  #team-grid .member-descriptive-heading {
    position: absolute;
    top: 15px;
    left: 30px;
  }
  #team-grid .meet-button {
    position: absolute;
    bottom: -10px;
    right: -10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  #team-grid .meet-button i {
    position: relative;
    z-index: 9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    font-size: 30px;
    color: var(--white);
    background: var(--orange);
    border-radius: 50%;
  }
  #team-grid .meet-button:after {
    content: 'Meet Me';
    position: absolute;
    z-index: 8;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 120px;
    font-size: 20px;
    color: var(--white);
    background: var(--atlantic);
    padding: 5px 0 5px 15px;
    border-radius: 20px 0 0 20px;
    opacity: 0;
    transition: var(--transition-fast);
  }
  #team-grid .meet-button:hover i,
  #team-grid .meet-button:focus i {
    color: var(--white);
    background: var(--atlantic);
  }
  #team-grid .meet-button:hover:after,
  #team-grid .meet-button:focus:after {
    right: 90%;
    opacity: 1;
    color: var(--white);
  }
}

/* take the lead champions */

#team-grid.champions {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(5, 1fr);
}
#team-grid.champions .year-heading {
  grid-column: 1 / -1;
}
#team-grid.champions .year-heading:not(:first-of-type) {
  margin-top: 60px;
}
@media screen and (max-width: 1366px) {
  #team-grid.champions {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 1200px) {
  #team-grid.champions {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  #team-grid.champions {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 580px) {
  #team-grid.champions {
    grid-template-columns: 1fr;
  }
}
#venue-banner.champion h1 {
  margin-bottom: 20px;
}
#venue-banner.champion #venue-description {
  flex-basis: 70%;
  display: block;
}
#venue-image img {
  object-fit: contain;
}

@media screen and (min-width: 1025px) {
  #venue-banner.champion .container {
    align-items: flex-start;
  }
  #venue-banner.champion #venue-image {
    position: sticky;
    top: 140px;
    flex-basis: 30%;
  }
  body.admin-bar #venue-banner.champion #venue-image {
    top: 172px;
  }
  #venue-image img {
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center center;
  }
}
@media screen and (max-width: 1024px) {
  #venue-banner.champion .container {
    flex-direction: column;
  }
}

/* suppliers */

.supplier-categories {
  display: flex;
  flex-direction: column;
  width: 100%;
}
#venue-content.suppliers-list {
  position: relative;
  background: var(--atlantic);
  gap: 0;
}
.supplier-categories.desktop-only {
  display: flex;
}
.supplier-categories.mobile-only {
  display: none;
}
  #venue-content.suppliers-list .category-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
  }
  #venue-content.suppliers-list .share-button {
    z-index: 9;
    position: relative;
    inset: auto;
    justify-self: flex-end;
    border-color: var(--atlantic);
    background: var(--seafarer);
  }
  #venue-content.suppliers-list .share-button:hover,
  #venue-content.suppliers-list .share-button:focus {
    background: var(--orange);
  }
.supplier-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
}
.supplier-card:not(:last-child) {
  margin-bottom: 15px;
}
  .supplier-card .supplier-tags {
    font-size: 16px;
    color: var(--squall);
  }
  .supplier-card .supplier-tags i {
    color: var(--lilac);
    margin-right: 7px;
  }
  .supplier-card .supplier-tags span {
    display: inline-flex;
  }
  .supplier-card .supplier-card-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .supplier-card .supplier-card-details h3 {
    margin-bottom: 0;
  }
  .supplier-card .supplier-overview {
    margin: 0;
  }
.no-suppliers-message {
  color: var(--white);
}
#supplier-grid {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .supplier-categories a {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    color: var(--seafarer);
    text-transform: uppercase;
    padding: 10px 0;
  }
  .supplier-categories a:not(:last-child) {
    border-bottom: 1px solid #b4b4b4;
  }
  .supplier-categories a:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 0;
    top: -1px;
    left: -30px;
    width: 0px;
    height: calc(100% + 2px);
    background: var(--atlantic);
    transition: var(--transition-normal);
  }
  .supplier-categories a span {
    position: relative;
    z-index: 9;
    transition: var(--transition-normal);
  }
  .supplier-categories a:hover span,
  .supplier-categories a:focus span {
    color: var(--atlantic);
  }
  .supplier-categories a.active span {
    color: var(--white);
    background: var(--atlantic);
  }
  .supplier-categories a.active:before {
    width: calc(100% + 121px);
  }
}
@media (max-width: 768px) {
  .supplier-categories.desktop-only {
    display: none;
  }
  .supplier-categories.mobile-only {
    display: flex;
  }
}
@media screen and (max-width: 580px) {
  #venue-content.suppliers-list .share-button {
    aspect-ratio: 1 / 1;
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .supplier-card {
    flex-direction: column;
    gap: 20px;
  }
  #venue-filters .supplier-categories .select-wrapper {
    position: relative;
    width: 100%;
  }
    #venue-filters .supplier-categories .select-wrapper i {
      position: absolute;
      top: 50%;
      right: 15px;
      transform: translateY(-50%);
      pointer-events: none;
      font-size: 16px;
      color: #474747;
    }
  #venue-filters .supplier-categories label {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  #venue-filters .supplier-categories select {
    width: 100%;
    padding: 10px 20px;
    background-color: var(--white);
    border: 1px solid #8e8e8e;
    border-radius: 8px;
    font-size: 18px;
    color: var(--black);
    line-height: 1.1;
  }
  #venue-filters .supplier-categories select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  #venue-filters .supplier-categories option {
    color: var(--black);
  }
  #venue-filters .supplier-categories select:required:invalid,
  #venue-filters .supplier-categories option:first-child {
    color: #8e8e8e;
  }
}

/* search results */

#tags-wrapper h1 {
  text-transform: capitalize;
  margin: 0;
}
#tags-wrapper .share-button {
  top: 50%;
  transform: translateY(-50%);
  margin-block-start: 0;
}
#tags-wrapper .post-count {
  font-size: clamp(1.125rem, 0.9564rem + 0.4651vw, 1.375rem);
  font-weight: 700;
  margin-block-start: 0;
}
  #tags-wrapper .post-count span {
    color: var(--atlantic);
    text-transform: capitalize;
  }
#tags-wrapper + .container {
  width: 100%;
}
#search-results-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 0 80px;
  padding: 0;
  margin-bottom: 60px;
}
#search-results-grid.tags-results {
  display: flex;
  flex-direction: column;
}
  #search-results-grid article {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    background: var(--white);
    border-top: 2px solid var(--squall);
  }
  #search-results-grid article .result-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  #search-results-grid article .result-card-image img,
  #search-results-grid article img.result-card-image {
    width: 90px;
    height: 90px;
    object-fit: cover;
    object-position: top center;
  }
  #search-results-grid article .result-card-image.contained img,
  #search-results-grid article img.result-card-image.contained {
    object-fit: contain;
    object-position: center center;
  }
  #search-results-grid article h2 {
    font-size: clamp(1.25rem, 1.0814rem + 0.4651vw, 1.5rem);
    letter-spacing: 0;
    margin: 0;
  }
    #search-results-grid article h2 a:hover {
      color: var(--squall);
    }
  #search-results-grid article .post-type {
    font-size: 13px;
    font-weight: 500;
    color: var(--atlantic);
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  #search-results-grid article .entry-title {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  #search-results-grid article .button__tags {
    margin-top: auto;
  }
.post-type-filter {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.post-type-filter .select-wrapper {
  position: relative;
  width: 100%;
}
  .post-type-filter .select-wrapper i {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 16px;
    color: #474747;
  }
.post-type-filter label {
  display: none;
}
.post-type-filter select {
  width: 100%;
  padding: 10px 20px;
  background-color: var(--white);
  border: 1px solid #8e8e8e;
  border-radius: 8px;
  font-size: 18px;
  color: var(--black);
  line-height: 1.1;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
  .post-type-filter option {
    color: var(--black);
  }
  .post-type-filter select:required:invalid,
  .post-type-filter option:first-child {
    color: #8e8e8e;
  }
.post-type-filter form {
  display: flex;
  align-items: center;
  gap: 10px;
}
.post-type-filter input:not(#search1),
.post-type-filter form:not(.search-filter-form) {
  width: 100%;
  padding: 10px 20px;
  background-color: var(--white);
  border: 1px solid #8e8e8e;
  border-radius: 8px;
  font-size: 18px;
  color: var(--black);
  line-height: 1.1;
}
.post-type-filter form:not(.search-filter-form) {
  padding: 4px 10px;
}
.post-type-filter form:not(.search-filter-form) input {
  width: 100%;
  padding: 6px 0 6px 10px;
  border: 0;
}
.post-type-filter .select-wrapper ul {
  margin: 0 !important;
  padding: 0;
  list-style-type: none !important;
}
  .post-type-filter .select-wrapper ul li {
    margin-bottom: 10px;
  }
  .post-type-filter .select-wrapper ul a {
    display: flex;
    align-items: center;
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
  }
  .post-type-filter .select-wrapper ul a:hover,
  .post-type-filter .select-wrapper ul a:focus {
    color: var(--orange);
  }
  .post-type-filter .select-wrapper ul .count {
    font-size: 90%;
    font-weight: 400;
    color: var(--lilac);
    padding-left: 10px;
  }
.search-button-full {
  border: 0;
  background: transparent;
  cursor: pointer;
}
  .search-button-full i {
    font-size: 24px;
    color: var(--atlantic);
    transition: var(--transition-normal);
  }
  .search-button-full:hover i,
  .search-button-full:focus i {
    color: var(--orange);
  }
@media screen and (max-width: 1200px) {
  #search-results-grid {
    grid-template-columns: 2fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .post-type-filter {
    flex-direction: column;
    gap: 10px;
  }
  .post-type-filter form {
    gap: 0;
  }
  .post-type-filter input {
    min-width: 0;
  }
  #search-results-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
  }
  #search-results-grid article {
    flex-direction: row;
    gap: 20px;
    padding: 20px;
    align-items: start;
  }
  #search-results-grid article .result-card-image {
    width: 160px;
    height: 160px;
    object-fit: cover;
    object-position: top center;
  }
  #search-results-grid article .result-card-image.default-image {
    object-position: top right;
  }
}
@media screen and (max-width: 580px) {
  #search-results-grid {
    grid-template-columns: 1fr;
  }
  #search-results-grid article .result-card-image {
    width: 100%;
    height: 220px;
    object-position: center center;
  }
  #search-results-grid article .result-card-image.default-image {
    object-position: center right;
  }
  .post-type-filter input:not(#search1),
  .post-type-filter form:not(.search-filter-form),
  .post-type-filter form:not(.search-filter-form) input {
    min-width: 90%;
  }
}

/* faq accordion */

@media screen and (min-width: 1025px) {
  .accordion-wrapper {
    max-width: 70vw;
    width: 100%;
    margin: 0 auto;
  }
}
.faq-accordion {
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  overflow: hidden;
}
.faq-accordion > .faq-question {
  position: relative;
  z-index: 9;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 25px;
  margin: 0;
  background: var(--haze);
  font-size: 1em;
  font-weight: 500;
  line-height: 1.2;
  color: var(--black);
  text-transform: none;
  transition: var(--transition-normal);
  cursor: pointer;
}
.faq-accordion > .faq-question:not(:last-of-type) {
  border-bottom: 1px solid #d8d8d8;
}
.faq-accordion > .faq-question.ui-state-active {
  color: var(--white);
  background: var(--atlantic);
}
.faq-accordion .faq-answer {
  padding: 30px;
  margin: 0;
}
.faq-accordion .faq-answer.ui-accordion-content-active:not(:last-of-type) {
  border-bottom: 1px solid #d8d8d8;
}

/* featured/sidebar blocks */

.featured-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 60px;
}
@media screen and (min-width: 1025px) {
  .featured-blocks {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
@media screen and (max-width: 580px) {
  body.is-private-event .featured-blocks {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.sidebar-blocks {
  margin-top: 10px;
}
.sidebar-blocks,
.sidebar-blocks .image-card-link {
  width: 100%;
}
.main .sidebar-blocks *,
.main .featured-blocks * {
  margin-bottom: 10px;
}
.sidebar-blocks .image-card-link.light-grey,
.featured-blocks .image-card-link.light-grey {
  background: var(--haze);
}
.sidebar-blocks .image-card-link.light-blue,
.featured-blocks .image-card-link.light-blue {
  background: var(--atlantic);
}
.sidebar-blocks .image-card-link.dark-blue,
.featured-blocks .image-card-link.dark-blue {
  background: var(--seafarer);
}
.sidebar-blocks .image-card-link .text-wrap,
.featured-blocks .image-card-link .text-wrap {
  gap: 0;
  padding: 0;
}
.sidebar-blocks .image-card-link *:last-child,
.featured-blocks .image-card-link *:last-child {
  margin: 0;
}
.featured-blocks .image-card-link,
.sidebar-blocks .image-card-link {
  text-align: unset;
  padding: 15px;
}
.featured-blocks .image-card-link h2,
.sidebar-blocks .image-card-link h2 {
  font-size: clamp(1.1rem, 1.1618rem + 0.5882vw, 1.45rem);
}
.featured-blocks .image-card-link p,
.sidebar-blocks .image-card-link p {
  font-size: 90%;
  line-height: 1.3;
}
.sidebar-blocks .image-card-link.light-blue *,
.featured-blocks .image-card-link.light-blue *,
.sidebar-blocks .image-card-link.dark-blue *,
.featured-blocks .image-card-link.dark-blue * {
  color: var(--white) !important;
}
.sidebar-blocks a.image-card-link {
  transition: box-shadow 300ms;
}
.sidebar-blocks a.image-card-link:hover,
.featured-blocks a.image-card-link:hover,
.sidebar-blocks a.image-card-link:focus,
.featured-blocks a.image-card-link:focus {
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.5);
}

/* filter spinner */

#filter-spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.4);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
#filter-spinner-overlay .spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 4px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* gravity form override */

.gform_wrapper {
  padding: 20px 0 40px;
}
.gform-footer .gform_button {
  position: relative;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 15px 25px !important;
  font-family: var(--text) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--white) !important;
  line-height: 1.1 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  background: var(--orange) !important;
  border: 1px solid var(--orange) !important;
  border-radius: 50px !important;
  text-align: center !important;
  transition: var(--transition-normal) !important;
  cursor: pointer !important;
}