/* Container chính */
.let-container {
	background: radial-gradient(circle at top, #142345 0%, var(--color-deep-navy) 100%);
	padding: 50px 24px;
	border-radius: 16px;
	margin: 20px auto;
	color: var(--color-white);
	box-sizing: border-box;
}

/* Header */
.let-header {
	text-align: center;
	margin-bottom: 40px;
}

.let-badge-top {
	font-family: 'Inter 24';
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--color-light-blue);
	margin-bottom: 20px;
}

.let-title {
	font-size: 32px;
	font-weight: 800;
	margin: 0 0 10px 0;
	letter-spacing: 0.5px;
	color: var(--color-white);
}

.let-subtitle {
	font-size: 16px;
	font-style: italic;
	font-weight: 500;
	color: var(--color-accent-yellow);
	margin: 0 0 16px 0;
}

.let-divider {
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, var(--color-accent-yellow), var(--color-teal));
	margin: 0 auto;
	border-radius: 2px;
}

/* Danh sách cam kết */
.let-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 40px;
}

.let-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 20px 24px;
	border-radius: 12px;
	gap: 20px;
	transition: background 0.3s ease;
}

.let-item:hover {
	background: rgba(255, 255, 255, 0.05);
}

.let-num {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-teal);
	color: var(--color-white);
	font-size: 12px;
	font-weight: bold;
	width: 28px;
	height: 28px;
	border-radius: 6px;
	flex-shrink: 0;
}

.let-content {
	flex-grow: 1;
	font-size: 15px;
	line-height: 1.6;
	color: var(--color-light-blue);
}

.let-highlight {
	color: var(--color-accent-yellow);
	font-weight: bold;
}

.let-tag {
	font-family: 'Inter 24';
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.05);
	color: var(--color-silver-blue);
	font-size: 10px;
	font-weight: 700;
	padding: 6px 12px;
	border-radius: 4px;
	white-space: nowrap;
	letter-spacing: 0.5px;
}

/* Footer */
.let-footers {
	text-align: center;
	font-size: 13px;
	color: var(--color-slate-gray);
	margin-bottom: 30px;
}

/* Buttons */
.let-buttons-group {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.let-btn {
	font-family: 'Inter 24';
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none !important;
	border-radius: 8px;
	transition: transform 0.2s, opacity 0.2s;
	cursor: pointer;
}

.let-btn:active {
	transform: scale(0.98);
}

.let-btn-blue {
	background: var(--color-teal);
	color: var(--color-white) !important;
}

.let-btn-blue:hover {
	background: var(--color-indigo);
	opacity: 0.9;
}

.let-btn-white {
	background: var(--color-brand-white);
	color: var(--color-deep-navy) !important;
}

.let-btn-white:hover {
	background: var(--color-white);
}

.let-icon-book {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

/* Responsive */
@media (max-width: 768px) {
	.let-container {
		padding: 30px 16px;
	}
	
	.let-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		padding: 20px;
	}
	
	.let-tag {
		align-self: flex-start;
	}
	
	.let-buttons-group {
		flex-direction: column;
		width: 100%;
	}
	
	.let-btn {
		justify-content: center;
		width: 100%;
		box-sizing: border-box;
	}
}