Podcasts with Christian
.podcast-section {
max-width: 800px;
margin: 0 auto;
padding: 20px;
font-family: Arial, sans-serif;
}
.podcast-show {
margin-bottom: 20px;
}
.podcast-show h3 {
color: #2c3e50;
margin-bottom: 10px;
font-size: 24px;
}
.podcast-links {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.podcast-links a {
display: inline-block;
padding: 10px 15px;
background-color: #8594cf;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}
.podcast-links a:hover {
background-color: #6b7cb3;
}
@media (max-width: 600px) {
.podcast-links {
flex-direction: column;
}
.podcast-links a {
width: 100%;
text-align: center;
}
}