.al-968-container {
	border-style: solid;
	box-sizing: border-box;
	overflow: hidden;
}

.al-968-header {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.al-968-title {
	margin: 0;
	padding: 0;
	line-height: 1.2;
}

.al-968-divider {
	width: 100%;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.1);
}

.al-968-list-grid {
	display: grid;
	grid-template-columns: 1fr 1fr; /* Two columns by default */
	gap: 0 40px; /* Gap between columns */
	margin-top: 10px;
}

.al-968-item {
	display: flex;
	align-items: flex-start; /* Align icon with top of text */
	gap: 12px;
}

.al-968-icon {
	flex-shrink: 0;
	font-size: 14px; /* Default icon size */
	line-height: 1.5; /* Match text line-height roughly */
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.al-968-item-text {
	line-height: 1.5;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
	.al-968-list-grid {
		grid-template-columns: 1fr; /* Stack to 1 column on mobile */
	}
}
