  /* CARD */

  .custom-card{
    border:none;
    border-radius:28px;
    background:white;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
    overflow:hidden;
    height:100%;
  }

  .card-body-custom{
    padding:35px;
  }

  .info-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    background:rgba(253,128,46,.15);
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:20px;
  }

  /* SCHEDULE */

  .schedule-item{
    display:flex;
    gap:20px;
    align-items:flex-start;
    padding-bottom:25px;
    margin-bottom:25px;
    border-bottom:1px dashed #dee2e6;
  }

  .schedule-item:last-child{
    margin-bottom:0;
    padding-bottom:0;
    border-bottom:none;
  }

  .schedule-date{
    min-width:90px;
    background:rgba(253,128,46,.12);
    color:var(--primary);
    border-radius:20px;
    padding:15px;
    text-align:center;
    font-weight:700;
  }

  .schedule-date span{
    display:block;
    font-size:2rem;
    line-height:1;
  }