/* program */
.program {
  .title-box {
    font-family: var(--font-oswald);
    font-size: 16px;
  }
  .program_list {
    margin: 0 0 50px 0;
  }
  .program_item {
    padding: 0 0 20px 0;
    margin: 0 0 20px 0;
    border-bottom: dotted 2px var(--color-gray);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .l-left {
    width: 200px;
    margin: 0 20px 0 0;
    flex-shrink: 0;
  }
  .icon_list {
    margin: 10px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .icon_item:not(:last-child) {
    margin: 0 10px 0 0;
  }
  .icon_item a {
    width: 30px;
    height: 30px;
    color: var(--color-gray-dark);
    border-radius: 50vh;
    border: solid 1px var(--color-gray-dark);
    background: var(--color-white);
    display: block;
    position: relative;
    transition: background 0.25s ease;
  }
  .icon_item a:hover {
    color: var(--color-white);
    background: var(--color-gray-dark);
  }
  .icon_item a i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .l-right {
    width: 100%;
    position: relative;
  }
  .time,
  .dj {
    margin: 0 0 0 20px;
    font-size: 14px;
    position: relative;
  }
  .time::before,
  .dj::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 700;
    position: absolute;
    left: -20px;
    top: 0;
  }
  .time::before {
    content: '\f073';
  }
  .dj::before {
    content: '\f130';
  }
  .text {
    margin: 5px 0 0 0;
    font-size: 12px;
  }
  .corner {
    padding: 10px 0 0 0;
    margin: 10px 0 0 0;
    border-top: dotted 1px var(--color-gray);
  }
  .corner .l-col {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .corner .icon_list {
    margin-top: 0;
    margin-left: 10px;
  }
  .pgm-title {
    font-size: 14px;
    font-weight: 600;
  }
  .program_list.l-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }

  .program_list.l-grid .program_item {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 1024px) {
  .program {
    .program_list.l-grid {
      grid-template-columns: repeat(1, 1fr);
    }
  }
}

@media screen and (max-width: 800px) {
  .program {
    .program_item {
      flex-direction: column;
      align-items: center;
    }
    .l-left {
      margin-right: 0;
      margin-bottom: 10px;
    }
    .thumbnail {
      margin: 0 0 10px 0;
    }
    .icon_item a {
      width: 40px;
      height: 40px;
    }
    .corner .l-col {
      flex-direction: column;
    }
    .corner .icon_list {
      margin-top: 5px;
      margin-bottom: 10px;
      margin-left: 0;
    }
    .pgm-title {
      text-align: center;
    }
    .program_list.l-grid {
      grid-template-columns: repeat(1, 1fr);
    }
  }
}
