/*------------------------------------------------------------------------------
---------------------------------------------------------------------------------
------------------SCHEDULE EVENT / FRO MOBILE-------------------------------------*/
.heading {
    line-height: 2;
    font-weight: 900;
  }
  
  .section-container {
    padding: var(--padding);
    
  }
  .section-container a {
    color: #ffffff;
  }
  
  .schedule-container {
    overflow: auto;
  }
  
  .schedule-stage__wrapper {
    display: inline-block
  }
  
  .schedule-stage {
    display: grid;
    grid-auto-columns: max-content;
    grid-auto-flow: column;
    grid-gap: 2rem;
    padding-bottom: 5rem;
    padding-top: 2rem;
    min-width: 100vw;
    background: #000000;
    color: #ffffff;
    font-family: system-ui, sans-serif;
  }
  .schedule-stage::after {
    content: "";
    width: var(--padding);
  }
  
  .divider {
    position: sticky;
    left: 0;
    border: none;
    border-bottom: 1px solid var(--border);
  }
  
  .schedule-stage:nth-child(1) > .schedule-stage__title > h3 {
    background: red;
    background: linear-gradient(to right, #eb3349, #f45c43);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .schedule-stage:nth-child(3) > .schedule-stage__title > h3 {
    background: red;
    background: linear-gradient(to right, #1d976c, #93f9b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .schedule-stage__title {
    position: sticky;
    left: 0;
    padding-right: 5rem;
    height: 100%;
   
    background: linear-gradient(to right, #000000 30%, rgba(0, 0, 0, 0));
  }
  .schedule-stage__title > h3 {
    font-weight: 800;
  }
  
  .schedule-stage_guide-container {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 370px;
    grid-gap: 2rem;
  }
  
  .guide-slot {
    color:white;
    
  }
  .guide-slot > p {
    margin-bottom: 1rem;
    color: palevioletred;
    font-size: 1rem;
  }
  
  .guide-slot_card {
    background: #0a0a0a;
    border: 1px solid white;
    border-radius: 0.8rem;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    padding: 1rem;
    cursor: pointer;
  }
  .guide-slot_card:hover {
    border-color: #c42323;
  }
  .guide-slot_card > h4 {
    margin-right: 5rem;
    font-size: 1.4rem;
    color: #ffffff;
  }
  






  /*-------------------------------------------------------------------------------------*/



  
 