/* Rendu du programme repris de la feuille historique BizPage/TheEvent. */
.nw-fr-home .schedule .nav1-tabs {
  display: block;
  margin: 0 auto 30px;
  padding: 0;
  border-bottom: 0;
  text-align: center;
}

.nw-fr-home .schedule .nav1-tabs li {
  display: inline-block;
  margin: 4px 2px;
}

.nw-fr-home .schedule .nav1-tabs a {
  display: block;
  padding: 10px 28px;
  color: #fff;
  background: var(--nw-ink);
  border: 0;
  border-radius: 50px;
  font-weight: 700;
}

.nw-fr-home .schedule .nav1-tabs a:hover,
.nw-fr-home .schedule .nav1-tabs a.active {
  color: #fff;
  background: var(--nw-accent);
}

.nw-fr-home .schedule .tab-pane {
  width: 100%;
  max-width: 900px;
  transition: opacity .2s ease-in-out;
}

.nw-fr-home .schedule .tab-pane:not(.active) { display: none; }
.nw-fr-home .schedule .tab-pane.active { display: block; }

.nw-fr-home .schedule .schedule-item {
  min-height: 90px;
  margin: 0;
  padding: 15px 8px;
  background: #fff;
  border-bottom: 1px solid var(--nw-border);
  transition: background-color .2s ease-in-out;
}

.nw-fr-home .schedule .schedule-item:hover {
  background: rgba(var(--nw-accent-rgb), .045);
}

.nw-fr-home .schedule .schedule-item time {
  display: inline-block;
  padding-bottom: 5px;
  color: var(--nw-accent-dark);
  font-weight: 900;
}

.nw-fr-home .schedule .schedule-item .speaker {
  float: left;
  width: 60px;
  height: 60px;
  margin: 0 12px 10px 0;
  overflow: hidden;
  background: var(--nw-soft);
  border-radius: 50%;
}

.nw-fr-home .schedule .schedule-item .speaker img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nw-fr-home .schedule .schedule-item h4 {
  margin: 0 0 5px;
  color: var(--nw-ink);
  font-size: 18px;
  font-weight: 700;
}

.nw-fr-home .schedule .schedule-item h4 span {
  color: var(--nw-muted);
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
}

.nw-fr-home .schedule .schedule-item p {
  margin-bottom: 0;
  color: var(--nw-muted);
  font-style: italic;
}

@media (max-width: 767px) {
  .nw-fr-home .schedule .nav1-tabs {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .nw-fr-home .schedule .nav1-tabs li { flex: 0 0 auto; margin: 0; }
  .nw-fr-home .schedule .nav1-tabs a { padding: 9px 17px; scroll-snap-align: start; }
  .nw-fr-home .schedule .schedule-item .speaker { width: 48px; height: 48px; }
}
