@charset "UTF-8";
.mel-event--full {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 100%;
  padding: 0;
  position: relative;
}
@media (min-width: 1024px) {
  .mel-event--full {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    gap: 2rem;
  }
}

.event-hero {
  position: relative;
  width: 100%;
  margin-bottom: 0;
}
.event-hero__image {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 400px;
  max-height: 600px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .event-hero__image {
    height: 60vh;
    min-height: 500px;
    max-height: 700px;
  }
}
.event-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.event-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(141, 121, 246, 0.4) 0%, rgba(255, 111, 97, 0.3) 100%);
  pointer-events: none;
  z-index: 1;
}
.event-hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  color: #ffffff;
  z-index: 2;
}
@media (min-width: 768px) {
  .event-hero__content {
    padding: 3rem;
  }
}
.event-hero__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.event-hero__state-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
}
.event-hero__state-badge--scheduled {
  background: rgba(255, 212, 111, 0.9);
  color: #664d03;
}
.event-hero__state-badge--live {
  background: rgba(34, 197, 94, 0.9);
  color: #166534;
}
.event-hero__state-badge--sold_out {
  background: rgba(239, 68, 68, 0.9);
  color: #991b1b;
}
.event-hero__state-badge--cancelled, .event-hero__state-badge--ended {
  background: rgba(92, 92, 111, 0.9);
  color: #ffffff;
}
.event-hero__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .event-hero__title {
    font-size: 3rem;
  }
}
.event-hero__cta {
  margin-top: 1rem;
}

.mel-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.mel-event-meta__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}
.mel-event-meta__icon {
  font-size: 1.125rem;
}

.mel-event-cancelled-banner {
  padding: 1.5rem;
  background: #ef4444;
  color: #ffffff;
  text-align: center;
}
.mel-event-cancelled-banner__text {
  margin: 0;
  font-size: 1.125rem;
}

.mel-event-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .mel-event-grid {
    flex-direction: row;
    align-items: flex-start;
    padding: 0;
    gap: 3rem;
  }
}
.mel-event-grid__main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mel-event-card {
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.mel-event-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: #1a1a2e;
}
.mel-event-card__content {
  font-size: 1rem;
  line-height: 1.7;
  color: #1a1a2e;
}
.mel-event-card__content p {
  margin: 0 0 1rem 0;
}
.mel-event-card__content p:last-child {
  margin-bottom: 0;
}
.event-sidebar {
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
@media (min-width: 1024px) {
  .event-sidebar {
    width: 320px;
    flex-shrink: 0;
    position: sticky;
    top: 2rem;
    align-self: flex-start;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
  }
}
.event-sidebar__section {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}
.event-sidebar__section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .event-sidebar__section[data-collapsible] .event-sidebar__title {
    cursor: pointer;
    user-select: none;
    position: relative;
    padding-right: 2rem;
  }
  .event-sidebar__section[data-collapsible] .event-sidebar__title::after {
    content: "▼";
    position: absolute;
    right: 0;
    transition: transform 0.2s ease;
  }
  .event-sidebar__section[data-collapsible] .event-sidebar__title[aria-expanded=false]::after {
    transform: rotate(-90deg);
  }
  .event-sidebar__section[data-collapsible] .event-sidebar__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .event-sidebar__section[data-collapsible][data-expanded=true] .event-sidebar__content {
    max-height: 1000px;
  }
}
.event-sidebar__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: #1a1a2e;
}
.event-sidebar__date {
  display: block;
  margin-bottom: 1rem;
}
.event-sidebar__date-main {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}
.event-sidebar__date-time {
  font-size: 1rem;
  color: #5c5c6f;
}
.event-sidebar__calendar-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
.event-sidebar__calendar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: #8d79f6;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  background: rgba(141, 121, 246, 0.1);
  border: 1px solid rgba(141, 121, 246, 0.2);
  min-height: 44px;
}
.event-sidebar__calendar-link:hover, .event-sidebar__calendar-link:focus {
  background: rgba(141, 121, 246, 0.2);
  text-decoration: none;
  border-color: rgba(141, 121, 246, 0.3);
}
.event-sidebar__venue {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}
.event-sidebar__address {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #5c5c6f;
  font-style: normal;
  margin-bottom: 1rem;
}
.event-sidebar__map {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  margin: 1rem 0;
  background: #f5f0f7;
  min-height: 200px;
}
.event-sidebar__map.myeventlane-event-map-container {
  position: relative;
}
.event-sidebar__directions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: #ff6f61;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  background: rgba(255, 111, 97, 0.1);
  border: 1px solid rgba(255, 111, 97, 0.2);
  min-height: 44px;
  width: 100%;
}
.event-sidebar__directions:hover, .event-sidebar__directions:focus {
  background: rgba(255, 111, 97, 0.2);
  text-decoration: none;
  border-color: rgba(255, 111, 97, 0.3);
}
.event-sidebar__capacity-info {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.event-sidebar__capacity-current {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6f61;
}
.event-sidebar__capacity-separator {
  font-size: 1.25rem;
  color: #5c5c6f;
}
.event-sidebar__capacity-total {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a2e;
}
.event-sidebar__capacity-label {
  font-size: 0.875rem;
  color: #5c5c6f;
  margin-left: 0.5rem;
}
.event-sidebar__capacity-remaining {
  font-size: 0.875rem;
  color: #5c5c6f;
}

.event-cta__button {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.2s ease;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.event-cta__button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.event-cta__button-wrapper {
  width: 100%;
}

.event-cta-mobile-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  z-index: 100;
  display: none;
}
@media (max-width: 1023px) {
  .event-cta-mobile-sticky {
    display: block;
  }
}
.event-cta-mobile-sticky .event-cta__button {
  margin: 0;
  width: 100%;
}

.event-organiser {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.event-organiser__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: #1a1a2e;
}
.event-organiser__name {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  color: #1a1a2e;
}
.event-organiser__trust {
  font-size: 0.875rem;
  color: #22c55e;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.event-organiser__trust::before {
  content: "✓";
  font-weight: 600;
}