/* Platform follow buttons in episode content (also recovers posts whose inline <style> was stripped by KSES). */
.lbdf-platform-links {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, 160px);
	justify-content: center;
	justify-items: center;
	align-items: center;
	margin: 1.25em auto;
	width: max-content;
	max-width: 100%;
}

.lbdf-platform-btn {
	display: block;
	line-height: 0;
}

.lbdf-platform-btn img {
	width: 160px;
	height: 40px;
	max-width: 160px;
	display: block;
}

.lbdf-platform-btn--inactive {
	cursor: default;
	pointer-events: none;
}

.lbdf-platform-btn--inactive img {
	opacity: 0.5;
}

@media (max-width: 560px) {
	.lbdf-platform-links {
		grid-template-columns: repeat(2, 160px);
	}
}

@media (max-width: 360px) {
	.lbdf-platform-links {
		grid-template-columns: 160px;
	}
}
