/* Schedule/Agenda Section */
.schedule-section {
  background-color: #000;
  padding: 80px 40px;
}
@media (max-width: 768px) {
  .schedule-section {
    padding: 60px 20px !important;
  }
}

.schedule-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.ISSCA-schedule-left {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.schedule-badge {
  margin-bottom: 20px;
}

.schedule-title {
  margin: 0 0 14px 0;
}

.schedule-description {
  margin-bottom: 0;
  text-align: center;
}

.schedule-right {
  width: 100%;
}

.day-toggle {
  display: flex;
  gap: 0;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 800px;
  padding: 4px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.day-toggle-item {
  flex: 1;
  padding: 16px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 800px;
  transition: all 0.3s ease;
  font-family: "Manrope", sans-serif;
}

.day-toggle-item.active {
  background-color: #fff;
  color: #000;
}

.agenda-day {
  display: none;
}

.agenda-day.active {
  display: block;
}

.agenda-card {
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.agenda-item {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  align-items: flex-start;
  transition: background 0.2s ease;
  cursor: default;
}

.agenda-item:last-child {
  border-bottom: none;
}

.agenda-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 768px) {
  .agenda-item {
    gap: 14px !important;
    padding: 14px 16px !important;
  }
}

.agenda-time {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.agenda-time-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.agenda-time-start {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--event-color);
  line-height: 1.3;
  text-align: center;
}

@media (max-width: 768px) {
  .agenda-time-start {
    font-size: 12px !important;
  }
}

.agenda-content {
  flex: 1;
  min-width: 0;
}

.agenda-event-title {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .agenda-event-title {
    font-size: 14px !important;
  }
}

.agenda-event-description {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6em;
}

@media (max-width: 768px) {
  .agenda-event-description {
    font-size: 12px !important;
  }
}

.agenda-speakers {
  display: flex;
  align-items: center;
  gap: 6px;
}

.agenda-speakers--multi {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.agenda-speakers-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  align-items: center;
}

.agenda-speakers-list--wrap {
  flex-wrap: wrap;
}

.agenda-speaker-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.agenda-speaker-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.agenda-group-toggle,
.agenda-group-break-title {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: left;
  color: #fff;
}

.agenda-group-toggle {
  width: 100%;
  background: #1c1c1c;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.agenda-group-toggle:first-child {
  border-top: none;
  border-radius: 16px 16px 0 0;
}

.agenda-group-toggle:hover {
  background: #242424;
}

.agenda-group-chevron {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease;
  margin-left: 12px;
}

.agenda-group-chevron.is-collapsed {
  transform: rotate(-90deg);
}

.agenda-group-content {
  display: block;
}

.agenda-group-content.is-collapsed {
  display: none;
}

.agenda-group-break {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  gap: 12px;
}

.agenda-group-break-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.agenda-group-break-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.agenda-session-type-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.agenda-session-type-icon-networking img,
.agenda-session-type-icon-lunch img {
  width: 3.75rem;
  height: 3.75rem;
}

.agenda-session-type-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.agenda-event-title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.agenda-speakers--multi .agenda-event-title-wrap {
  width: 100%;
}

.agenda-group-break-time {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--event-color);
  line-height: 1.3;
  text-align: center;
}

.agenda-group-break-description {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.agenda-networking-inline {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  line-height: 1.4;
}

.agenda-networking-inline-location {
  color: rgba(255, 255, 255, 0.65);
}

.agenda-networking-inline-label {
  color: var(--event-color);
  font-weight: 700;
}

.agenda-networking-inline-map {
  color: var(--event-color);
  text-decoration: none;
  font-weight: 600;
}

.agenda-networking-inline-map:hover {
  text-decoration: underline;
}

.agenda-speaker-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 920px) {
  .schedule-container {
    gap: 40px;
  }

  .ISSCA-schedule-left {
    position: relative !important;
    top: auto !important;
  }

  .agenda-item {
    gap: 16px;
  }

  .agenda-time-start {
    font-size: 20px;
  }

  .day-toggle-item {
    padding: 12px 20px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .schedule-container {
    gap: 32px;
  }

  .ISSCA-schedule-left {
    position: relative !important;
    top: auto !important;
  }

  .agenda-item {
    gap: 12px;
  }

  .agenda-speakers {
    gap: 8px;
  }

  .agenda-speakers--multi {
    gap: 8px;
  }

  .agenda-speakers-list {
    gap: 4px;
  }

  .agenda-time-start {
    font-size: 22px;
  }

  .day-toggle-item {
    padding: 10px 16px;
    font-size: 14px;
  }

  .agenda-group-break {
    align-items: flex-start;
  }

  .agenda-group-break-content {
    gap: 2px;
  }

  .agenda-group-break-title {
    font-size: 20px;
  }

  .agenda-group-break-description {
    font-size: 13px;
  }

  .agenda-networking-inline {
    font-size: 12px;
    gap: 8px;
  }

  .agenda-group-break-time {
    font-size: 14px;
    margin-top: 2px;
  }

  .agenda-session-type-icon-networking img,
  .agenda-session-type-icon-lunch img {
    width: 3rem;
    height: 3rem;
  }
}
