.podcast-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.podcast-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.podcast-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.podcast-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.podcast-info {
    padding: 1rem;
}

.podcast-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.podcast-description {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}