/**
 * Markaz Podcast Links – frontend card and button styles.
 * Button uses theme font (inherit); colors: background #4DBBB2, text #ffffff.
 */

.markaz-podcast-links-archive {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.markaz-podcast-link-card {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 1.25rem 1.5rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
}

.markaz-podcast-link-title {
	margin: 0 0 0.75rem;
	font-size: 1.25rem;
	line-height: 1.3;
}

.markaz-podcast-link-description {
	margin: 0 0 1rem;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: #444;
	flex: 1;
}

.markaz-podcast-link-actions {
	margin: 0;
	padding: 0;
}

/* Button: site font, background #4DBBB2, text #ffffff */
.markaz-podcast-link-button {
	display: inline-block;
	font-family: inherit;
	font-size: inherit;
	font-weight: 500;
	line-height: 1.4;
	color: #ffffff !important;
	background-color: #4DBBB2;
	padding: 0.5rem 1.25rem;
	border: none;
	border-radius: 4px;
	text-decoration: none;
	transition: opacity 0.2s ease, background-color 0.2s ease;
}

.markaz-podcast-link-button:hover,
.markaz-podcast-link-button:focus {
	color: #ffffff !important;
	background-color: #3da89f;
	opacity: 0.95;
	text-decoration: none;
}

.markaz-podcast-links-empty {
	margin: 0;
	padding: 1rem 0;
	color: #666;
}
