.podcast-text-show-mobile {
  display: none;
}

.news-latest-podcast .section-small-heading {
  font: 700 18px/22px var(--font-helvetica-neue);
  letter-spacing: 10%;
  text-transform: uppercase;
  color: #00677F;
  margin-block: 0 24px;
}

.news-latest-podcast {
  margin-bottom: 80px;
}

.podcast-flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 23px;
}

.podcast-flex>div {
  background-color: #F5F5F5;
  display: flex;
}

.podcast-card {

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.podcast-flex .podcast-content>p {
  font: 500 16px/1.5 var(--font-helvetica-neue);
}

.podcast-flex .section-flex {
  margin-top: 16px;
  align-items: center;
  gap: 10px;
  display: flex;
}

.podcast-flex .section-flex img {
  background-color: #222222;
  padding: 10px;
  border-radius: 50%;
  height: 32px;
  width: 32px;
  box-sizing: border-box;
}

.podcast-flex .section-flex a {
  color: #E71316;
  font: 500 14px/1 var(--font-helvetica-neue);
  text-decoration: none;
  display: contents;
}

.podcast-flex-section {
  display: flex;
  gap: 20px;
}


.podcast-text-hide {
  display: block;
}

.podcast-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width:768px) {

  .podcast-flex .section-flex {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }

  .podcast-text-show-mobile {
    display: block;
  }

  .podcast-text-hide {
    display: none;
  }

  .podcast-flex-section {
    flex-direction: row !important;
  }

  .podcast-card {
    padding: 0px 10px 40px 16px;
  }

   .news-latest-podcast .section-small-heading {
    font: 700 14px/22px var(--font-helvetica-neue);
  }

  .podcast-text-show-mobile {
    font: 500 16px/24px var(--font-helvetica-neue);
  }

  .podcast-flex .section-flex p {
    font: 500 14px/24px var(--font-helvetica-neue);
  }

  .news-latest-podcast .read-more-btn-wrapper img {
    display: none;
  }

  .news-latest-podcast .read-more-btn-wrapper a {
    color: #E71316;
  }
}