.podcast-card-wrap img {
  width: 150px;
  height: 150px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--border-radius-xl);
}
.podcast-card-wrap {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.podcast-card-content {
  width: calc(100% - 162px);
}
.podcast-card-content .heading-level {
  margin-bottom: var(--space-xs);
}
.podcast-desc {
  margin-bottom: var(--space-xs);
  font-size: var(--typography-font-size-body2-lg);
  line-height: var(--typography-line-height-body2-lg);
  color: var(--color-foreground-foreground-default);
  font-family: var(--font-family-body);
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.podcast-desc p {
  margin-bottom: 0;
}
.podcast-desc.is-expanded {
  line-clamp: unset;
  -webkit-line-clamp: unset;
}
.podcast-desc.is-expanded .read-more-btn {
  display: none !important;
}
.read-more-btn {
  font-size: var(--typography-font-size-body2-lg);
  line-height: var(--typography-line-height-body2-lg);
  color: var(--color-foreground-foreground-default);
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #f8f8f9;
  display: none;
}
.read-more-btn em {
  font-weight: var(--font-weight-bold);
  text-decoration: underline;
  font-style: unset;
}
.podcast-card-d-t {
  margin-bottom: var(--space-sm);
  font-size: var(--typography-font-size-label3-sm);
  line-height: var(--typography-line-height-label3-sm);
  color: var(--color-foreground-foreground-lighter);
  font-weight: var(--font-weight-bold);
}
.podcast-card-player {
  display: flex;
  justify-content: space-between;
}
.podcast-card-player .custom-audio-player-toggle {
  width: 31px;
  height: 31px;
  background-color: #010414B2;
}
.podcast-card-player .custom-audio-player-toggle svg {
  margin-left: 1px;
}
.podcast-download-share {
  display: flex;
  gap: 30px;
  align-items: center;
}
.podcast-download-share svg {
  fill: var(--color-foreground-foreground-lighter);
}
.podcast-download-share button {
  border: 0;
  padding: 0;
  box-shadow: none;
  background-color: transparent;
  position: relative;
}
.podcast-download-share .tooltip-custom {
  position: absolute;
  top: -28px;
  transform: translate(-50%, 0);
  left: 50%;
  width: max-content;
  font-size: var(--typography-font-size-label3-lg);
  background-color: var(--color-neutral-110);
  color: var(--color-surface-surface-on-inverse-active);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--border-radius-md);
  display: none;
}
.podcast-download-share .hover-custom {
  display: none;
  position: absolute;
  top: -28px;
  transform: translate(-50%, 0);
  left: 200%;
  width: max-content;
  font-size: var(--typography-font-size-label3-lg);
  background-color: var(--color-neutral-110);
  color: var(--color-surface-surface-on-inverse-active);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--border-radius-md);
}
.podcast-download-share  button:hover .hover-custom {
  display: block;
}
@media only screen and (max-width: 960px) {
  .podcast-card-wrap img {
    width: 110px;
    height: 110px;
  }
  .podcast-card-content {
    width: calc(100% - 122px);
  }
  .podcast-download-share  button:hover .hover-custom {
    display: none;
  }
}
