.in-podcast {
  display: flex;
  justify-content: center;
  align-items: center;
  /* gap: 4em; */
  width: 100%;
  height: 100vh;
  background-image: url("../../../../uploads/2025/01/fondo-mi-podcast-01.png");
  padding: 0 4em;
  background-size: cover;
  background-position: center;
}

.in-podcast-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* gap: 2em; */
  /* width: 100%; */
}

.in-podcast h2 {
}

.in-podcast h2 span:nth-child(1) {
  font-size: 2em;
  font-weight: 400;
  color: var(--color-gray);
}

.in-podcast h2 span:nth-child(2) {
  font-size: 3em;
  color: var(--color-pri);
}

.in-podcast-texto {
  /*color: var(--color-gray);*/
  width: 70%;
}

.btn-podcast {
  position: relative;
  display: flex;
  width: 125px;
  height: 52px;
  background-color: var(--color-pri);
  border: 1px solid var(--color-pri);
  border-radius: 20px;
  padding: 1em 2em;
  margin-top: 2em;
  cursor: pointer;
  transition: background-color 0.4s, color 0.4s, box-shadow 0.4s ease;
}

.btn-podcast:hover {
  background-color: rgba(45, 191, 45, 0.7);
  border: 1px solid rgba(45, 191, 45, 0.4);
}

.spotify-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 38px;
  z-index: 1;
}

.in-podcast-img {
  display: flex;
  align-items: center;
  height: 100%;
  /* justify-content: flex-end; */
}

.in-podcast-img img {
  height: 100%;
  /* border-radius: 20px; */
  object-fit: cover;
}

/* 
.in-podcast-img img:nth-child(2) {
    height: 150px;
    width: 150px;
    rotate: -8deg;
    z-index: 40;
    margin-right: 2em;
} */

@media (max-width: 1024px) {
  .in-podcast {
    flex-direction: column-reverse;
    height: auto;
    padding: 2em 1em;
    gap: 2em;
  }

  .in-podcast-info {
    align-items: center;
    text-align: center;
    /* gap: 1em; */
    width: 100%;
  }

  .in-podcast h2 span:nth-child(1) {
    font-size: 1.5em;
  }

  .in-podcast h2 span:nth-child(2) {
    font-size: 2em;
  }

  .in-podcast-texto {
    width: 90%;
  }

  .btn-podcast {
    width: 150px;
    height: 42px;
    padding: 1.5em 1em;
  }

  .in-podcast-img {
    justify-content: center;
    margin-top: 2em;
  }

  .in-podcast-img img {
    height: 300px;
    border-radius: 20px;
  }
}
