.elementor-21499 .elementor-element.elementor-element-e877a8b .elementor-heading-title{font-family:var( --e-global-typography-c8ba082-font-family ), Tahoma;font-size:var( --e-global-typography-c8ba082-font-size );font-weight:var( --e-global-typography-c8ba082-font-weight );line-height:var( --e-global-typography-c8ba082-line-height );letter-spacing:var( --e-global-typography-c8ba082-letter-spacing );word-spacing:var( --e-global-typography-c8ba082-word-spacing );}@media(max-width:1024px){.elementor-21499 .elementor-element.elementor-element-e877a8b .elementor-heading-title{font-size:var( --e-global-typography-c8ba082-font-size );line-height:var( --e-global-typography-c8ba082-line-height );letter-spacing:var( --e-global-typography-c8ba082-letter-spacing );word-spacing:var( --e-global-typography-c8ba082-word-spacing );}}@media(max-width:767px){.elementor-21499 .elementor-element.elementor-element-e877a8b .elementor-heading-title{font-size:var( --e-global-typography-c8ba082-font-size );line-height:var( --e-global-typography-c8ba082-line-height );letter-spacing:var( --e-global-typography-c8ba082-letter-spacing );word-spacing:var( --e-global-typography-c8ba082-word-spacing );}}/* Start custom CSS for section, class: .elementor-element-c940b23 *//* =========================================
   BOTBALL EXPLORER EVENT LISTING
========================================= */

.explorer-events {
  --explorer-navy: #12213b;
  --explorer-blue: #2476b9;
  --explorer-orange: #f2663a;
  --explorer-cream: #f6f4ee;
  --explorer-border: #dce2e8;
  --explorer-text: #4b5a72;

  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0 60px;
  font-family: Arial, Helvetica, sans-serif;
}

.explorer-events__intro {
  max-width: 720px;
  margin-bottom: 36px;
}

.explorer-events__intro h2 {
  margin: 0 0 10px;
  color: var(--explorer-navy);
  font-size: 30px;
  line-height: 1.2;
}

.explorer-events__intro p {
  margin: 0;
  color: var(--explorer-text);
  font-size: 17px;
  line-height: 1.65;
}

.explorer-events__month {
  margin: 42px 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--explorer-orange);
  color: var(--explorer-navy);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.explorer-events__month:first-of-type {
  margin-top: 0;
}

.explorer-events__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.explorer-event {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  min-height: 220px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--explorer-border);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(18, 33, 59, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.explorer-event:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(18, 33, 59, 0.13);
}

.explorer-event__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 10px;
  color: #ffffff;
  text-align: center;
  background: var(--explorer-navy);
}

.explorer-event__date-month {
  margin-bottom: 2px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.explorer-event__date-day {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

.explorer-event__date-year {
  margin-top: 5px;
  font-size: 14px;
  opacity: 0.8;
}

.explorer-event__details {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.explorer-event__region {
  margin: 0 0 14px;
  color: var(--explorer-navy);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
}

.explorer-event__venue {
  margin: 0 0 4px;
  color: var(--explorer-text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.explorer-event__address {
  margin: 0 0 20px;
  color: var(--explorer-text);
  font-size: 15px;
  font-style: normal;
  line-height: 1.55;
}

.explorer-event__link {
  align-self: flex-start;
  margin-top: auto;
  color: var(--explorer-blue) !important;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
}

.explorer-event__link:hover,
.explorer-event__link:focus {
  color: var(--explorer-orange) !important;
  text-decoration: underline !important;
}

/* Featured GCER card */
.explorer-event--featured {
  grid-column: 1 / -1;
  border: 2px solid var(--explorer-orange);
  background: var(--explorer-cream);
}

.explorer-event--featured .explorer-event__date {
  background: var(--explorer-orange);
}

.explorer-event__badge {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 9px;
  padding: 5px 10px;
  color: #ffffff;
  background: var(--explorer-orange);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 1;
  text-transform: uppercase;
}

/* Tablet and mobile */
@media (max-width: 800px) {
  .explorer-events__grid {
    grid-template-columns: 1fr;
  }

  .explorer-event--featured {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .explorer-events {
    padding-bottom: 40px;
  }

  .explorer-events__intro h2 {
    font-size: 26px;
  }

  .explorer-event {
    grid-template-columns: 74px minmax(0, 1fr);
    min-height: 0;
  }

  .explorer-event__date {
    padding: 22px 8px;
  }

  .explorer-event__date-day {
    font-size: 32px;
  }

  .explorer-event__details {
    padding: 20px 18px;
  }

  .explorer-event__region {
    font-size: 19px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ca88cf9 *//* =========================================
   MISSION CONTROL PREVIEW CALLOUT
   ========================================= */

.mc-preview-callout {
  --mc-red: #c0392b;
  --mc-red-dark: #922b21;
  --mc-red-light: #fbeef0;
  --mc-charcoal: #1c1c1c;
  --mc-muted: #666666;
  --mc-border: #cccccc;

  position: relative;
  display: flex;
  max-width: 980px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  overflow: hidden;
  box-sizing: border-box;
  margin: 32px auto;
  padding: 28px 32px;
  border: 1px solid var(--mc-border);
  border-left: 6px solid var(--mc-red);
  border-radius: 0 10px 10px 0;
  background:
    linear-gradient(
      105deg,
      var(--mc-red-light) 0%,
      #ffffff 72%
    );
  box-shadow: 0 6px 18px rgba(28, 28, 28, 0.07);
  color: var(--mc-charcoal);
  font-family: "Barlow", Arial, sans-serif;
}

/* Decorative background circle */

.mc-preview-callout::after {
  position: absolute;
  top: -88px;
  right: 120px;
  width: 185px;
  height: 185px;
  border: 30px solid rgba(192, 57, 43, 0.05);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.mc-preview-callout__content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.mc-preview-callout__eyebrow {
  display: block;
  margin: 0 0 7px;
  color: var(--mc-red);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mc-preview-callout__title {
  margin: 0 0 7px;
  color: var(--mc-charcoal);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(27px, 4vw, 34px);
  font-weight: 800;
  line-height: 1.05;
}

.mc-preview-callout__text {
  margin: 0;
  color: var(--mc-muted);
  font-size: 15px;
  line-height: 1.55;
}

/* Button */

.mc-preview-callout__button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 50px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 2px solid var(--mc-red);
  border-radius: 6px;
  background: var(--mc-red);
  box-shadow: 0 6px 15px rgba(192, 57, 43, 0.2);
  color: #ffffff !important;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.mc-preview-callout__button::after {
  margin-left: 9px;
  content: "→";
}

.mc-preview-callout__button:hover,
.mc-preview-callout__button:focus {
  border-color: var(--mc-red-dark);
  background: var(--mc-red-dark);
  box-shadow: 0 9px 20px rgba(146, 43, 33, 0.25);
  color: #ffffff !important;
  transform: translateY(-2px);
}

.mc-preview-callout__button:focus-visible {
  outline: 3px solid var(--mc-red);
  outline-offset: 3px;
}

/* Mobile */

@media (max-width: 720px) {
  .mc-preview-callout {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin: 26px 16px;
    padding: 27px 24px;
  }

  .mc-preview-callout::after {
    top: -95px;
    right: -70px;
  }

  .mc-preview-callout__button {
    box-sizing: border-box;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mc-preview-callout__button {
    transition: none;
  }

  .mc-preview-callout__button:hover {
    transform: none;
  }
}/* End custom CSS */