
.podcast-series .tt-content-archive-grid {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 4%;
	justify-content: space-between;
	width: 100%;
}

body .podcast-series {
	width: 100%;
}

/* For the article tag */
body .podcast-series article.article {
	width: 48%;
}

/* Load More button */
.podcast-series #tt-load-more {
	border: none;
	background: transparent;
	display: block;
	padding: 12px 24px;
	margin: 40px auto;
	border: 2px solid #022c52;
	color: #022c52;
	cursor: pointer;
	font-family: "Open Sans";
	font-size: 16px;
	line-height: 1.5;
}

.podcast-series #tt-load-more:hover {
	background: #022c52;
	color: #fff;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
	.podcast-series {
		display: block;
		padding: 20px;
	}
	
	.podcast-series .tt-content-column {
		width: 100%;
	}
	
	.podcast-series .tt-content-column {
		grid-template-columns: 1fr;
	}
}
