.podcast-widget {
	max-width: 100%;
	margin: 20px auto;
	padding: 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	background: #f9f9f9;
    text-align: center;
    color: #222;
}
.podcast-widget hr {
	margin: 20px 0;
}
.podcast-logo {
	max-width: 300px !important;
	height: auto;
	margin: 25px 0;
}
.podcast-title {
	font-size: 18px;
	font-weight: bold;
}
.image-container {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}
.image-container a {
	text-decoration: none;
}
.image-container img {
	height: 40px;
	object-fit: cover;
	border-radius: 8px;
	transition: transform 0.3s ease-in-out;
}
.image-container img:hover {
	transform: scale(1.1);
}
.episode-button {
	display: block;
	width: 100%;
	text-align: left;
	background: none !important;
	border: none;
	padding: 10px;
	border-bottom: 1px solid #ddd;
	font-size: 14px;
	cursor: pointer;
	white-space: normal;
    color: #222 !important;
}
.episode-button:hover {
	background: #bbb !important;
}
.publish-date {
	float: right;
	color: #666;
	font-size: 12px;
}

