.event-single {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.event-header {
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.event-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.event-time::before {
  content: "•";
  margin-right: 1rem;
}

.event-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem 0;
  color: #111827;
}

.event-description {
  font-size: 1.25rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.event-location {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: #f9fafb;
  border-left: 4px solid #2A9D8E;
  margin-bottom: 2rem;
  border-radius: 4px;
}

.event-location svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: #2A9D8E;
}

.event-content {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #374151;
}

.event-content p {
  margin-bottom: 1.5rem;
}

.event-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.back-link {
  color: #2A9D8E;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.back-link:hover {
  color: #166d6d;
}

@media (max-width: 640px) {
  .event-title {
    font-size: 2rem;
  }
  
  .event-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .event-time::before {
    content: none;
  }
}

.agenda-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.agenda-header {
  text-align: center;
  margin-bottom: 3rem;
}

.agenda-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #111827;
}

.agenda-intro {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.events-grid {
  display: grid;
  gap: 2rem;
}

.event-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.event-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-color: #2A9D8E;
}

.event-card-header {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #2A9D8E;
  color: white;
  border-radius: 8px;
  padding: 1rem;
  min-width: 80px;
  text-align: center;
  flex-shrink: 0;
}

.date-day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.date-month {
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-top: 0.25rem;
  font-weight: 600;
}

.date-year {
  font-size: 0.75rem;
  margin-top: 0.25rem;
  opacity: 0.9;
}

.event-card-content {
  flex: 1;
}

.event-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.event-card-title a {
  color: #111827;
  text-decoration: none;
  transition: color 0.2s;
}

.event-card-title a:hover {
  color: #2A9D8E;
}

.event-card-description {
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

.event-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
  font-size: 0.875rem;
  color: #6b7280;
}

.event-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-detail svg {
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .agenda-header h1 {
    font-size: 2rem;
  }
  
  .event-card-header {
    flex-direction: column;
  }
  
  .event-date {
    align-self: flex-start;
  }
  
  .event-card-footer {
    flex-direction: column;
    gap: 0.75rem;
  }
}
