/* Cusotom podcast listing styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

.podcast-card {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.postcast-img {
  height: 220px;
  width: 220px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10px;
}

.postcast-no {
  font-size: 34px;
  font-weight: 900;
  color: #ffca62;
}

.podcast-heading {
  margin-bottom: 10px;
  color: #335381;
}

.podcast-sub-heading {
  margin-bottom: 10px;
  font-size: 25px;
  color: #335381;
}

.podcast-description {
  font-size: 22px;
  margin-bottom: 30px;
  color: #6f6e6e;
  display: -webkit-box;
    -webkit-box-orient: vertical; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    line-clamp: 2; 
    -webkit-line-clamp: 2; 
    max-height: 3em; 
    line-height: 1.5em; 
}

.play-btn {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #335381;
}

.play-btn i {
  font-size: 25px;
  color: white;
}

.podcast-card-features {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.play-btn-and-date {
  display: flex;
  gap: 30px;
  align-items: center;
}

.play-btn-and-date span {
  font-size: 20px;
  color: #335381;
}

.podcast-no-and-label {
  display: flex;
  justify-content: space-between;
}

.podcast-no-and-label span {
  font-weight: 700;
  font-size: 16px;
  color: white;
}

.action-icons {
  display: flex;
  gap: 20px;
}

.action-icons i {
  color: #848485;
  font-size: 20px;
}

.postcast-img {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.podcast-img-bottom-content {
  margin-bottom: 20px;
}

.podcast-card-content {
  padding: 20px;
}

.podcast-img-bottom-content h3 {
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.podcast-img-bottom-content span {
  font-size: 24px;
  font-weight: 900;
  color: #ffca62;
}

@media (max-width: 768px) {
  .postcast-img {
    width: 100%;
  }

  .podcast-card {
    flex-direction: column;
  }

  .podcast-card {
    gap: 0px;
  }

  .play-btn-and-date {
    gap: 10px;
  }
}
