/**
 * Danesh Land — Podcast System: Course Page Podcasts List Styles
 * تاریخ ایجاد: 2026-08-25
 */

.tdch-course-podcasts {
	direction: rtl;
	text-align: right;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 2px 10px rgba(20, 20, 40, 0.05);
	padding: 24px;
	margin: 24px 0;
}

.tdch-course-podcasts__title {
	font-size: 20px;
	font-weight: 700;
	color: #1c1c2e;
	margin: 0 0 16px;
}

.tdch-course-podcasts__list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.tdch-course-podcasts__item {
	display: flex;
	align-items: center;
	gap: 14px;
	background: #f7f8fa;
	border-radius: 12px;
	padding: 12px;
}

.tdch-course-podcasts__thumb {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	border-radius: 10px;
	overflow: hidden;
	display: block;
}

.tdch-course-podcasts__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tdch-course-podcasts__info {
	flex: 1;
	min-width: 0;
}

.tdch-course-podcasts__name {
	display: block;
	font-weight: 700;
	color: #1c1c2e;
	text-decoration: none;
	margin-bottom: 8px;
}

.tdch-course-podcasts__player {
	width: 100%;
	height: 34px;
}

@media (max-width: 480px) {
	.tdch-course-podcasts {
		padding: 16px;
	}

	.tdch-course-podcasts__item {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

	.tdch-course-podcasts__thumb {
		width: 100%;
		height: 140px;
		margin: 0 auto;
	}
}
