/* Scoped styles for events section only */
.sg-featured-events {
  padding: 50px 0 40px;
  background: linear-gradient(180deg, #2d1b4e 0%, #1a0e27 100%);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.sg-featured-events .sg-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.sg-featured-events .sg-section-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #d4af37;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.sg-featured-events .sg-section-subtitle {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
  color: #a0aec0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 400;
}

.sg-events-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 25px !important;
  width: 100% !important;
}

.sg-event-card {
  background: rgba(45, 27, 78, 0.6);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.3s ease;
  position: relative;
}

.sg-event-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.sg-event-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.sg-event-date-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #d4af37 0%, #f6e05e 100%);
  color: #1a0e27;
  padding: 10px 15px;
  border-radius: 8px;
  text-align: center;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
}

.sg-event-month {
  font-size: 0.75rem;
  letter-spacing: 1px;
  font-weight: 700;
}

.sg-event-day {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
}

.sg-event-content {
  padding: 25px;
  display: flex;
  gap: 20px;
}

.sg-event-thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.sg-event-text-content h3 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.sg-event-text-content p {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  color: #a0aec0;
  line-height: 1.6;
  margin-bottom: 15px;
  font-weight: 400;
}

.sg-event-meta {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: #718096;
  margin-bottom: 15px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
}

.sg-event-btn {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(135deg, #d4af37 0%, #f6e05e 100%);
  color: #1a0e27;
  text-decoration: none;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.sg-event-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
  color: #1a0e27;
}

.sg-btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #d4af37 0%, #f6e05e 100%);
  color: #1a0e27;
  text-decoration: none;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  letter-spacing: 0.3px;
}

.sg-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
  color: #1a0e27;
}

/* Mobile Responsive */
@media (max-width: 968px) {
  .sg-events-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .sg-featured-events .sg-container {
    padding: 0 20px;
  }
  
  .sg-events-grid {
    grid-template-columns: 1fr !important;
  }
  
  .sg-event-content {
    flex-direction: column;
  }
  
  .sg-event-thumbnail {
    width: 100%;
    height: 120px;
  }
  
  .sg-featured-events .sg-section-title {
    font-size: 1.8rem;
  }
}


