.podcast-full {
  background-color: var(--color-dark);
  color: white;
  padding: 1em;
  height: 100%;
}

.podcast--infos {
  display: grid;
  grid-template-columns: auto 1fr;
}
.podcast--play {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}
.podcast--download {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
}
.podcast--title {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}
.podcast--misc {
  grid-row: 2 / 3;
  grid-column:  2 / 3;
}

.podcast--play {
  /* reset button style */
  border: 0;
  padding: 0;
  background-color: initial;

  height: 4rem;
}

.podcast--play img {
  height: 100%;
}

.podcast--download {
  font-size: 0;
}

.podcast--download a {
  width: 100%;
  display: inline-block;
}

.podcast--title {
  align-self: center;

  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;;
  font-size: 1.3em;

  padding-left: 0.5em;
}

.podcast--date {
  display: flex;
  font-size: 1.2em;
  margin-right: 0.7em;
}

.podcast--date time,
.podcast--date span {
  position: relative;

  padding-left: 0.5em;
  padding-right: 0.5em;
  margin-right: 0.5em;
  background-color: white;
  color: var(--color-dark);
}

.podcast--date time:after,
.podcast--date span:after {
  content: '';
  display: inline-block;
  background-color: white;
  width: 1em;
  transform: skew(-25deg, 0deg);
  height: 100%;
  position: absolute;
  transform-origin: bottom left;
  top: 0px;
  right: -0.4em;
}

.podcast--duree {
  display: flex;
  align-items: center;

  font-size: 0.8em;
  color: white;
}

.podcast--misc {
  display: flex;
  position: relative;
}

.podcast--image {
  margin-top: 1em;
}
