/* SC-ICG K Shortcode Compat — Flatsome layout 兼容 */
.sc-icg-row {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin: 20px 0;
}

.sc-icg-half {
	flex: 1 1 calc(50% - 10px);
	min-width: 280px;
	box-sizing: border-box;
}

.sc-icg-col {
	flex: 1 1 auto;
	box-sizing: border-box;
}

.sc-icg-col-6 { flex: 0 0 calc(50% - 10px); }
.sc-icg-col-4 { flex: 0 0 calc(33.333% - 14px); }
.sc-icg-col-3 { flex: 0 0 calc(25% - 15px); }
.sc-icg-col-8 { flex: 0 0 calc(66.666% - 7px); }
.sc-icg-col-12 { flex: 0 0 100%; }

/* TablePress 樣式（簡化版） */
.tablepress {
	border-collapse: collapse;
	width: 100%;
	margin: 20px 0;
}
.tablepress th,
.tablepress td {
	border: 1px solid #ddd;
	padding: 8px 12px;
	text-align: center;
	vertical-align: middle;
}
.tablepress thead th {
	background: #f5f5f5;
	font-weight: bold;
}
.tablepress .row-striping tbody tr:nth-child(even) {
	background: #fafafa;
}

@media (max-width: 600px) {
	.sc-icg-half {
		flex: 1 1 100%;
	}
}
