/** Shopify CDN: Minification failed

Line 250:10 Unexpected "{"
Line 250:19 Expected ":"
Line 251:14 Expected identifier but found whitespace
Line 251:16 Unexpected "{"
Line 251:25 Expected ":"
Line 251:76 Expected ":"
Line 252:17 Expected identifier but found whitespace
Line 252:19 Unexpected "{"
Line 252:28 Expected ":"
Line 252:82 Expected ":"
... and 10 more hidden warnings

**/
.events-section {
  padding: var(--spacing-sections-mobile) 0;
}

@media screen and (min-width: 750px) {
  .events-section {
    padding: var(--spacing-sections-desktop) 0;
  }
}

.events-section .title-wrapper-with-link {
  margin-bottom: 2rem;
}

.events-subheading {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.125rem;
  color: rgba(var(--color-foreground), 0.75);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.events-list {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media screen and (min-width: 990px) {
  .events-list {
    gap: 2.5rem;
  }
}

/* Event Card */
.event-card {
  background: rgba(var(--color-background), 1);
  border-radius: 16px;
  border: 1px solid rgba(var(--color-foreground), 0.1);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.event-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: rgba(var(--color-foreground), 0.2);
}

@media screen and (min-width: 750px) {
  .event-card {
    flex-direction: row;
    padding: 2.5rem;
    gap: 2rem;
  }
}

/* Date Badge */
.event-date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0BA3D1;
  border-radius: 0;
  padding: 1.5rem 1rem;
  min-width: 70px;
  max-width: 70px;
  height: auto;
  flex-shrink: 0;
  box-shadow: none;
  align-self: stretch;
}

@media screen and (min-width: 750px) {
  .event-date-badge {
    min-width: 80px;
    max-width: 80px;
  }
}

.event-date-badge .event-day {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
}

.event-date-badge .event-month {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
  color: #FFFFFF;
}

/* Event Content */
.event-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Category Badge */
.event-category {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
  margin-bottom: 0.25rem;
}

.event-category.category-online {
  background: #FEF3C7;
  color: #92400E;
}

.event-category.category-parent-child {
  background: #DBEAFE;
  color: #1E40AF;
}

.event-category.category-workshop {
  background: #FDE2E4;
  color: #9B2C2C;
}

.event-category.category-celebration {
  background: #E9D5FF;
  color: #6B21A8;
}

/* Event Title */
.event-title {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.3;
  color: rgb(var(--color-foreground));
  margin: 0;
}

@media screen and (min-width: 750px) {
  .event-title {
    font-size: 1.5rem;
  }
}

/* Event Description */
.event-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(var(--color-foreground), 0.75);
  margin: 0.5rem 0;
}

.event-description p {
  margin: 0;
}

/* Event Details */
.event-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0.5rem 0 1rem 0;
}

@media screen and (min-width: 750px) {
  .event-details {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

.event-detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: rgba(var(--color-foreground), 0.7);
}

.event-detail-item .icon {
  flex-shrink: 0;
  color: rgb(var(--color-button));
}

/* Register Button */
.event-register-button {
  margin-top: auto;
  width: 100%;
  text-align: center;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

@media screen and (min-width: 750px) {
  .event-register-button {
    width: auto;
    align-self: flex-start;
  }
}

.event-register-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--color-button), 0.4);
}

/* Placeholder */
.events-placeholder {
  text-align: center;
  padding: 4rem 2rem;
  color: rgba(var(--color-foreground), 0.5);
  font-size: 1.125rem;
}

/* Section Padding */
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
  padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
}

@media screen and (min-width: 750px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
}

/* Responsive Typography */
@media screen and (max-width: 749px) {
  .event-title {
    font-size: 1.25rem;
  }
  
  .event-description {
    font-size: 0.9375rem;
  }
  
  .event-detail-item {
    font-size: 0.875rem;
  }
}

/* Animation for cards entering viewport */
@media (prefers-reduced-motion: no-preference) {
  .event-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
  }

  .event-card:nth-child(1) { animation-delay: 0.1s; }
  .event-card:nth-child(2) { animation-delay: 0.2s; }
  .event-card:nth-child(3) { animation-delay: 0.3s; }
  .event-card:nth-child(4) { animation-delay: 0.4s; }
  .event-card:nth-child(5) { animation-delay: 0.5s; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .event-card {
    border-width: 2px;
  }
  
  .event-category {
    border: 2px solid currentColor;
  }
}

/* Print Styles */
@media print {
  .event-register-button {
    display: none;
  }
  
  .event-card {
    page-break-inside: avoid;
    box-shadow: none;
    border: 1px solid #000;
  }
}
