.ljlsl-announcement-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	box-sizing: border-box;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.ljlsl-announcement-overlay.is-visible {
	opacity: 1;
	visibility: visible;
}

.ljlsl-announcement-modal {
	position: relative;
	background: #fff;
	width: 100%;
	max-width: 740px;
	max-height: 90vh;
	overflow-y: auto;
	display: flex;
	flex-direction: row;
	border-radius: 8px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ljlsl-announcement-left {
	flex: 1;
	padding: 40px;
	display: flex;
	flex-direction: column;
	min-width: 0;
	box-sizing: border-box;
}

.ljlsl-announcement-right {
	width: 280px;
	flex-shrink: 0;
	overflow: hidden;
	border-radius: 0 8px 8px 0;
}

.ljlsl-announcement-right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ljlsl-announcement-logo {
	width: 100px;
	height: auto;
	display: block;
	margin-bottom: 24px;
}

.ljlsl-announcement-title {
	margin: 0 0 16px;
	font-size: 1.125rem;
	line-height: 1.2em;
	font-weight: 700;
	color: #222529;
}

.ljlsl-announcement-message {
	line-height: 1.6;
	color: #777;
	font-size: 14px;
	font-weight: 400;
}

.ljlsl-announcement-message p:first-child {
	margin-top: 0;
}

.ljlsl-announcement-message p:last-child {
	margin-bottom: 0;
}

.ljlsl-announcement-left .btn {
	margin-top: 28px;
	align-self: flex-start;
}

.ljlsl-announcement-close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 32px;
	height: 32px;
	background: rgba(0, 0, 0, 0.08);
	border: none;
	border-radius: 50%;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	transition: background 0.15s ease;
	padding: 0;
	color: inherit;
}

.ljlsl-announcement-close:hover {
	background: rgba(0, 0, 0, 0.18);
}

@media (max-width: 640px) {
	.ljlsl-announcement-modal {
		flex-direction: column;
		max-height: 85vh;
	}

	.ljlsl-announcement-right {
		width: 100%;
		height: 200px;
		flex-shrink: 0;
		border-radius: 8px 8px 0 0;
		order: -1;
	}

	.ljlsl-announcement-left {
		padding: 24px;
	}

	.ljlsl-announcement-logo {
		margin-bottom: 16px;
	}
}
