.audio {
  .podcast-player {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    background-color: var(--color-white);
    border-radius: 4px;

    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    height: fit-content;
    padding: 24px 32px;
    width: auto;
    margin-bottom: 2.1875rem;
    margin-top: 2.1875rem;

    .podcast-player__card-header {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: space-between;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      gap: 9px;

      .podcast-player__title {
        color: var(--color-black);
        font-size: 1.125rem;
        font-weight: 500;
        letter-spacing: 0;
      }

      .participants {

        .avatar-item {
          display: flex;
          flex-wrap: nowrap;
          padding-left: 10px;
        }

        img {
          aspect-ratio: 1 / 1;
          border: 1px solid var(--color-red);
          border-radius: 100%;
          height: 36px;
          width: 36px;
          object-fit: cover;
          object-position: top;
          margin-right: -10px;
        }
      }
    }

    .podcast-player__card-text {
      text-align: left;
      color: var(--color-body);
      font-size: 1rem;
      font-weight: 300;
      letter-spacing: 0;

      p {
        margin: 0;
      }
    }

    .podcast-player__control {
      audio {
        padding: 0;
        width: 100%;
      }
    }

    .cta_buttons {
      color: var(--color-red);
      display: flex;

      .field__item {
        display: flex;
        justify-content: flex-start;

        .btn-transparent-link {
          padding: 0;
          position: relative;

          .icon-arrow-right::after {
            content: '\e910';
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-red);
          }
        }
      }
    }
  }
}

/* @media (max-width: 970px) {
  .audio {
    .podcast-player {
      .podcast-player__card-header {
        .podcast-player__title {
          font-size: 0.83em;
        }
      }
    }
  }
} */