@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#imagenes {
  display: none;
}

.nContainerPodcast {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 20% 80%;
  height: 30vh;
  position: relative;
}

.podcasts {
  position: relative;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.podcasts::-webkit-scrollbar {
  display: none;
}

.podcast {
  position: relative;
  overflow: hidden;
  min-width: calc(100% / 3);
  height: 100%;
  background-color: #ffc500;
  border-right: #FFF solid 1px;
  padding: 10px;
}

.rArrowPodcast,
.lArrowPodcast {
  position: absolute;
  font-size: 3rem;
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  z-index: 5;
  cursor: pointer;
  top: 40%;
}

.lArrowPodcast {
  left: 20%;
}

.rArrowPodcast {
  right: 0%;
}

.rArrowPodcast > svg,
.lArrowPodcast > svg {
  stroke: #ffffff;
  width: 4rem;
  height: 5rem;
}

.preNPodcast {
  display: flex;
  flex-direction: column;
}

.moreTnPodcast {
  width: 80%;
  margin: 17% auto 0 auto;
  text-align: right;
  width: 80%;
}

.moreTnPodcast > h3 {
  font-size: 2.8rem;
  font-family: "Raleway", sans-serif;
  font-weight: bolder;
  text-transform: uppercase;
  line-height: 10px;
}

.moreTnPodcast > a {
  text-decoration: none;
  font-style: oblique;
  font-size: 1.5rem;
  font-family: "Raleway", sans-serif;
}

.hexagonoPodcast {
  margin-top: 10px;
}

.hexagonoPodcast > svg {
  position: absolute;
  left: 12%;
  width: 4rem;
  height: 4rem;
}

.nYellow {
  position: absolute;
  width: 2%;
  height: 40%;
  background: #ffc500;;
  top: 30%;
}

.nShadowPodcast {
  position: absolute;
  width: 1%;
  height: 100%;
  background: #e4e4e4;
}

.eYellow {
  position: absolute;
  width: 20%;
  height: 5%;
  background: #003057;
  bottom: 0;
  transition: 0.7s;
  left: 0px;
}

.podcast:hover .eYellow {
  position: absolute;
  width: 20%;
  height: 5%;
  background: #ffc500;
  bottom: 0;
  left: -100px;
  transition: 0.7s;
}

@media screen and (max-width: 770px) {
  .nContainerPodcast {
    grid-template-columns: 100%;
    padding-bottom: 4rem;
    padding-top: 0.5rem;
    margin-bottom: 3rem;
    height: 40vh;
  }
  .nYellow {
    top: 40%;
    height: 25%;
    width: 5px;
  }
  .nShadowPodcast {
    background: none;
  }
  .preNPodcast {
    position: absolute;
    top: -80px;
    padding-bottom: 1rem;
  }
  .hexagonoPodcast {
    position: absolute;
    top: 35px;
    right: -20px;
  }
  .moreTnPodcast {
    padding-bottom: 2rem;
    width: 110px;
    text-align: left;
    margin-left: 20px;
    margin-top: 35px;
  }
  .moreTnPodcast > h3 {
    font-size: 2rem;
  }
  .podcasts {
    min-width: calc(100% / 2);
    margin-top: 1rem;
  }
  .podcast {
    min-width: calc(100% / 2);
  }
  .listado {
    height: 30vh;
    grid-template-columns: 100%;
  }
  .cronicapodcast {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-top: 0;
  }
  .lArrowPodcast {
    left: 1%;
  }
}
@media screen and (max-width: 550px) {
  .podcasts {
    min-width: calc(100% / 1);
  }
  .podcast {
    min-width: calc(100% / 1);
  }
  .listado {
    height: 30vh;
    grid-template-columns: 100%;
  }
  .lArrowPodcast {
    left: 1%;
  }
}

/* Pruebas mias */
.imgpodcast {
  border-radius: 15px;
  width: 75px;
  height: 75px;
  border: #FFF solid 3px;
}

.titlepodcast {
  color: #003057;
  font-size: 1.05em;
  font-weight: bold;
  /* padding-left: 0px; */
}

.subtitlepodcast {
  color: #003057;
  font-size: 1em;
}

.cronicapodcast {
  color: #003057;
  font-size: 0.95em;
  text-align: justify;
  padding-top: 10px;
}

.framepodcast {
  text-align: center;
}