.article-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 10002;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.2s ease-out;
}

.article-modal-overlay.article-modal-show {
	opacity: 1;
}

.article-modal-overlay.article-modal-exit {
	opacity: 0;
}

.article-modal-dialog {
	background-color: #FFFFFF;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	width: 90%;
	max-width: 800px;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	position: relative;
	transform: scale(0.9);
	transition: transform 0.3s ease-out;
}

.article-modal-overlay.article-modal-show .article-modal-dialog {
	transform: scale(1);
}

.article-modal-overlay.article-modal-exit .article-modal-dialog {
	transform: scale(0.9);
}

.article-modal-header {
	padding: 20px 24px;
	border-bottom: 1px solid #e5e5e5;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-shrink: 0;
}

.article-modal-title {
	font-size: 20px;
	font-weight: 600;
	color: #2d2d38;
	margin: 0;
	line-height: 1.4;
}

.article-modal-close {
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	font-size: 20px;
	transition: color 0.2s;
}

.article-modal-close:hover {
	color: #2d2d38;
}

.article-modal-body {
	padding: 24px;
	color: #333;
	font-size: 14px;
	line-height: 1.8;
	word-break: break-word;
	overflow-y: auto;
	flex: 1;
	max-height: calc(90vh - 80px);
}

.article-modal-content {
	width: 100%;
}

.article-modal-content img {
	max-width: 100%;
	height: auto;
}

.article-modal-loading {
	text-align: center;
	padding: 40px 20px;
	color: #999;
}

.article-modal-error {
	text-align: center;
	padding: 40px 20px;
	color: #e74c3c;
}
