.acb-sl-wrapper {
	width: 100%;
	background-color: #0b071e; /* Deep night dark blue */
	box-sizing: border-box;
}

.acb-sl-container {
	max-width: 1100px;
	margin: 0 auto;
}

/* Header */
.acb-sl-header {
	text-align: center;
	margin-bottom: 50px;
}

.acb-sl-subtitle {
	font-size: 13px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 12px;
}

.acb-sl-title {
	font-size: 46px;
	font-family: 'Georgia', serif;
	line-height: 1.2;
	margin: 0 0 15px 0;
}

.acb-sl-desc {
	font-size: 15px;
	margin: 0;
	opacity: 0.9;
}

/* Cards Grid */
.acb-sl-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

/* Card Outer Box with Dotted Border */
.acb-sl-card {
	border: 1px dashed rgba(255, 255, 255, 0.25);
	background-color: rgba(255, 255, 255, 0.02);
	padding: 35px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	transition: border-color 0.3s ease, background-color 0.3s ease;
}

.acb-sl-card:hover {
	border-color: rgba(217, 154, 108, 0.6);
	background-color: rgba(255, 255, 255, 0.04);
}

.acb-sl-card-info {
	flex: 1;
	padding-right: 20px;
}

.acb-sl-card-subtitle {
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 8px;
}

.acb-sl-card-title {
	font-size: 28px;
	font-family: 'Georgia', serif;
	margin: 0 0 8px 0;
	line-height: 1.2;
}

.acb-sl-card-desc {
	font-size: 14px;
	opacity: 0.85;
}

/* Button Styling */
.acb-sl-card-action {
	flex-shrink: 0;
}

.acb-sl-btn {
	display: inline-block;
	padding: 12px 36px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 2px;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
}

/* Responsive Behavior */
@media (max-width: 850px) {
	.acb-sl-grid {
		grid-template-columns: 1fr;
	}

	.acb-sl-card {
		padding: 30px 25px;
	}
}

@media (max-width: 500px) {
	.acb-sl-card {
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}

	.acb-sl-card-info {
		padding-right: 0;
	}
}