
.ts-radio-podcast-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.ts-radio-podcast-header {
  text-align: center;
  margin-bottom: 30px;
}

.ts-radio-podcast-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
}

.ts-radio-podcast-title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin: 0 0 20px;
  line-height: 1.4;
}

.ts-radio-podcast-table {
  /* width: 100%; */
  border-collapse: collapse;
  margin: 0 auto;
}

.ts-radio-podcast-table th,
.ts-radio-podcast-table td {
  /* border: 1px solid #ddd; */
  padding: 8px;
  text-align: center;
  border: none !important;
}

.ts-radio-podcast-table th {
  /* background-color: #f2f2f2; */
  /* text-align: left; */
}

.ts-radio-podcast-pagination {
  margin: 1em 0;
  text-align: center;
}

.ts-radio-podcast-pagination .page-numbers {
  margin: 0 5px;
  text-decoration: none;
}

.ts-radio-podcast-pagination .page-numbers.current {
  font-weight: bold;
}

@media (max-width: 768px) {
    .ts-radio-podcast-table tr {
        display: grid; /* Меняет строки на блочные элементы */        
		gap: 5px;
    }
	.ts-radio-podcast-table td {	
		font-weight: bold;
		padding: 0;
	}
	.ts-radio-podcast-table tbody{
		display: grid;
		gap: 10px;
	}
}