/* KBS Social Cards — matched to original */

.kbs-sc-section {
	width: 100%;
	box-sizing: border-box;
	padding: 64px 0;
	background: linear-gradient(to right, hsla(345,65%,35%,0.08), hsla(43,74%,49%,0.08), hsla(345,65%,35%,0.08));
}

.kbs-sc-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
	box-sizing: border-box;
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}
@media (min-width: 768px) {
	.kbs-sc-inner { grid-template-columns: repeat(2, 1fr); }
}

.kbs-sc-card {
	position: relative;
	min-height: 256px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.kbs-sc-content {
	text-align: center;
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.kbs-sc-icon { display: inline-flex; }
.kbs-sc-icon svg { width: 64px; height: 64px; display: block; }

.kbs-sc-title {
	font-family: Georgia, "Playfair Display", "Times New Roman", serif;
	font-size: 30px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 8px;
	line-height: 1.1;
}
.kbs-sc-subtitle {
	font-size: 18px;
	color: rgba(255,255,255,0.95);
	margin: 0;
	line-height: 1.4;
}

.kbs-sc-btn {
	display: inline-block;
	background: #fff;
	color: hsl(345 65% 35%);
	font-weight: 600;
	font-size: 15px;
	padding: 11px 24px;
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.2s, transform 0.2s;
}
.kbs-sc-btn:hover {
	background: rgba(255,255,255,0.9);
	color: hsl(345 65% 35%);
	transform: translateY(-2px);
}
.kbs-sc-btn-disabled {
	opacity: 0.6;
	cursor: not-allowed;
	pointer-events: none;
}

@media (max-width: 600px) {
	.kbs-sc-card { min-height: 220px; }
	.kbs-sc-title { font-size: 26px; }
	.kbs-sc-subtitle { font-size: 16px; }
	.kbs-sc-icon svg { width: 56px; height: 56px; }
}
