.stability-release__banner {
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid #e2e4e9;
	border-radius: 8px;
	padding: 10px;
}

.stability-release__banner-content {
	display: flex;
	align-items: center;
	gap: 16px;
}

.stability-release__banner-content .image {
	width: 64px;
	height: 64px;
}

.stability-release__banner-content .image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.stability-release__banner-content-title {
	color: #111827;
	font-size: 24px;
	font-weight: 700;
}

.stability-release__banner-content-description {
	color: #111827;
	font-size: 14px;
	font-weight: 300;
	opacity: 0.82;
}

.stability-release__banner-cta {
	background: #ffb600;
	color: #011530;
	font-size: 16px;
	font-weight: 500;
	padding: 12px 38px;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	line-height: 24px;
}

.stability-release__banner-cta:hover {
	background: #e69f00;
}

/* Change Log Modal Styles */
.change-log__modal {
	padding: 0;
	border: none;
	border-radius: 12px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
		0 10px 10px -5px rgba(0, 0, 0, 0.04);
	max-width: 800px;
	width: 90vw;
	/* max-height: 80vh; */
	overflow: hidden;
	margin: 100px auto 0;
}

.change-log__modal::backdrop {
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
}

.change-log__modal-content {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.change-log__modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 24px 16px 24px;

	background: #fff;
}

.change-log__modal-header-stage {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 24px;
}

.change-log__modal-header-stage-item {
	width: 100%;
	height: 5px;
	border-radius: 10px;
	background: #f3f4f6;
}

.change-log__modal-header-stage-item.active {
	background: #011530;
}

.change-log__modal-header-content {
	display: flex;
	align-items: center;
	gap: 16px;
}

.change-log__modal-header .content h2 {
	font-size: 26px;
	font-weight: 700;
	color: #111827;
}

.change-log__modal-header .content p {
	font-size: 16px;
	font-weight: 300;
	color: #111827;
	opacity: 0.82;
}

.change-log__modal-close {
	background: none;
	border: none;
	padding: 8px;
	border-radius: 6px;
	cursor: pointer;
	color: #6b7280;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.change-log__modal-close:hover {
	background: #f3f4f6;
	color: #374151;
}

.change-log__modal-body {
	overflow-y: auto;
	padding: 24px;
	background: #fff;
	/* height: 400px; */
}

/* Step visibility */
#step-2 {
	display: none;
}

.change-log__feature-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 10px;
	border-radius: 10px;
	border: 1px solid #e5e7eb;
	margin-bottom: 12px;
}

.change-log__feature-item .content h4 {
	font-size: 16px;
	font-weight: 600;
	color: #111827;
}

.change-log__feature-item .content p {
	font-size: 12px;
	font-weight: 300;
	color: #111827;
	opacity: 0.82;
}

.change-log__feature-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.change-log__feature-top .left {
	display: flex;
	align-items: center;
	gap: 16px;
}

.change-log__feature-top .left .content h4 {
	font-size: 20px;
	font-weight: 600;
	color: #111827;
}

.change-log__feature-top .improvements {
	font-size: 12px;
	font-weight: 400;
	color: #111827;
	background: #e2e4e9;
	padding: 4px 12px;
	border-radius: 100px;
}

.change-log__modal-footer {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	padding: 16px 24px 24px 24px;
	border-top: 1px solid #e2e4e9;
	background: #fff;
}

.change-log__modal-button {
	padding: 10px 20px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	border: none;
	transition: all 0.2s ease;
	line-height: 20px;
}

.change-log__modal-button.secondary {
	background: #fff;
	color: #374151;
	border: 1px solid #d1d5db;
}

.change-log__modal-button.secondary:hover {
	background: #f9fafb;
	border-color: #9ca3af;
}

.change-log__modal-button.primary {
	background: #ffb600;
	color: #011530;
}

.change-log__modal-button.primary:hover {
	background: #e69f00;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.change-log__modal {
		width: 95vw;
		max-height: 85vh;
	}

	.change-log__modal-header,
	.change-log__modal-body,
	.change-log__modal-footer {
		padding-left: 16px;
		padding-right: 16px;
	}

	.change-log__modal-header h2 {
		font-size: 20px;
	}

	.change-log__modal-footer {
		flex-direction: column;
	}

	.change-log__modal-button {
		width: 100%;
	}

	.change-log__modal-header .content h2 {
		font-size: 18px;
	}

	.change-log__modal-header .content p {
		font-size: 14px;
	}

	.change-log__feature-top .left .content h4 {
		font-size: 16px;
		font-weight: 500;
	}

	.change-log__feature-top .improvements {
		font-size: 10px;
	}

	.stability-release__banner {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.stability-release__banner-content-title {
		font-size: 20px;
		font-weight: 500;
	}

	.stability-release__banner-content-description {
		font-size: 12px;
	}

	.stability-release__banner-cta {
		width: 100%;
		padding: 12px 24px;
		font-size: 14px;
		font-weight: 500;
		line-height: 20px;
	}
}
