.section3_podcast {
  margin:0px;
  padding:0px;
}

.podcast_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
}

.podcast_card {
  background: #fff;
  border-radius: 16px;
  display: flex;
  gap: 1.2em;
  padding: 1.5em;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: relative;
}

.podcast_image img {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
}

.podcast_content {
  flex: 1;
}

.podcast_autora_img {
  height: 20px;
  margin-bottom: 0.5em;
}

.podcast_titulo {
  font-size: 1.2em;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0.2em 0;
}

.podcast_descricao {
  font-size: 1em;
  color: #333;
  margin-bottom: 0.8em;
}

.podcast_actions {
  display: flex;
  align-items: center;
  gap: 0.8em;
  flex-wrap: wrap;
}

.podcast_ouvir {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.6em 1.2em;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  transition: background 0.3s ease;
}

.podcast_ouvir:hover {
  background-color: #003366;
}

.play-icon {
  font-size: 1em;
}

.podcast_youtube {
  position: absolute;
  bottom: 1em;
  right: 1em;
}

.podcast_youtube img {
  height: 26px;
  display: block;
}

.podcast_botao_mais {
  text-align: center;
  margin-top: 2em;
}

.podcast_botao_mais button {
  padding: 0.8em 1.6em;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  font-weight: bold;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.podcast_botao_mais button:hover {
  background-color: var(--primary-color);
  color: white;
}

@media (max-width: 768px) {
  .podcast_grid {
    grid-template-columns: 1fr;
  }

  .podcast_card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2em;
  }

  .podcast_image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1em;
  }

  .podcast_autora_img {
    height: 18px;
  }

  .podcast_actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6em;
  }

  .podcast_youtube {
    position: absolute;
    bottom: 1em;
    right: 1em;
  }

  .podcast_youtube img {
    height: 24px;
  }
}
