#agenda-featured-slider {
  position: relative;
  overflow: hidden;
  margin: 2rem 0;
}

.agenda-featured-header .text {
  max-width: 70%;
}

.agenda-featured-header h2 {
  margin: 0;
}

.agenda-featured-header p {
  margin: 0.3rem 0 0;
  color: #666;
}

.agenda-featured-header .agenda-featured-link {
  text-align: right;
  border: #1e1f1f;
  border-radius: 5px;
  margin-top: 1rem;
}

.agenda-featured-header .agenda-featured-link a {
  color: #1e1f1f;
  text-decoration: none;
  font-weight: 100;
  text-transform: uppercase;
  padding: 1rem;
  border: 1px solid #1e1f1f;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
}

.featured-description ul {
    padding-inline-start: 15px;
    margin-block-start: 0;
}

.agenda-featured-header .agenda-featured-link a:hover {
  text-decoration: none;
}

.agenda-featured-wrapper {
    padding-bottom: 4rem;
}

.featured-sessions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
}

.slider-all-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1rem 1rem 2rem;
}

.slider-dots {
  display: flex;
  justify-content: center;
  flex: 1;
  gap: 0.5rem;
}

.slider-prev,
.slider-next {
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #ccc;
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
  flex-direction: column;
  align-items: stretch;
}

.slider-dots {
  text-align: center;
  margin-top: 1rem;
}

.slider-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #bbb;
  border-radius: 50%;
  border: none;
  padding: 0;
  margin: 0;
  line-height: 0;
  box-sizing: content-box;
  appearance: none;
  cursor: pointer;
}


.slider-dot.active {
  background: #717171;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 40%;
  z-index: 10;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  font-size: 24px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
  padding: 0;
  border: none;
}

.slider-prev {
  left: 10px;
}

.slider-next {
  right: 10px;
}

.slider-prev:disabled,
.slider-next:disabled {
  opacity: 0.3;
  cursor: default;
}

.featured-badge {
    align-items: center;
    display: flex;
    gap: 1.5rem;
    padding-bottom: 20px;
}

.featured-time {
    padding-bottom: 10px;
    font-size: 1.4rem;
}

.featured-badge .featured {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: .040625rem;
    line-height: 1.25rem;
    text-transform: uppercase;
    padding: 5px;
    background-color: #2F8CCC;
    border-radius: 5px;
    color: white;
}
.featured-meta {
  color: #333;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.featured-title h5{
  line-height: 1.2;
  text-transform: uppercase;
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: .5px;
  color: #065185;
  min-height: 70px;
}

a.featured-title {
    text-decoration: none;
}

.featured-description {
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 300;
    text-decoration: none;
    color: inherit;
    line-height: 1.3;
    padding-bottom: 4px;
}

.featured-speakers {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    align-content: space-around;
    justify-content: flex-start;
}

.featured-speakers .speaker-thumbs {
  display: flex;
  gap: 0.5rem;
}

.featured-speakers img.speaker-thumb {
  border-radius: 10px;
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.featured-speakers .speaker-names {
  font-weight: bold;
  color: #00303d;
  margin-top: 0.25rem;
}

.featured-speakers a {
  text-decoration: none;
  color: inherit;
}

.featured-speakers .speaker-modal-trigger {
  cursor: pointer;
}

.speaker-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.speaker-name {
  font-weight: 600;
  color: #001f2d;
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
  align-items: stretch;
}

.featured-sessions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-slide {
  flex: 0 0 80%;
  transition: all 0.3s ease;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 2rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}

.featured-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

.slider-track {
  overflow: hidden;
}

.featured-sessions {
  display: flex;
  flex-direction: row;
  transition: transform 0.4s ease;
  gap: 32px;
}

.featured-slide {
  flex: 0 0 60%;
  max-width: 700px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 2rem;
  transition: all 0.3s ease;
}

.featured-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

@media (max-width: 450px) {
  .featured-slide {
    min-width: 370px;
  }

}

@media (max-width: 549px) {
  .featured-slide {
    min-width: 400px;
  }
}

@media (min-width: 550px) {
  .featured-slide {
    min-width: 500px;
  }
}

@media (min-width: 600px) {
  .featured-slide {
    flex: 0 0 80%;
    margin: 0 auto;
  }
}

@media (max-width: 899px) {
  .featured-slide {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: unset;
    margin: 0 auto;
  }
}

@media (min-width: 900px) {
  .featured-sessions {
    gap: 32px;
  }

  .featured-slide {
    flex: 0 0 calc((100% - 32px) / 2);
    max-width: none;
    min-width: unset;
  }

  .agenda-featured-header .text {
    max-width: 60%;
  }
}

.slider-toggle {
    position: absolute;
    top: 10%;
    z-index: 10;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    font-size: 22px;
    font-weight: normal;
    line-height: 40px;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    user-select: none;
    padding: 0;
    border: none;
    right:10px;
}

button.slider-toggle {
    background: rgba(0, 0, 0, 0.4);
}

.slider-toggle:hover {
  background: rgba(0, 0, 0, 0.6);
}

.session-status.badge-success {
    display: inline-block;
    background-color: #2F8CCC;
    color: #fff;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
}

.speaker-sessions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.speaker-session-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.speaker-session-item .session-info {
  flex: 1;
}

.view-session-link {
  white-space: nowrap;
}
