@import url("./bootstrap-icons.css");
@import url("../css/custom.css");

.radio_title {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  background-color: #0051a3;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.radio_title span {
  color: #A4CEFF;
  font-weight: 700;
}

.radio_title svg {
  margin-top: -6px;
}

.radio_tab {
  height: 50px;
  display: flex;
  border-bottom: 1px solid #e1e1e1;
}

.radio_tab>li {
  color: #717171;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  height: 100%;
  padding: 6px;
  border-right: 1px solid #e1e1e1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s;
  cursor: pointer;
}

.radio_tab>li:last-child {
  border-right: 0;
}

.radio_tab>li:hover,
.radio_tab>li.on {
  background-color: #489de8;
  color: #fff;
}

.radio_contetn_box {
  width:100%;
  padding: 25px;
}

.radio_section,
.video_section {
  margin-bottom: 26px;
}

.radio_img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.plyr__controls {
  display: none;
}

#videoPlayer {
  width: 100%;
}

.radio_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.radio_info_title {
  color: #333;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 4px;
}

.radio_info_date {
  color: #666;
  font-size: 16px;
  font-weight: 400;
}

.down_box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.down_text {
  color: #0051A3;
  font-size: 14px;
  font-weight: 500;
  gap: 6px;
}

.down_btn {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  background-color: #FFF;
  width: 110px;
  height: 40px;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

@media screen and (max-width: 480px) {
  .radio_contetn_box {
    padding: 0;
  }
  
  .radio_info {
    flex-direction: column;
    gap: 10px;
  }

  .radio_info_box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .radio_section,
  .video_section {
    margin-bottom: 12px;
  }

  .radio_img {
    aspect-ratio: 1 / 1;
  }

  .radio_info_title {
    font-size: 18px;
  }

  .radio_info_date {
    font-size: 14px;
  }

  .down_box {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
}