.podcast-participantes {
    display: flex;
    flex-direction: row;
    column-gap: 50px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .podcast-participantes {
        justify-content: center;
    }
}

.podcast-participantes .participante {
    max-width: 270px;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    gap: 5px;
}

.podcast-participantes .participante img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
}

.podcast-participantes .participante h4 {
    text-align: center;
}