.news-detail {
	max-width: 1200px;
	margin: 20px auto;
	padding: 0 20px;
	position: relative;
}

.back-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #f3f3f3;
	color: #5865f2;
	border-radius: 30px;
	font-size: 16px;
	text-decoration: none;
	transition: background 0.3s ease;
}

.back-button svg {
	width: 18px;
	height: 18px;
	stroke-width: 2;
	vertical-align: middle;
}

.back-link {
	display: inline-block;
	color: #5865f2;
	font-size: 16px;
	text-decoration: none;
	font-weight: 500;
	background-color: #f1f1f1;
	padding: 10px 16px;
	border-radius: 30px;
	transition: background-color 0.3s ease;
}

.back-link:hover {
	background-color: #e0e0e0;
}

.news-detail-image {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 36px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	margin-bottom: 30px;
}

.news-detail-image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.news-date-detail {
	position: absolute;
	top: 15px;
	left: 15px;
	background: #5865f2;
	color: white;
	padding: 6px 16px;
	border-radius: 30px;
	font-size: 14px;
	z-index: 2;
	user-select: none;
}

.news-detail-content {
	color: #111;
	font-size: 18px;
	line-height: 1.7;
}

.news-detail-content h1 {
	font-size: 32px;
	margin-bottom: 20px;
	color: #222;
}

.news-detail-content p {
	margin-bottom: 16px;
}

.news-detail-content ul {
	padding-left: 20px;
}

.news-detail-content li {
	margin-bottom: 12px;
	position: relative;
	line-height: 1.6;
}

.news-detail-content li::before {
	content: '•';
	color: #5865f2;
	position: absolute;
	left: -16px;
	top: 0;
}

body.dark-theme .news-detail-content {
	color: #eee;
}

body.dark-theme .news-detail-content h1 {
	color: #fff;
}

body.dark-theme .back-link {
	background-color: rgba(255, 255, 255, 0.05);
	color: #8da1ff;
}

body.dark-theme .back-link:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

body.dark-theme .news-detail-image {
	box-shadow: 0 8px 20px rgba(255, 255, 255, 0.08);
}

body.dark-theme .back-button {
	background: rgba(255, 255, 255, 0.08);
	color: #aab8ff;
}

body.dark-theme .back-button:hover {
	background: rgba(255, 255, 255, 0.15);
}
