@media (max-width: 768px) {
	.wp-block-table {
		overflow-x: auto;
		display: block;
		max-width: 100%;
		margin: 0 auto;
		position: relative;
	}

	.wp-block-table::before {
		content: '← Swipe →';
		position: sticky;
		left: 0;
		top: 0;
		background: rgba(0, 0, 0, 0.7);
		color: white;
		padding: 5px 10px;
		font-size: 12px;
		border-radius: 0 0 5px 0;
		pointer-events: none;
		z-index: 10;
		width: 100%;
		text-align: center;
	}

	.wp-block-table table {
		width: 100%;
		min-width: 500px;
		box-sizing: border-box;
	}

	.wp-block-table td,
	.wp-block-table th {
		white-space: normal;
	}

	#post-content {
		overflow: hidden;
		max-width: 100%;
	}
}