@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-display: fallback;
  font-weight: 400;
  src: url(../../../fonts/Poppins-Regular.woff2) format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-display: fallback;
  font-weight: 600;
  src: url(../../../fonts/Poppins-SemiBold.woff2) format("woff2");
}

.podcastPlayer {
  font-family: "Poppins", sans-serif;
}

.podcastPlayer__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  color: rgba(0, 0, 0, 0.88);
}

.podcastPlayer__descriptionWrapper p {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: rgba(0, 0, 0, 0.88);
}

.podcastPlayer__description {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: rgba(0, 0, 0, 0.88);
}

.podcastPlayer__authorName {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 8px;
  color: rgba(0, 0, 0, 0.88);
}
.podcastPlayer__authorWrapper p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.88);
}

.podcastPlayer__authorDescription {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.88);
}

.podcastPlayer__container {
  display: flex;
  gap: 32px;
}

.podcastPlayer__containerPlayer {
  flex: 9;
}

.podcastPlayer__descriptionWrapper {
  display: flex;
  padding: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  border-radius: 16px;
  background: #f5f5f5;
}

.podcastPlayer__playerWrapper {
  margin-top: 10px;
}

.podcastPlayer__containerAuthor {
  flex: 3;
  border-radius: 24px;
  background: #f5f5f5;
  padding: 10px;
  align-self: start;
}

.podcastPlayer__authorCover {
  margin-bottom: 10px;
}

.podcastPlayer__authorCover img {
  border-radius: 16px;
  width: 300px;
  height: 240px;
  object-fit: cover;
}

.podcastsItems__container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 16px;
  padding-bottom: 32px;
}

.podcastItem__title {
  text-align: center;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  padding-top: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 300px;
  height: 45px;
}

.podcastItem__cover {
  border-radius: 30px;
  overflow: hidden;
}

.podcastItem__cover a {
  line-height: 0;
}

.podcastItem__cover a img {
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.podcastItem__cover a img:hover {
  filter: brightness(1.1);
}

.podcastItem__author {
  text-align: center;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  height: 23px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 300px;
}

.podcastsItems__title {
  padding-top: 32px;
}

.podcastPlayer__containerAuthor {
  padding-bottom: 40px;
  overflow: hidden;
}

.podcastPlayer__authorWrapper {
  max-height: 544px;
  overflow: hidden;
}

.podcastPlayer__authorWrapper--fade {
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent);
  mask-image: linear-gradient(to bottom, black 80%, transparent); 
}

.podcastPlayer__toggleBtn {
  background-color: white;
  color: black;
  font-size: 16px;
  width: calc(100% - 20px);
  margin: 0 10px 10px 0;
}