/** Shopify CDN: Minification failed

Line 560:20 Unexpected "{"
Line 560:29 Expected ":"

**/
/* Club Content Hub - Consolidated section for About, FAQ, Store, Events, Products */

:root {
  --hub-color-navy: #0a1280;
  --hub-color-red: #e22120;
  --hub-color-white: #ffffff;
  --hub-shadow-soft: 4px 5px 0 rgba(0, 0, 18, calc(0.35 * var(--shadowStrength, 1))), 4px 5px 10px rgba(0, 0, 18, calc(0.35 * var(--shadowStrength, 1)));
  --hub-shadow-hover: 5px 9px 2px rgba(0, 0, 18, calc(0.35 * var(--shadowStrength, 1))), 5px 9px 8px rgba(0, 0, 18, calc(0.35 * var(--shadowStrength, 1)));
}

.club-content-hub {
  padding: 2rem 1.5rem;
}

.hub-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
}

.hub-left-column,
.hub-right-column {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  overflow: visible;
}

/* ─────────────────────────────────────────────────────────────────
   SECTION LAYOUT
   ───────────────────────────────────────────────────────────────── */

.hub-section {
  margin-bottom: 0;
  padding: 0.5rem;
  margin: -0.5rem;
}

.hub-section-header {
  margin-bottom: 1.5rem;
}

.hub-section-title {
  margin: 0;
  padding: 0.875rem 1.5rem;
  background-color: var(--hub-color-red);
  color: var(--hub-color-white);
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  display: inline-block;
  box-shadow: var(--hub-shadow-soft);
}

/* ─────────────────────────────────────────────────────────────────
   ABOUT SECTION
   ───────────────────────────────────────────────────────────────── */

.about-content-wrapper {
  position: relative;
}

.about-text {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 500;
  color: var(--hub-color-navy);
  text-wrap: pretty;
}

.about-text.is-collapsed {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.about-text p {
  margin: 0 0 1rem 0;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-text strong,
.about-text b {
  font-weight: 700;
  color: var(--hub-color-navy);
}

.about-text a {
  color: #1b20a6;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about-text a:hover {
  opacity: 0.7;
}

.about-text h2,
.about-text h3,
.about-text h4 {
  font-size: 1.1875rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--hub-color-navy);
  margin: 1.875rem 0 0.75rem 0;
}

.about-text ul,
.about-text ol {
  padding-left: 1.2em;
}

.about-text li {
  margin: 0 0 0.5rem 0;
}

.about-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.125rem;
  background: none;
  border: 1px solid rgba(10, 18, 128, 0.2);
  border-radius: 0.5625rem;
  padding: 0.625rem 1.125rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--hub-color-navy);
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
  scroll-margin-top: var(--header-height, 0px);
}

.about-toggle-btn:hover {
  background-color: #e7ebfd;
  border-color: var(--hub-color-navy);
}

.about-toggle-btn:focus-visible {
  outline: 3px solid var(--hub-color-navy);
  outline-offset: 2px;
}

.about-toggle-icon {
  width: 1rem;
  height: 1rem;
  stroke: var(--hub-color-navy);
  transition: transform 0.2s ease;
}

.about-text.is-collapsed ~ .about-toggle-btn .about-toggle-icon {
  transform: rotate(0deg);
}

.about-text:not(.is-collapsed) ~ .about-toggle-btn .about-toggle-icon {
  transform: rotate(180deg);
}

/* ─────────────────────────────────────────────────────────────────
   FAQ SECTION
   ───────────────────────────────────────────────────────────────── */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--hub-color-white);
  border: 1px solid rgba(10, 18, 128, 0.12);
  border-radius: 0.875rem;
  overflow: hidden;
  box-shadow: var(--hub-shadow-soft);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.faq-item:hover {
  box-shadow: var(--hub-shadow-hover);
  transform: translateY(-2px);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--hub-color-navy);
  cursor: pointer;
  text-align: left;
  transition: background-color 0.15s ease;
}

.faq-trigger:hover {
  background-color: #e7ebfd;
}

.faq-trigger:focus-visible {
  outline: 3px solid var(--hub-color-navy);
  outline-offset: -3px;
}

.faq-trigger-text {
  flex: 1;
}

.faq-icon {
  width: 1.375rem;
  height: 1.375rem;
  stroke: var(--hub-color-navy);
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  font-weight: 500;
  color: rgba(10, 18, 128, 0.58);
  border-top: 1px solid rgba(10, 18, 128, 0.12);
}

.faq-item[open] .faq-content {
  display: block;
}

.faq-content p {
  margin: 1rem 0 0;
}

.faq-content p:first-child {
  margin-top: 0;
}

.faq-content p:last-child {
  margin-bottom: 0;
}

.faq-content a {
  color: #1b20a6;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-content a:hover {
  opacity: 0.7;
}

/* ─────────────────────────────────────────────────────────────────
   CONTACT FORM SECTION
   ───────────────────────────────────────────────────────────────── */

.contact-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.75rem;
}

.contact-field label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--hub-color-navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 00.75rem;
}

.contact-input {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(10, 18, 128, 0.12);
  border-radius: 0.5625rem;
  color: var(--hub-color-navy);
  background-color: var(--hub-color-white);
  box-shadow: var(--hub-shadow-soft);
  transition: box-shadow 0.22s ease, border-color 0.22s ease;
}

.contact-input:focus {
  outline: none;
  border-color: var(--hub-color-navy);
  box-shadow: var(--hub-shadow-hover);
}

.contact-submit-btn {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background-color: var(--hub-color-navy);
  color: var(--hub-color-white);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 0.5625rem;
  cursor: pointer;
  box-shadow: 4px 5px 0px rgba(0, 0, 0, calc(0.35 * var(--shadowStrengthUI, 1))), 4px 5px 4px rgba(0, 0, 0, calc(0.30 * var(--shadowStrengthUI, 1)));
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  margin-top: 0.75rem;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 5px 9px 2px rgba(0, 0, 0, calc(0.35 * var(--shadowStrengthUI, 1))), 5px 9px 8px rgba(0, 0, 0, calc(0.26 * var(--shadowStrengthUI, 1)));
}

.contact-submit-btn:focus-visible {
  outline: 3px solid var(--hub-color-red);
  outline-offset: 2px;
}

.contact-success-message {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #22a643;
  margin: 0;
  padding: 1rem;
  background-color: #e8f5e9;
  border-radius: 0.375rem;
  text-align: center;
}

/* ─────────────────────────────────────────────────────────────────
   STORE ESSENTIALS SECTION
   ───────────────────────────────────────────────────────────────── */

.store-product-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  align-items: stretch;
  background-color: #0a1280;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--hub-shadow-soft);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.store-product-card:hover {
  box-shadow: var(--hub-shadow-hover);
}

.store-product-image {
  width: 12.5rem;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  overflow: hidden;
  background-color: #eef0f8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.store-product-placeholder {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(10, 18, 128, 0.58);
}

.store-product-content {
  padding: 1.25rem 1.5rem 1.25rem 3rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.store-product-text {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.store-product-eyebrow {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--hub-color-white);
  background-color: var(--hub-color-red);
  display: inline-block;
  align-self: flex-start;
  padding: 0.2em 0.5em;
}

.store-product-name {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--hub-color-white);
  line-height: 1.2;
  white-space: nowrap;
}

.store-product-price {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--hub-color-white);
}

.store-product-btn {
  white-space: nowrap;
  padding: 0.75rem 1.5rem;
  background-color: var(--hub-color-red);
  color: var(--hub-color-white);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 0.375rem;
  text-decoration: none;
  display: inline-block;
  box-shadow: 4px 5px 0px rgba(0, 0, 0, calc(0.35 * var(--shadowStrengthUI, 1))), 4px 5px 4px rgba(0, 0, 0, calc(0.30 * var(--shadowStrengthUI, 1)));
  transition: box-shadow 0.22s ease, transform 0.22s ease;
  cursor: pointer;
}

.store-product-btn:hover {
  box-shadow: 5px 9px 2px rgba(0, 0, 0, calc(0.35 * var(--shadowStrengthUI, 1))), 5px 9px 8px rgba(0, 0, 0, calc(0.26 * var(--shadowStrengthUI, 1)));
  transform: translateY(-2px);
}

.store-product-btn:focus-visible {
  outline: 3px solid var(--hub-color-white);
  outline-offset: 2px;
}

/* ─────────────────────────────────────────────────────────────────
   PRODUCT CARDS - TITLE HEIGHT MATCHING
   ───────────────────────────────────────────────────────────────── */

[data-hub-product-item] .yv-product-card-title {
  min-height: 3.5em;
  line-height: 1.4;
}

/* ─────────────────────────────────────────────────────────────────
   EVENTS & PRODUCTS GRIDS
   ───────────────────────────────────────────────────────────────── */

.event-grid-container,
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.125rem;
  margin-bottom: 1rem;
  align-items: stretch;
}

[data-hub-event-item],
[data-hub-product-item] {
  display: flex;
  flex-direction: column;
  height: 100%;
}

[data-hub-event-item] {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(10, 18, 128, 0.12);
  box-shadow: var(--hub-shadow-soft);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

[data-hub-event-item]:hover {
  box-shadow: var(--hub-shadow-hover);
}

[data-hub-event-item] img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  width: 100%;
  height: auto;
}

[data-hub-event-item] .event-details {
  padding: 6px 8px 8px;
}

[data-hub-product-item] .yv-product-card {
  overflow: visible;
  margin-bottom: 0;
}

[data-hub-product-item] .yv-product-card .animated-grid {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--hub-shadow-soft);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

[data-hub-product-item] .yv-product-card:hover .animated-grid {
  box-shadow: var(--hub-shadow-hover);
  transform: translateY(-3px);
}

[data-hub-product-item] .yv-product-card-img {
  flex: 0 0 auto;
  aspect-ratio: 1 / 1;
}

[data-hub-product-item] .yv-product-card-title {
  min-height: 3em;
  display: flex;
  align-items: flex-start;
}
  #shopify-section-{{ section.id }} .yv-product-title {
    min-height: calc(3 * 1.6em);
    font-weight: 600;
  }
/* ─────────────────────────────────────────────────────────────────
   HUB CONTENT DRAWER
   Overrides form-drawer defaults for the events and products drawers.
   ───────────────────────────────────────────────────────────────── */

@media (min-width: 768px) {
  .hub-content-drawer.form-drawer {
    width: 600px !important;
    max-width: 95vw !important;
  }
  .hub-content-drawer .event-grid-container,
  .hub-content-drawer .products-grid {
    grid-template-columns: 1fr;
  }
}

/* AOS IntersectionObserver does not re-fire reliably for elements inside a
   CSS-transformed container that opens after page load. Without this override
   cards 2+ stay at opacity: 0 / translateY(40px) from the unresolved AOS state. */
.hub-content-drawer [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ─────────────────────────────────────────────────────────────────
   SEE ALL BUTTONS
   ───────────────────────────────────────────────────────────────── */

.hub-grid-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 0 0;
}

.hub-show-more-btn {
  padding: 0.75rem 1.5rem;
  background-color: var(--hub-color-navy);
  color: var(--hub-color-white);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 0.625rem;
  cursor: pointer;
  box-shadow: 4px 5px 0px rgba(0, 0, 0, calc(0.35 * var(--shadowStrengthUI, 1))), 4px 5px 4px rgba(0, 0, 0, calc(0.30 * var(--shadowStrengthUI, 1)));
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hub-show-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 5px 9px 2px rgba(0, 0, 0, calc(0.35 * var(--shadowStrengthUI, 1))), 5px 9px 8px rgba(0, 0, 0, calc(0.26 * var(--shadowStrengthUI, 1)));
}

.hub-show-more-btn:focus-visible {
  outline: 3px solid var(--hub-color-navy);
  outline-offset: 2px;
}

/* ─────────────────────────────────────────────────────────────────
   EMPTY STATE
   ───────────────────────────────────────────────────────────────── */

.empty-section {
  padding: 2rem 1.5rem;
  background-color: #e7ebfd;
  border: 1px solid rgba(10, 18, 128, 0.12);
  border-radius: 0.75rem;
  text-align: center;
}

.empty-state-message {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(10, 18, 128, 0.58);
  margin: 0;
}

/* ─────────────────────────────────────────────────────────────────
   RESPONSIVE ADJUSTMENTS
   ───────────────────────────────────────────────────────────────── */


@media (max-width: 767px) {
  .club-content-hub {
    padding: 1.5rem 1rem;
  }

  .hub-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Dissolve column wrappers so all sections become direct grid children,
     enabling order-based resequencing on mobile. */
  .hub-left-column,
  .hub-right-column {
    display: contents;
  }

  .about-section    { order: 1; }
  .store-section    { order: 2; }
  .faq-section      { order: 3; }
  .events-section   { order: 4; }
  .products-section { order: 5; }
  .contact-section  { order: 6; }

  .hub-section {
    margin-bottom: 0;
  }

  .hub-section-title {
    font-size: 1.5rem;
    padding: 0.75rem 1rem;
  }

  .about-text {
    font-size: 0.9375rem;
  }

  .event-grid-container,
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .store-product-card {
    grid-template-columns: 7.5rem 1fr;
    gap: 0;
    padding: 0;
  }

  .store-product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .store-product-content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.75rem 1rem;
  }

  .store-product-name {
    font-size: 1.125rem;
    white-space: normal;
  }

  .store-product-price {
    font-size: 1.25rem;
  }

  .store-product-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 0.25rem;
  }

  .faq-trigger {
    font-size: 1rem;
    padding: 1rem 1.25rem;
  }

  .hub-show-more-btn {
    font-size: 0.8125rem;
    padding: 0.625rem 1.25rem;
  }
}

/* ─────────────────────────────────────────────────────────────────
   FOCUS AND ACCESSIBILITY
   ───────────────────────────────────────────────────────────────── */

.event-grid-container .event-card .event-title:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
  border-radius: 2px;
}
