/* --- YT Podcast Grid ------------------------------- */
.yt-grid {
  display: grid;
  grid-template-columns: 1fr; /* 1 coluna – mobile portrait */
  gap: 1.5rem;
}

@media (min-width: 480px) {
  /* ~ mobile landscape */
  .yt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  /* tablets */
  .yt-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  /* desktop */
  .yt-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.yt-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease;
}
.yt-card:hover {
  transform: translateY(-4px);
}

.yt-card img {
  width: 100%;
  display: block;
}

.yt-card h3 {
  font-size: 18px;
  padding: 0.75rem 1rem 1rem;
  line-height: 1.35;
  color: #222;
  word-break: break-word;
}
