.podcast-headline {
  display: flex;
  gap: 12px;
}
.podcast-headline .heading {
  color: var(--color-foreground-foreground-default);
}
.podcast-img img {
  width: 250px;
  height: 250px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--border-radius-xl);
}
.podcast-headline-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: calc(100% - 262px);
}
.podcast-headline + .social-share-wrapper {
  width: calc(100% - 262px);
  display: block;
  margin-left: auto;
}
.podcast-headline + .social-share-wrapper p {
  margin-bottom: 0;
}
.podcast-headline-content:has(.tag) {
  justify-content: end;
  gap: 0;
}
.podcast-headline-content:has(.tag) .heading,
.podcast-headline-content:has(.tag) .heading + span {
  margin-top: var(--space-2xl);
}
.podcast-headline-content .tag {
  border-radius: var(--border-radius-xxs);
  padding: var(--space-xs) var(--space-md);
}
.desc-d-t {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.desc-d-t p {
  margin-bottom: 0;
}
.podcast-headline-card-player {
  display: flex;
  justify-content: space-between;
}
.podcast-headline-card-player .custom-audio-player-toggle {
  width: 31px;
  height: 31px;
  background-color: #010414B2;
}
.podcast-headline-card-player .custom-audio-player-toggle svg {
  margin-left: 1px;
}
.podcast-headline-download-share {
  display: flex;
  gap: 30px;
  align-items: center;
}
.podcast-headline-download-share svg {
  fill: var(--color-foreground-foreground-lighter);
}
.podcast-headline-download-share button {
  border: 0;
  padding: 0;
  box-shadow: none;
  background-color: transparent;
  position: relative;
}
.podcast-headline-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-headline-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-headline-download-share  button:hover .hover-custom {
  display: block;
}
.podcast-headline-d-t {
  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);
}
@media only screen and (max-width: 960px) {
  .podcast-headline {
    gap: 24px;
    flex-direction: column;
  }
  .podcast-img img {
    width: 100%;
    height: auto;
  }
  .podcast-headline-content,
  .podcast-headline + .social-share-wrapper {
    width: 100%;
  }
}
