/* ===========================
   Daily Schedule Block (Updated)
   Matches screenshot layout/style
=========================== */

html {
  scroll-behavior: smooth;
}

.conference-top-content__badge {
    display: none;
  }
.daily-schedule {
  margin: 0 auto;
  padding: 80px 0;
}

.daily-schedule-content {
  max-width: 90%;
  margin: 0 auto;
}

.daily-schedule-content h1 {
  margin: 0 0 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #000;
}

.conference-badge.mobile {
  margin: 18px 0 10px;
}

.conference-price-badge-img {
  max-width: 220px;
  height: auto;
  display: block;
}

.conference-schedule-paragraph {
  margin: 0 0 18px;
  font-weight: 500px;
  line-height: 32px;
}

/* ===========================
   Top Buttons
=========================== */

.daily-schedule-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 14px 0 10px;
}




/* ===========================
   Days Grid (4 columns like screenshot)
=========================== */

.daily-schedule-group {
  max-width: 90%;
  margin: 28px auto 60px;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.daily-schedule-column {
  background: transparent;
}

/* Header text above the bordered schedule box */
.daily-schedule-header {
  padding: 0 2px 75px;
  border: 0;
   font-family: 'Niveau-Grotesk', niveau-grotesk, sans-serif;
}

.daily-schedule-header h6, .daily-schedule-header h5 {
  color: #000 !important;
}

.daily-schedule-header > span {
  display: inline-block;
  font-weight: 900;
  color: #111;
  margin-bottom: 6px;
}

.daily-schedule-header h5 {
  margin: 0;
  font-weight: 900;
  color: #5b2a86;
}

.daily-schedule-header p {
  margin: 0;
}

/* inner wrapper just keeps spacing consistent */
.daily-schedule-inner {
  padding: 0;
  position: relative;
}

/* ===========================
   Speaker (match mockup)
=========================== */

.daily-schedule .daily-schedule-speaker{
  display: flex;
  gap: 16px;
  align-items: center;
  background: #fff;
  top: -60px;
  position: absolute;
  margin: 0 10px;
  padding-right: 10px;
}

/* Headshot frame */
.daily-schedule .speaker-image{
  width: 88px;
  height: 88px;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
  border: 2px solid #5b2a86;
  background: #fff;

}

/* Text stack */
.daily-schedule .speaker-info{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.daily-schedule .speaker-info p{
  margin: 0;
  line-height: 1.2;
  font-family: 'Niveau-Grotesk', niveau-grotesk, sans-serif !important;
}


.daily-schedule .speaker-info h5 {
  font-weight: 900;
  color: #111;
}

.daily-schedule .credential{
  display: inline-block;
  margin-top: 4px;
  font-weight: 900;
  color: #52287E;
  opacity: 0.95;
}

/* Link row (Speaker Bio) */
.daily-schedule .speaker-links{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.daily-schedule .speaker-bio-link,
.daily-schedule .speaker-email-link{
  font-size: 16px;
  font-weight: 900;
  color: #5b2a86;
  text-decoration: none;
}

.daily-schedule .speaker-bio-link:hover {
    color: #52c4c7;
}

/* Optional: if you ONLY want "Speaker Bio" visible like the mockup */
.daily-schedule .speaker-email-link{
  display: none;
}

/* ===========================
   Make speaker feel attached to the schedule card
   (your schedule-list currently starts immediately)
=========================== */

.daily-schedule .schedule-list{
  margin-top: 10px;
  padding-top: 75px;
}

/* ===========================
   Responsive
=========================== */

@media (max-width: 1340px) {
  .conference-top-content__badge {
    display: inline-block;
  }
  .daily-schedule-content {
    display:flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .daily-schedule-content .intro-content {
    max-width: 60%; 
  }
}

@media (max-width: 768px){
  .daily-schedule .schedule-list {
    padding-top: 50px;
  }
  .daily-schedule .daily-schedule-speaker{
    grid-template-columns: 84px 1fr;
    gap: 14px;
  }

  .daily-schedule .speaker-image{
    width: 80px;
    height: 80px;
    border-radius: 12px;
  }

  .daily-schedule .speaker-bio-link,
  .daily-schedule .speaker-email-link{
    font-size: 15px;
  }

  .daily-schedule-content {
    flex-wrap: wrap;
  }

  .daily-schedule-content .intro-content {
    max-width: 100%;
  }
}

/* collapsed (points right) */
.expand-all-button[aria-expanded="false"]::after {
  transform: rotate(0deg);
}

/* expanded (points down) */
.expand-all-button[aria-expanded="true"]::after {
  transform: rotate(90deg);
  padding-left: 10px;
  padding-right: 10px;
}


/* ===========================
   Schedule Box + Rows (Screenshot style)
=========================== */

/* one continuous bordered box */
.schedule-list {
  border: 2px solid rgba(91, 42, 134, 0.85);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

/* each row becomes a flat strip */
.schedule-list-item {
  border-radius: 0;
  padding: 12px 12px;
  margin: 0;
}

/* time */
.schedule-list-item > span {
  display: block;
  font-weight: 900;
  color: #111;
  margin: 0 0 6px;
}

/* alternating strip backgrounds */
.schedule-back-black {
  background: #ffffff;
  color: #111;
}

.schedule-back-black .description-container p {
    color: #000;
}

.schedule-back-purple {
  background: rgba(91, 42, 134, 0.10);
  color: #111;
}

 .description-container p {
    color: #000;
}

.description-container h6 {
    color: #000;
}

.schedule-list-item .description-container p {
font-family: 'Niveau-Grotesk', niveau-grotesk, sans-serif !important;
    font-weight: 900;
}

.is-expandable .description-container h6 {
    color: #52287E;
}

.schedule-list-item.break p {
  margin: 0;
  font-weight: 900;
  color: #000;
}

.schedule-list-item p {
  font-weight: 900;
  color: #000;
}

/* title row with + area */
.description-container {
  display: grid;
  grid-template-columns: 1fr 44px;
  align-items: center;
  gap: 10px;
}

.description-container br {
  display: none;
  margin: 0;
}

.is-expandable .description p {
  font-weight: 500;
  margin-top: 15px;
}

.description-container a {
  color: inherit;
  text-decoration: none;
}

.description-container a:hover {
  text-decoration: underline;
}

/* right + column divider */
.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: 10px;
  border-left: 1px solid rgba(91, 42, 134, 0.35);
}

/* plus button */
.expand-button {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 0;
  background: transparent;
  color: #52287E;
  opacity: .5;
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

/* expanded description content */
.description {
  margin: 10px 0 0;
  color: #000;
  line-height: 1.45;
  border-radius: 4px;
}

/* ===========================
   Additional Details
=========================== */

.add-details {
  max-width: 90%;
  margin: 10px auto 60px;
}

.add-details-box {
  border-radius: 10px;
  background: #fff;
}

.add-details-box h4 {
  margin: 0 0 10px;
  font-weight: 900;
  color: #000;
}

.add-details-box p {
  margin: 0 0 6px;
  line-height: 32px;
}

.add-details-box ul {
    margin-left: 20px;
}


/* ===========================
   Special Session
=========================== */

.daily-schedule-column.daily-schedule-column--special {
  margin-top: 40px;
}

/* ===========================
   Responsive
=========================== */

@media (max-width: 1400px) {
  .daily-schedule-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .daily-schedule {
    padding: 40px 0;
  }
  .daily-schedule-group {
    grid-template-columns: 1fr;
  }

  .daily-schedule-content,
  .daily-schedule-group,
  .add-details {
    max-width: 92%;
  }
  .daily-schedule-column.daily-schedule-column--special {
    margin-top: 26px;
  }
}


/* ===========================
   Daily Schedule: Row color rules
   - Default: purple tint
   - NOT expandable: white
   - Break (and Lunch if marked break): white
=========================== */

/* Default EVERYTHING to purple */
.schedule-list-item{
  background: rgba(91, 42, 134, 0.10) !important;
  color: #111;
}

.schedule-list-item.is-expandable {
  background: rgba(91, 42, 134, 0.10) !important;
  cursor:pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  margin-bottom: 5px;
}

.schedule-list-item.is-expandable:last-of-type {
  margin-bottom: 0px;
}

.schedule-list-item.is-expandable:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  z-index: 1;
}

.schedule-list-item .expand-button {
  background: transparent;
  color: #52287E;
  opacity: .5;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, opacity .25s ease;
}

.schedule-list-item.is-expandable:hover .expand-button {
  transform: scale(1.03);
  background: rgba(91, 42, 134, 0.10);
  color: #52287E;
  opacity: .5;
}

.schedule-list-item .expand-button:focus,
.schedule-list-item .expand-button:focus-visible,
.schedule-list-item .expand-button:active {
  background: transparent !important;
  color: #52287E !important;
  opacity: .5 !important;
  transform: none;
  box-shadow: none !important;
  outline: none;
}

/* If the row is NOT expandable -> white */
.schedule-list-item:not(.is-expandable){
  background: #fff !important;
}

/* Break rows always white (covers lunch too if you flag it as break) */
.schedule-list-item.break{
  background: #fff !important;
}