* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.schedule-content {
  flex: 1;
  padding: 2rem 1.5rem 3rem;
}
.schedule-content .content-container {
  max-width: 56rem;
  margin: 0 auto;
}

.hero-section {
  text-align: center;
  margin-bottom: 3rem;
  padding-top: 1rem;
}
.hero-section .hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .hero-section .hero-title {
    font-size: 2rem;
  }
}
.hero-section .hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  max-width: 32rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .hero-section .hero-subtitle {
    font-size: 1rem;
  }
}

.day-selector {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}
.day-selector .day-selector-container {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  display: flex;
  padding: 0.25rem;
  gap: 8px;
}
@media (max-width: 640px) {
  .day-selector .day-selector-container {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    border-radius: 26px;
    padding: 0.5rem;
  }
}
.day-selector .day-button {
  border: none;
  cursor: pointer;
  font-weight: 500;
  border-radius: 9999px;
  transition: all 0.3s ease;
  padding: 0.75rem 2rem;
  font-family: "Hanken Grotesk", sans-serif !important;
  font-size: 16px !important;
  font-weight: 500;
}
@media (max-width: 768px) {
  .day-selector .day-button {
    padding: 0.5rem 1rem;
    font-size: 14px !important;
  }
}
@media (max-width: 640px) {
  .day-selector .day-button {
    width: 100%;
    text-align: center;
  }
}
.day-selector .day-button--active {
  background: #fff;
  color: #8b1538;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  font-weight: 600;
}
.day-selector .day-button--inactive {
  background: transparent;
  color: #fff;
}
.day-selector .day-button--inactive:hover {
  background: rgba(255, 255, 255, 0.2);
}

.program-day {
  animation: fadeIn 0.4s ease-out;
}
.program-day--hidden {
  display: none;
}

.program-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  max-width: 56rem;
  margin: 0 auto;
}
.program-card .program-header {
  background: #8b1538;
  color: #fff;
  padding: 2rem;
  text-align: center;
}
.program-card .program-header .program-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1em 0;
}
.program-card .program-header .program-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-top: 0.5rem;
}
.program-card .program-content {
  padding: 2rem;
  color: #111827;
}
@media (max-width: 768px) {
  .program-card .program-content {
    padding: 1rem;
  }
}

.time-section {
  margin-bottom: 2rem;
}
.time-section .section-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.time-section .section-header .section-badge {
  background: rgba(139, 21, 56, 0.1);
  color: #8b1538;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.time-section .section-header .section-line {
  flex: 1;
  height: 1px;
  background: #e5e7eb;
  margin-left: 1rem;
}

.timeline {
  position: relative;
}

.event-item {
  margin-bottom: 1rem;
  border-radius: 1rem;
  padding: 1rem;
  transition: all 0.3s ease;
  position: relative;
}
.event-item--highlight {
  background: rgba(139, 21, 56, 0.05);
}
.event-item--highlight:hover {
  background: rgba(139, 21, 56, 0.08);
}
.event-item::before {
  display: block;
  content: "";
  position: absolute;
  height: calc(100% + 1.5rem);
  left: 30px;
  top: 1.5rem;
  bottom: 0;
  width: 2px;
  background: #e5e7eb;
  z-index: 1;
}
@media (max-width: 768px) {
  .event-item::before {
    display: none;
  }
}
.event-item:last-child::before {
  display: none;
}
.event-item .event-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.event-item .event-content .event-main {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .event-item .event-content .event-main {
    flex-direction: column;
    gap: 1rem;
  }
}
.event-item .event-content .event-main .event-time {
  background: #8b1538;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  min-width: 60px;
  text-align: center;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .event-item .event-content .event-main .event-time {
    align-self: flex-start;
    min-width: auto;
  }
}
.event-item .event-content .event-main .event-details {
  flex: 1;
}
.event-item .event-content .event-main .event-details .event-title {
  font-weight: 700;
  color: #111827;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  margin-top: 0;
}
.event-item .event-content .event-main .event-details .event-description {
  color: #4b5563;
  margin-bottom: 0.5rem;
}
.event-item .event-content .event-main .event-details .event-locations {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .event-item .event-content .event-main .event-details .event-locations {
    flex-direction: column;
    align-items: flex-start;
  }
}

.location-tag {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  display: inline-block;
  background: #f3f4f6;
  color: #374151;
}
.location-tag--primary {
  background: #8b1538;
  color: #fff;
  font-weight: 700;
}
.location-tag--secondary {
  background: rgba(139, 21, 56, 0.2);
  color: #8b1538;
  font-weight: 700;
}

.lunch-break {
  background: linear-gradient(135deg, #8b1538 0%, #a01d42 100%);
  border-radius: 1rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: #fff;
  margin: 2rem 0;
}
.lunch-break .lunch-time {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  margin-top: 0;
}
.lunch-break .lunch-description {
  color: rgba(255, 255, 255, 0.9);
}

.cta-section {
  text-align: center;
  margin-top: 3rem;
}
.cta-section .cta-button {
  border: none;
  cursor: pointer;
  font-weight: 500;
  border-radius: 9999px;
  transition: all 0.3s ease;
  background: #fff;
  color: #8b1538;
  padding: 1rem 3rem;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.cta-section .cta-button:hover {
  background: #f3f4f6;
  box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}
@media (max-width: 640px) {
  .cta-section .cta-button {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
}
.cta-section .cta-description {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
  font-size: 1.125rem;
}

.back-section {
  padding: 0 1.5rem 1.5rem;
}
.back-section .back-container {
  max-width: 56rem;
  margin: 0 auto;
}
.back-section .back-container .back-button {
  border: none;
  cursor: pointer;
  font-weight: 500;
  border-radius: 9999px;
  transition: all 0.3s ease;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1.5rem;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.back-section .back-container .back-button:hover {
  color: #f8e8ed;
}
.back-section .back-container .back-button .back-icon {
  width: 1.25rem;
  height: 1.25rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.site-content img {
  border-radius: 1.5rem;
}

.event-info h2.h1 {
  text-align: center;
  margin: 2em 0;
  font-size: var(--h1-size);
}

/*# sourceMappingURL=event-info.css.map */
