.bgcs-wrap {
	position: relative;
	background-size: cover;
	background-position: var(--bgcs-pos-x, 50%) var(--bgcs-pos-y, 50%);
	background-repeat: no-repeat;
	min-height: 260px;
	box-sizing: border-box;
}

.bgcs-wrap::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
}

.bgcs-inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 40px;
	padding: 40px;
	min-height: inherit;
	box-sizing: border-box;
}

/* Left Card */
.bgcs-card {
	width: 200px;
	flex-shrink: 0;
	background-color: #111111;
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-sizing: border-box;
}

.bgcs-card-text {
	border: 1px solid #ffffff;
	border-left: none;
	border-bottom: none;
	padding: 12px 14px;
	margin-bottom: 20px;
}

.bgcs-card-top {
	font-size: 13px;
	color: #ffffff;
	margin-bottom: 4px;
}

.bgcs-card-num {
	font-size: 48px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.1;
	margin-bottom: 4px;
}

.bgcs-card-btm {
	font-size: 13px;
	color: #ffffff;
	line-height: 1.4;
}

.bgcs-card-logo {
	margin-top: 16px;
}

.bgcs-card-logo img {
	width: 80px;
	height: auto;
	display: block;
}

/* Right Content */
.bgcs-right {
	flex: 1;
	min-width: 0;
}

.bgcs-right-title {
	font-size: 28px;
	font-weight: 700;
	color: #222222;
	margin-bottom: 16px;
	line-height: 1.3;
}

.bgcs-right-list {
	display: grid;
	gap: 10px;
}

.bgcs-right-list.bgcs-cols-1 {
	grid-template-columns: 1fr;
}

.bgcs-right-list.bgcs-cols-2 {
	grid-template-columns: 1fr 1fr;
}

.bgcs-right-list.bgcs-cols-3 {
	grid-template-columns: 1fr 1fr 1fr;
}

.bgcs-right-item {
	font-size: 14px;
	color: #555555;
	line-height: 1.5;
	padding-left: 14px;
	position: relative;
}

.bgcs-right-item::before {
	content: '-';
	position: absolute;
	left: 0;
	color: #555555;
}

@media (max-width: 767px) {
	.bgcs-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.bgcs-right-list.bgcs-cols-2,
	.bgcs-right-list.bgcs-cols-3 {
		grid-template-columns: 1fr;
	}
}
