/* Toras Cohenim widgets: audio player + episode list */

/* ---- TC Audio Player ---- */
.tc-player {
  font-family: "Source Sans Pro", sans-serif;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.tc-player button {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font-size: 13px;
  font-family: inherit;
  padding: 0;
}
.tc-player .tc-play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #F47B20;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex: none;
}
.tc-player .tc-play:hover { background: #D9660F; }
.tc-player .tc-bar {
  flex: 1;
  min-width: 180px;
  height: 5px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}
.tc-player .tc-bar span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: #F47B20;
  border-radius: 3px;
  width: 0;
}
.tc-player .tc-time {
  font-size: 13px;
  opacity: 0.85;
  min-width: 86px;
  text-align: center;
}
.tc-player .tc-skip { opacity: 0.85; }
.tc-player .tc-rate {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 3px;
  padding: 2px 7px;
}

/* Light skin (player on white backgrounds) */
.tc-player--light { color: #343434; }
.tc-player--light .tc-bar { background: rgba(0, 0, 0, 0.15); }
.tc-player--light .tc-rate { border-color: rgba(0, 0, 0, 0.3); }

/* ---- TC Episode List ---- */
.tc-eplist { font-family: "Source Sans Pro", sans-serif; }
.tc-ep {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid #E8E8E8;
}
.tc-ep-play {
  width: 58px;
  height: 58px;
  flex: none;
  background: #F47B20;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tc-ep-play:hover { background: #D9660F; }
.tc-ep-meta { flex: 1; }
.tc-ep-date {
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #3E3E3E;
  font-variant: small-caps;
  margin-bottom: 4px;
}
.tc-ep-title {
  font-family: "Playfair Display", serif;
  font-size: 19px;
  font-weight: 600;
  color: #343434;
  margin: 0;
}
.tc-ep-title a { color: inherit; text-decoration: none; }
.tc-ep-title a:hover { color: #F47B20; }
.tc-ep-dl {
  flex: none;
  background: #414141;
  color: #F5EFE6;
  font-family: "Playfair Display", serif;
  font-size: 15px;
  padding: 14px 34px;
  text-decoration: none;
}
.tc-ep-dl:hover { background: #F47B20; color: #fff; }

@media (max-width: 640px) {
  .tc-ep { flex-wrap: wrap; }
  .tc-ep-dl { padding: 10px 22px; }
}
