/*!*********************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/scss/global.scss ***!
  \*********************************************************************************************************************************************************************************************************************************************/
.wpcf7 {
  font-family: var(--wp--preset--font-family--roboto);
  font-size: var(--wp--preset--font-size--paragraph);
  color: var(--wp--preset--color--secondary);
}
.wpcf7 .wpcf7-form {
  display: grid;
  gap: var(--wp--preset--spacing--10);
}
.wpcf7 .wpcf7-form input[type=text],
.wpcf7 .wpcf7-form input[type=email],
.wpcf7 .wpcf7-form input[type=url],
.wpcf7 .wpcf7-form input[type=tel],
.wpcf7 .wpcf7-form input[type=number],
.wpcf7 .wpcf7-form textarea,
.wpcf7 .wpcf7-form select {
  width: 100%;
  padding: var(--wp--preset--spacing--20);
  font-family: inherit;
  font-size: inherit;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: transparent;
  color: var(--wp--preset--color--secondary);
  transition: border-color 0.2s ease;
}
.wpcf7 .wpcf7-form input[type=text]:focus,
.wpcf7 .wpcf7-form input[type=email]:focus,
.wpcf7 .wpcf7-form input[type=url]:focus,
.wpcf7 .wpcf7-form input[type=tel]:focus,
.wpcf7 .wpcf7-form input[type=number]:focus,
.wpcf7 .wpcf7-form textarea:focus,
.wpcf7 .wpcf7-form select:focus {
  outline: none;
  border-color: var(--wp--preset--color--primary);
}
.wpcf7 .wpcf7-form .wpcf7-submit {
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--background);
  border: none;
  border-radius: 6px;
  font-family: var(--wp--preset--font-family--montserrat);
  font-weight: 600;
  padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--40);
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.wpcf7 .wpcf7-form .wpcf7-submit:hover, .wpcf7 .wpcf7-form .wpcf7-submit:focus, .wpcf7 .wpcf7-form .wpcf7-submit:active {
  color: var(--wp--preset--color--secondary);
}
.wpcf7 .wpcf7-form .wpcf7-response-output {
  margin-top: var(--wp--preset--spacing--30);
  font-size: var(--wp--preset--font-size--sm);
  color: var(--wp--preset--color--secondary);
}

/*
Josh's Custom CSS Reset
https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

small {
  font-size: var(--wp--preset--font-size--small);
}

ul,
ol {
  padding: 0 0 0 var(--wp--preset--spacing--50);
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
th,
td {
  word-break: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}

.visually-hidden:not(:focus):not(:active):not(:focus):not(:active) {
  border: 0;
  clip: rect(0 0 0 0);
  height: auto;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.always-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: auto;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--wp--preset--color--primary);
  border-radius: 0px;
  border-color: var(--wp--preset--color--background);
  border-style: solid;
  border-width: 2px;
  color: var(--wp--preset--color--background);
  padding-top: var(--wp--preset--spacing--20);
  padding-right: var(--wp--preset--spacing--50);
  padding-bottom: var(--wp--preset--spacing--20);
  padding-left: var(--wp--preset--spacing--50);
  text-decoration: none;
}

.wp-site-blocks > header .site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 80px;
  background: white;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid var(--wp--preset--color--secondary);
}
.wp-site-blocks > header .site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--wp--style--global--content-size);
  margin: auto;
  padding: 0 var(--wp--preset--spacing--30);
}
.wp-site-blocks > header .site-header__logo img {
  max-height: 80px;
}
.wp-site-blocks > header .site-header__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.wp-site-blocks > header .site-header__cta-button {
  display: none;
}
.wp-site-blocks > header .site-header__cta-button.is-visible {
  display: inline-block;
}
.wp-site-blocks > header .site-header__burger {
  position: relative;
  min-width: 36px;
  height: 36px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.wp-site-blocks > header .site-header__burger .burger-line {
  position: absolute;
  left: 0;
  width: 36px;
  height: 4px;
  background-color: var(--wp--preset--color--secondary);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.wp-site-blocks > header .site-header__burger .burger-line:nth-child(1) {
  top: 6px;
}
.wp-site-blocks > header .site-header__burger .burger-line:nth-child(2) {
  top: 16px;
}
.wp-site-blocks > header .site-header__burger .burger-line:nth-child(3) {
  top: 26px;
}
.wp-site-blocks > header .site-header__burger.is-active .burger-line:nth-child(1) {
  transform: rotate(45deg);
  top: 16px;
}
.wp-site-blocks > header .site-header__burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
}
.wp-site-blocks > header .site-header__burger.is-active .burger-line:nth-child(3) {
  transform: rotate(-45deg);
  top: 16px;
}
.wp-site-blocks > header .site-header__menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0;
  opacity: 0;
  pointer-events: none;
  background: white;
  overflow: hidden;
  overflow-y: auto;
  transition: height 0.4s ease, opacity 0.3s ease;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
}
.wp-site-blocks > header .site-header__menu.is-visible {
  height: calc(100vh - 80px);
  opacity: 1;
  pointer-events: auto;
}
.wp-site-blocks > header .site-header__menu-inner {
  max-width: var(--wp--style--global--content-size);
  width: 100%;
  margin: 0 auto;
  padding: var(--wp--preset--spacing--50) var(--wp--preset--spacing--30);
  overflow-y: auto;
}
.wp-site-blocks > header .site-header__menu .mobile-nav__list {
  list-style: none;
  padding: 0 var(--wp--preset--spacing--60);
  margin: 0 0 var(--wp--preset--spacing--50) 0;
}
.wp-site-blocks > header .site-header__menu .mobile-nav__list li {
  margin-bottom: var(--wp--preset--spacing--20);
}
.wp-site-blocks > header .site-header__menu .mobile-nav__list a {
  font-size: var(--wp--preset--font-size--h-3);
  font-weight: 700;
  color: var(--wp--preset--color--secondary);
  font-family: var(--wp--preset--font-family--montserrat);
  transition: all 0.3s ease;
}
.wp-site-blocks > header .site-header__menu .mobile-nav__list a:hover, .wp-site-blocks > header .site-header__menu .mobile-nav__list a:focus, .wp-site-blocks > header .site-header__menu .mobile-nav__list a:active {
  color: var(--wp--preset--color--primary);
}
.wp-site-blocks > header .site-header__menu .mobile-nav__socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 0 var(--wp--preset--spacing--60);
  gap: var(--wp--preset--spacing--20) var(--wp--preset--spacing--50);
  font-size: var(--wp--preset--font-size--h-5);
  transition: all 0.3s ease;
}
.wp-site-blocks > header .site-header__menu .mobile-nav__socials a {
  font-family: var(--wp--preset--font-family--montserrat);
  text-decoration: none;
  color: var(--wp--preset--color--secondary);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--wp--preset--spacing--20);
  transition: all 0.3s ease;
}
.wp-site-blocks > header .site-header__menu .mobile-nav__socials a:hover, .wp-site-blocks > header .site-header__menu .mobile-nav__socials a:focus, .wp-site-blocks > header .site-header__menu .mobile-nav__socials a:active {
  color: var(--wp--preset--color--primary);
}

footer.wp-block-template-part .site-footer {
  background: var(--wp--preset--color--secondary);
  color: white;
  font-size: var(--wp--preset--font-size--normal);
  width: 100%;
}
footer.wp-block-template-part .site-footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer.wp-block-template-part .site-footer a:hover, footer.wp-block-template-part .site-footer a:focus, footer.wp-block-template-part .site-footer a:active {
  color: var(--wp--preset--color--primary);
}
footer.wp-block-template-part .site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--wp--preset--spacing--40);
  padding: var(--wp--preset--spacing--60) var(--wp--preset--spacing--30);
  max-width: var(--wp--style--global--content-size);
  margin: 0 auto;
}
footer.wp-block-template-part .site-footer__bottom-inner {
  max-width: var(--wp--style--global--content-size);
}
footer.wp-block-template-part .site-footer__column {
  flex: 1 1 100%;
  min-width: 220px;
}
@media (min-width: 500px) {
  footer.wp-block-template-part .site-footer__column {
    flex: 1 1 calc(50% - var(--wp--preset--spacing--40));
  }
}
@media (min-width: 768px) {
  footer.wp-block-template-part .site-footer__column {
    flex: 1 1 calc(33.333% - var(--wp--preset--spacing--40));
  }
}
footer.wp-block-template-part .site-footer__heading {
  font-size: var(--wp--preset--font-size--h-5);
  margin: 0 0 var(--wp--preset--spacing--20);
  padding-left: var(--wp--preset--spacing--30);
  border-left: 2px solid var(--wp--preset--color--primary);
  color: white;
}
footer.wp-block-template-part .site-footer__button {
  display: inline-block;
  width: auto;
}
footer.wp-block-template-part .site-footer__column--branding {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer.wp-block-template-part .site-footer__column--branding .footer-branding__logo {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer.wp-block-template-part .site-footer__column--branding .footer-branding__logo img {
  max-height: 100%;
  width: auto;
}
footer.wp-block-template-part .site-footer__column--contact .footer-contact__club-name {
  font-weight: 700;
}
footer.wp-block-template-part .site-footer__column--contact .footer-contact__block {
  font-style: normal;
  line-height: 1.6;
}
footer.wp-block-template-part .site-footer__column--contact .footer-contact__info {
  align-items: center;
  gap: var(--wp--preset--spacing--30);
}
footer.wp-block-template-part .site-footer__column--contact .footer-contact__info a {
  display: block;
  color: var(--wp--preset--color--primary);
  margin-bottom: var(--wp--preset--spacing--20);
}
footer.wp-block-template-part .site-footer__column--contact .footer-contact__info a .dashicons {
  margin-right: var(--wp--preset--spacing--20);
}
footer.wp-block-template-part .site-footer__column--contact .footer-contact__info a:hover {
  color: white;
}
footer.wp-block-template-part .site-footer__column--contact a:hover, footer.wp-block-template-part .site-footer__column--contact a:focus, footer.wp-block-template-part .site-footer__column--contact a:active {
  color: var(--wp--preset--color--secondary);
}
footer.wp-block-template-part .site-footer__column--news {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--40);
}
footer.wp-block-template-part .site-footer__column--news .footer-branding__socials {
  display: flex;
  gap: var(--wp--preset--spacing--40);
}
footer.wp-block-template-part .site-footer__column--news .footer-branding__socials a {
  width: var(--wp--preset--font-size--h-5);
  height: var(--wp--preset--font-size--h-5);
}
footer.wp-block-template-part .site-footer__column--news .footer-branding__socials a .dashicons {
  font-size: var(--wp--preset--font-size--h-5);
}
footer.wp-block-template-part .site-footer__column--news .footer-news__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--wp--preset--spacing--30);
}
footer.wp-block-template-part .site-footer__column--news .footer-news__item {
  display: flex;
  gap: var(--wp--preset--spacing--20);
  align-items: flex-start;
}
footer.wp-block-template-part .site-footer__column--news .footer-news__link {
  display: flex;
  gap: var(--wp--preset--spacing--20);
  text-decoration: none;
  color: inherit;
}
footer.wp-block-template-part .site-footer__column--news .footer-news__thumb {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
footer.wp-block-template-part .site-footer__column--news .footer-news__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer.wp-block-template-part .site-footer__column--news .footer-news__date {
  font-size: var(--wp--preset--font-size--small);
  font-style: italic;
  opacity: 0.7;
}
footer.wp-block-template-part .site-footer__bottom {
  border-top: 1px solid var(--wp--preset--color--primary);
}
footer.wp-block-template-part .site-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--wp--preset--spacing--20);
  font-size: var(--wp--preset--font-size--small);
  padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--30);
  max-width: var(--wp--style--global--content-size);
  margin: 0 auto;
}
@media (min-width: 768px) {
  footer.wp-block-template-part .site-footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}
footer.wp-block-template-part .site-footer__copyright, footer.wp-block-template-part .site-footer__legal-links {
  width: 100%;
}
@media (min-width: 768px) {
  footer.wp-block-template-part .site-footer__copyright, footer.wp-block-template-part .site-footer__legal-links {
    width: auto;
  }
}

body .wp-site-blocks {
  padding-top: 80px;
  padding-bottom: 0;
}
body.admin-bar .site-header {
  top: 32px;
}

.single-post .wp-block-post-featured-image {
  max-height: 600px;
}
.single-post .wp-block-post-featured-image img {
  width: 100%;
  height: auto;
  max-height: 600px;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

.tvw-post-meta {
  font-size: 0.95rem;
  color: #333;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.tvw-post-meta a {
  text-decoration: none;
  font-style: italic;
}
.tvw-post-meta .primary-cat {
  font-weight: bold;
  font-style: normal;
}
.tvw-post-meta .sub-cat {
  color: #666;
}
.tvw-post-meta .meta-icon {
  margin-right: 0.2em;
}
.tvw-post-meta .meta-divider {
  margin: 0 0.5em;
  color: #999;
}

/*# sourceMappingURL=global.css.map*/