/**/.imageWidget{position:relative}.imageWidget a,.imageWidget span.image-caption{font-style:italic;text-align:center}.imageWidget a[data-caption]::after,.imageWidget span[data-caption]::after{content:attr(data-caption);display:block;line-height:100%}
.imageWidget.with-caption a::after,.imageWidget.with-caption span.image-caption::after{margin-top:12px}.imageWidget img[width][height]{height:auto}[data-flex-site] #fcontainer .imageWidget:after,[data-flex-site] #flex-footer .imageWidget:after,[data-flex-site] #flex-header .imageWidget:after{content:none}
[data-flex-site] #fcontainer .imageWidget:before,[data-flex-site] #flex-footer .imageWidget:before,[data-flex-site] #flex-header .imageWidget:before{font-size:80px;transform:none}.imageWidget.hover img.hover-image,.imageWidget:hover img.hover-image{display:initial}
.imageWidget.hover.hasHover img:not(.hover-image),.imageWidget:hover.hasHover img:not(.hover-image){display:none!important}.imageWidget img.hover-image,.imageWidget img.logo-on-scroll{display:none}/**/.hamburgerButton{display:block;background-color:transparent;border:0;padding:0;margin:0}.hamburgerButton,.hamburgerButton svg{width:100%;height:100%}
/* Custom Widgets Styles */
.cc-calendar-widget {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.cc-calendar-title {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 6px;
}

.cc-calendar-description {
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
  margin: 0 0 16px;
  line-height: 1.5;
  width: 70%;
  max-width: 100%;
}

/* ============ NAV BAR ============ */
.cc-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 16px;
}

.cc-month-label {
  font-family: "Bebas Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #111827;
  text-align: center;
  text-transform: capitalize;
  flex-grow: 1;
  margin: 0;
  cursor: pointer;
}

.cc-nav-btn {
  padding: 7px 14px;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  color: #374151;
  font-size: 16px;
  font-weight: 700;
  border-radius: 7px;
  white-space: nowrap;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.cc-nav-btn svg {
  width: 8px;
  height: 11px;
}

.cc-nav-icon-fill {
  fill: #374151;
}

.cc-nav-btn:hover {
  background-color: #f3f4f6;
  border-color: #d1d5db;
}

.cc-nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

/* ============ FILTERS BAR ============ */
.cc-filters-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  margin-bottom: 16px;
}

/* ---- Group dropdown ---- */
.cc-group-dropdown {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.cc-group-dropdown-selected {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 7px 12px;
  border-radius: 7px;
  border: 1px solid #d1d5db;
  background-color: #ffffff;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  user-select: none;
  touch-action: manipulation;
  position: relative;
  z-index: 1;
}

.cc-group-dropdown-selected:hover {
  background-color: #f3f4f6;
  border-color: #d1d5db;
}

.cc-group-dropdown.open .cc-group-dropdown-selected {
  border-color: #d1d5db;
  background-color: #f3f4f6;
}

.cc-group-dropdown-label {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #111827;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.cc-group-dropdown-arrow {
  width: 10px;
  height: 6px;
  color: #6b7280;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.cc-group-dropdown.open .cc-group-dropdown-arrow {
  transform: rotate(180deg);
}

.cc-group-dropdown-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 160px;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  z-index: 50;
  display: none;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.12);
}

.cc-group-dropdown.open .cc-group-dropdown-list {
  display: block;
}

.cc-group-dropdown-option {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  padding: 9px 12px;
  cursor: pointer;
  color: #111827;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  transition: background-color 0.15s ease;
  background-color: #ffffff;
  touch-action: manipulation;
}

.cc-group-dropdown-option:hover {
  background-color: #f3f4f6;
}

.cc-group-dropdown-option.selected {
  background-color: #eff6ff;
  color: #1e40af;
  font-weight: 600;
}

/* ---- Category filter pills ---- */
.cc-category-filters-scroll {
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.cc-category-filters-scroll::-webkit-scrollbar {
  display: none;
}

.cc-category-filters {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: nowrap;
}

.cc-category-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 7px;
  border: 1px solid #d1d5db;
  background-color: #ffffff;
  transition: all 0.2s ease;
  user-select: none;
}

.cc-category-pill:hover {
  background-color: #f3f4f6;
  border-color: #d1d5db;
}

.cc-category-pill:hover .cc-category-pill-label {
  color: #111827;
}

.cc-category-pill-swatch {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cc-category-pill-swatch.event-type-match {
  background-color: #16A34A;
}

.cc-category-pill-swatch.event-type-practice {
  background-color: #EAB308;
}

.cc-category-pill-swatch.event-type-cup {
  background-color: #DC2626;
}

.cc-category-pill-swatch.event-type-camp {
  background-color: #EC4899;
}

.cc-category-pill-swatch.event-type-meeting {
  background-color: #2563EB;
}

.cc-category-pill-swatch.event-type-uncategorized {
  background-color: #6B7280;
}

.cc-category-pill-label {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
}

.cc-category-pill.active {
  border-color: #1e40af;
  background-color: #eff6ff;
}

.cc-category-pill.active .cc-category-pill-label {
  color: #1e40af;
}

.cc-category-pill:not(.active) {
  opacity: 0.5;
}

/* ============ EVENTS ============ */
.cc-events-container {
  position: relative;
}

.cc-week-group {
  margin-bottom: 20px;
}

.cc-week-group:last-child {
  margin-bottom: 0;
}

.cc-week-header {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  padding: 4px 0 8px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 10px;
}

/* ---- Event card ---- */
.cc-event-card {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  gap: 14px;
  align-items: stretch;
  margin-bottom: 8px;
  min-height: 0;
}

.cc-event-card--canceled {
  opacity: 0.6;
}

/* ---- Date block ---- */
.cc-date-block {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 14px;
  margin-right: 4px;
  border-right: 2px solid;
  border-right-color: inherit;
  color: #111827;
}

.cc-date-single {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  min-width: 44px;
}

.cc-date-weekday {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.8;
}

.cc-date-day {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.cc-date-month {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.7;
  margin-top: 2px;
  text-transform: uppercase;
}

.cc-date-counter {
  font-size: 9px;
  font-weight: 600;
  opacity: 0.65;
  margin-top: 4px;
  line-height: 1.25;
  white-space: normal;
}

/* ---- Event body ---- */
.cc-event-body {
  flex-grow: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.cc-event-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 2px;
}

.cc-event-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
  flex-grow: 1;
}

.cc-canceled-marker {
  font-size: 10px;
  font-weight: 700;
  color: #dc2626;
  margin-left: 2px;
  cursor: help;
}

.cc-event-meta {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.cc-event-description {
  font-size: 12px;
  color: #4b5563;
  line-height: 1.4;
  margin-top: 6px;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}

.cc-group-badge-row {
  margin-top: 6px;
}

.cc-group-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  background-color: #f3f4f6;
  color: #374151;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
  text-align: center;
}

.cc-event-badge {
  display: inline-block;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  background-color: #eff6ff;
  color: #1e40af;
  text-transform: capitalize;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 130px;
  text-align: center;
  margin-left: auto;
}

.cc-event-badge--match {
  background-color: #16A34A;
  color: #ffffff;
}

.cc-event-badge--practice {
  background-color: #EAB308;
  color: #111827;
}

.cc-event-badge--cup {
  background-color: #DC2626;
  color: #ffffff;
}

.cc-event-badge--camp {
  background-color: #EC4899;
  color: #ffffff;
}

.cc-event-badge--meeting {
  background-color: #2563EB;
  color: #ffffff;
}

.cc-event-badge--uncategorized {
  background-color: #6B7280;
  color: #ffffff;
}

/* ---- Empty state ---- */
.cc-empty-state {
  text-align: center;
  color: #9ca3af;
  font-size: 14px;
  padding: 32px 16px;
}

/* --- LOADING SPINNER --- */
#calendar-club-loading-spinner {
  --border-color: #1e40af;
  border: 4px solid;
  border-color: color-mix(in srgb, var(--border-color), transparent 85%);
  border-top: 4px solid;
  border-top-color: #1e40af;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  position: relative;
  margin: 30px auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* ============ RESPONSIVE ============ */
@media screen and (max-width: 767px) {
  .cc-month-label {
    font-size: 22px;
  }
  .cc-calendar-description {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .cc-nav-bar {
    flex-wrap: nowrap;
  }
  .cc-group-dropdown {
    flex-shrink: 0;
  }
  .cc-category-pill {
    flex-shrink: 0;
  }
  .cc-event-card {
    align-items: flex-start;
  }
  .cc-date-block {
    flex-shrink: 0;
  }
  .cc-event-badge {
    max-width: 96px;
    font-size: 10px;
    padding: 2px 6px;
  }
  .cc-group-badge {
    font-size: 10px;
    padding: 2px 6px;
  }
}
@media screen and (max-width: 767px) {
  .cc-filters-bar {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
  }
  .cc-group-dropdown {
    width: 100%;
  }
  .cc-group-dropdown-selected {
    width: 100%;
    justify-content: space-between;
    box-sizing: border-box;
  }
  .cc-group-dropdown-list {
    left: 0;
    right: 0;
    width: auto;
    box-sizing: border-box;
  }
  .cc-category-filters-scroll {
    width: 100%;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@500;600&family=Roboto:wght@400;500&display=swap");
.poweredby-container {
  align-items: center;
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 25px;
  text-decoration: none;
  position: relative;
  z-index: 1;
  padding-left: 50px;
  padding-right: 50px;
}

.poweredby-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

.poweredby-image {
  max-width: 40px;
}

.poweredby-text {
  color: white;
  margin: 0px;
  padding: 0px;
  z-index: 2;
}

.poweredby-text p {
  margin: 0px;
  display: flex;
  justify-content: left;
}

.poweredby-text-copy {
  margin: 0px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Bebas Neue", cursive;
}

.poweredby-text-app {
  font-size: 12px;
  color: #FFFFFF;
  font-family: "Bebas Neue", cursive;
}

@media screen and (max-width: 767px) {
  .poweredby-container {
    /*background-color: #231D4F;*/
    align-items: center;
    display: flex;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 16px;
    padding-right: 16px;
    gap: 25px;
    text-decoration: none;
  }
}

.widget-63d0de {
  /* Link Hover Effects */
}
.widget-63d0de .footer-widget {
  width: 100%;
  padding: 48px 24px;
  background: #f7f7f7;
  box-sizing: border-box;
}
.widget-63d0de .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
.widget-63d0de .footer-left {
  flex: 1 1 320px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.widget-63d0de .footer-logo {
  max-width: 140px;
  height: auto;
  object-fit: contain;
  margin-bottom: 16px;
}
.widget-63d0de .footer-title-location-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.widget-63d0de .footer-title {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}
.widget-63d0de .footer-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #555555;
  line-height: 1.5;
}
.widget-63d0de .footer-location-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.widget-63d0de .footer-location-icon svg {
  width: 16px;
  height: 16px;
  fill: #555555;
}
.widget-63d0de .social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.widget-63d0de .social-icons a {
  text-decoration: none;
}
.widget-63d0de .social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.widget-63d0de .social-icon-link svg {
  width: 24px;
  height: 24px;
  fill: #333333;
  transition: fill 0.2s ease;
}
.widget-63d0de .social-icon-link:hover svg {
  fill: #0066cc;
}
.widget-63d0de .privacy-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.widget-63d0de .privacy-links a {
  text-decoration: none;
}
.widget-63d0de .privacy-link {
  font-size: 13px;
  color: #666666;
  cursor: pointer;
  text-decoration: none;
}
.widget-63d0de .privacy-separator {
  color: #999999;
  font-size: 13px;
}
.widget-63d0de .footer-right {
  flex: 1 1 400px;
  min-width: 280px;
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  justify-content: flex-end;
}
.widget-63d0de .quick-links-section {
  min-width: 120px;
  flex-shrink: 0;
}
.widget-63d0de .quick-links-title {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 12px 0;
}
.widget-63d0de .quick-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.widget-63d0de .quick-links-list a {
  text-decoration: none;
}
.widget-63d0de .quick-link {
  font-size: 14px;
  color: #444444;
  cursor: pointer;
}
.widget-63d0de .quick-link:hover {
  color: #0066cc;
}
.widget-63d0de .quick-link,
.widget-63d0de .privacy-link {
  position: relative;
  display: inline-block;
  transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}
.widget-63d0de .hover-effect-color .quick-link:hover,
.widget-63d0de .hover-effect-color .privacy-link:hover {
  color: #0066cc;
}
.widget-63d0de .hover-effect-underline .quick-link:hover,
.widget-63d0de .hover-effect-underline .privacy-link:hover {
  color: #0066cc;
}
.widget-63d0de .hover-effect-slide-underline .quick-link,
.widget-63d0de .hover-effect-slide-underline .privacy-link {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.3s ease, color 0.3s ease;
}
.widget-63d0de .hover-effect-slide-underline .quick-link:hover,
.widget-63d0de .hover-effect-slide-underline .privacy-link:hover {
  background-size: 100% 1px;
  color: #0066cc;
}
.widget-63d0de .hover-effect-lift .quick-link:hover,
.widget-63d0de .hover-effect-lift .privacy-link:hover {
  transform: translateY(-3px);
  color: #0066cc;
}
.widget-63d0de .hover-effect-fade .quick-link:hover,
.widget-63d0de .hover-effect-fade .privacy-link:hover {
  opacity: 0.6;
}
.widget-63d0de .hover-effect-none .quick-link:hover,
.widget-63d0de .hover-effect-none .privacy-link:hover {
  color: inherit;
}
.widget-63d0de .social-icon-link svg {
  transition: fill 0.2s ease, transform 0.25s ease, opacity 0.25s ease;
}
.widget-63d0de .hover-effect-lift .social-icon-link:hover svg {
  transform: translateY(-3px);
}
.widget-63d0de .hover-effect-fade .social-icon-link:hover svg {
  opacity: 0.6;
}
.widget-63d0de .club-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.widget-63d0de .club-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.widget-63d0de .club-title {
  font-size: 40px;
  font-weight: 800;
  color: #1f2937;
  margin: 0;
  flex: 1 1 auto;
}
.widget-63d0de .club-logo {
  max-width: 140px;
  height: auto;
  object-fit: contain;
  margin-bottom: 0;
  flex-shrink: 0;
}
.widget-63d0de .club-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.widget-63d0de .club-links {
  flex: 1 1 0;
  display: flex;
  justify-content: flex-start;
}
.widget-63d0de .club-quick-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.widget-63d0de .club-location {
  flex: 1 1 0;
  justify-content: center;
  text-align: center;
}
.widget-63d0de .club-social {
  flex: 1 1 0;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .widget-63d0de .club-footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .widget-63d0de .club-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .widget-63d0de .club-social {
    justify-content: flex-start;
  }
  .widget-63d0de .club-location {
    text-align: left;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .widget-63d0de .footer-container {
    gap: 30px;
  }
  .widget-63d0de .footer-right {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .widget-63d0de .footer-widget {
    padding: 32px 16px;
  }
  .widget-63d0de .footer-container {
    flex-direction: column;
    gap: 32px;
  }
  .widget-63d0de .footer-left,
  .widget-63d0de .footer-right {
    flex: 1 1 auto;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .widget-63d0de .quick-links-section {
    min-width: 45%;
  }
  .widget-63d0de .quick-links-list {
    gap: 10px;
  }
}

.widget-95b70e {
  --sponsor-columns-desktop: 5;
  /* Desktop column control: cap card growth so row wraps to configured column count */
}
.widget-95b70e .sponsors-widget {
  width: 100%;
  box-sizing: border-box;
  padding: 24px 0;
}
.widget-95b70e .sponsor-header-row {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 12px;
  margin: 0 0 32px 0;
}
.widget-95b70e .sponsor-heading {
  text-align: left;
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  color: #1F2937;
}
.widget-95b70e .sponsor-header-divider {
  font-size: 14px;
  color: #9CA3AF;
  line-height: 1;
}
.widget-95b70e .sponsor-view-all {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  color: #1e40af;
  transition: color 0.2s ease;
}
.widget-95b70e .sponsor-view-all a,
.widget-95b70e .sponsor-view-all a:hover,
.widget-95b70e .sponsor-view-all a:visited {
  text-decoration: none;
}
.widget-95b70e .sponsor-view-all {
  transition: color 0.2s ease;
}
.widget-95b70e .sponsor-view-all:hover,
.widget-95b70e .sponsor-view-all:hover a {
  color: #1e3a8a;
}
.widget-95b70e .sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}
.widget-95b70e .sponsor-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 140px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  flex: 0 0 auto;
}
.widget-95b70e .sponsor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #D1D5DB;
}
.widget-95b70e .sponsor-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.widget-95b70e .sponsor-logo {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.widget-95b70e .sponsor-logo.grayscale {
  filter: grayscale(100%);
  opacity: 0.7;
}
.widget-95b70e .sponsor-card:hover .sponsor-logo.grayscale {
  filter: grayscale(0%);
  opacity: 1;
}
.widget-95b70e .sponsor-card.no-background {
  background: transparent;
  border-color: transparent;
}
.widget-95b70e .sponsors-grid.stretch-logos {
  justify-content: space-between;
}
.widget-95b70e .sponsors-grid[data-columns-desktop="2"] .sponsor-card {
  flex-basis: calc(50% - 24px);
}
.widget-95b70e .sponsors-grid[data-columns-desktop="3"] .sponsor-card {
  flex-basis: calc(33.3333333333% - 24px);
}
.widget-95b70e .sponsors-grid[data-columns-desktop="4"] .sponsor-card {
  flex-basis: calc(25% - 24px);
}
.widget-95b70e .sponsors-grid[data-columns-desktop="5"] .sponsor-card {
  flex-basis: calc(20% - 24px);
}
.widget-95b70e .sponsors-grid[data-columns-desktop="6"] .sponsor-card {
  flex-basis: calc(16.6666666667% - 24px);
}

@media (min-width: 768px) and (max-width: 1024px) {
  .widget-95b70e .sponsors-grid[data-columns-desktop] .sponsor-card {
    flex-basis: calc(33.3333333333% - 24px);
  }
  .widget-95b70e .sponsor-card {
    width: 150px;
    height: 120px;
  }
}
@media (max-width: 767px) {
  .widget-95b70e .sponsors-grid[data-columns-desktop] .sponsor-card {
    flex-basis: calc(50% - 16px);
  }
  .widget-95b70e .sponsors-grid {
    gap: 16px;
  }
  .widget-95b70e .sponsor-card {
    width: 130px;
    height: 100px;
    padding: 12px;
  }
  .widget-95b70e .sponsor-heading {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
