/* Base Container & Reset */
.acb-sa-wrapper,
.acb-sa-wrapper * {
	box-sizing: border-box;
}

.acb-sa-wrapper {
	width: 100%;
	background-color: #0b071e;
	padding: 80px 20px;
}

.acb-sa-container {
	max-width: 1180px;
	margin: 0 auto;
	width: 100%;
}

/* Outer Box with Dashed Border */
.acb-sa-box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border: 2px dashed rgba(255, 255, 255, 0.15);
	background-color: rgba(255, 255, 255, 0.015);
	overflow: hidden;
}

/* Left Content Column */
.acb-sa-content {
	padding: 50px 45px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.acb-sa-subtitle {
	color: #c7b3ce;
	font-size: 11px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 16px;
}

.acb-sa-title {
	font-size: 42px;
	font-family: 'Georgia', serif;
	line-height: 1.2;
	margin: 0 0 20px 0;
}

.acb-sa-title-part1 {
	color: #ffffff;
}

.acb-sa-title-part2 {
	color: #d99a6c;
}

.acb-sa-desc {
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	line-height: 1.65;
	margin: 0 0 25px 0;
}

/* Custom Bullet List */
.acb-sa-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.acb-sa-list li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 10px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
	line-height: 1.5;
}

.acb-sa-list li:last-child {
	margin-bottom: 0;
}

.acb-sa-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: 0;
	color: #ffffff;
	font-size: 16px;
	line-height: 1;
}

/* Right Image Column */
.acb-sa-image-wrap {
	width: 100%;
	height: 100%;
	min-height: 450px;
}

.acb-sa-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Tablet & Mobile Responsive */
@media (max-width: 991px) {
	.acb-sa-box {
		grid-template-columns: 1fr;
	}

	.acb-sa-content {
		padding: 40px 30px;
	}

	.acb-sa-image-wrap {
		min-height: 350px;
	}
}

@media (max-width: 600px) {
	.acb-sa-wrapper {
		padding: 50px 15px;
	}

	.acb-sa-title {
		font-size: 32px;
	}

	.acb-sa-content {
		padding: 30px 20px;
	}

	.acb-sa-image-wrap {
		min-height: 280px;
	}
}