.breadcrumb {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem;
	font-size: 0.9rem;
}

.breadcrumb a {
	color: #2563eb;
	text-decoration: none;
}

.breadcrumb a:hover {
	text-decoration: underline;
}

.article-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 1rem;
}

.back-button {
	display: inline-block;
	margin-bottom: 2rem;
	padding: 0.5rem 1rem;
	background: white;
	border: 1px solid #2563eb;
	color: #2563eb;
	text-decoration: none;
	border-radius: 0.5rem;
	transition: all 0.3s;
}

.back-button:hover {
	background: #f0f7ff;
}

.article-header {
	margin-bottom: 2rem;
	text-align: center;
}

.article-title {
	font-size: clamp(1.75rem, 7vw, 2.75rem);
	color: #1f2937;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.article-meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
	color: #666;
	font-size: 0.95rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #e5e7eb;
}

.meta-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.article-image {
	width: 100%;
	max-height: 500px;
	object-fit: cover;
	border-radius: 0.75rem;
	margin-bottom: 2rem;
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 3rem;
}

.article-content {
	background: white;
	padding: 2rem;
	border-radius: 0.75rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	margin-bottom: 3rem;
	line-height: 1.8;
}

.article-content h2 {
	font-size: 1.75rem;
	color: #1f2937;
	margin-top: 1.5rem;
	margin-bottom: 1rem;
}

.article-content h3 {
	font-size: 1.35rem;
	color: #374151;
	margin-top: 1.25rem;
	margin-bottom: 0.75rem;
}

.article-content p {
	color: #555;
	margin-bottom: 1rem;
}

.article-content ul,
.article-content ol {
	margin-left: 1.5rem;
	margin-bottom: 1rem;
}

.article-content li {
	color: #555;
	margin-bottom: 0.5rem;
}

.article-content strong {
	color: #1f2937;
	font-weight: 600;
}

.highlight {
	background: #fef3c7;
	padding: 0.25rem 0.5rem;
	border-radius: 0.25rem;
}

.article-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid #e5e7eb;
}

.tag {
	display: inline-block;
	background: #f0f7ff;
	color: #2563eb;
	padding: 0.5rem 1rem;
	border-radius: 1rem;
	font-size: 0.9rem;
	text-decoration: none;
	transition: all 0.3s;
}

.tag:hover {
	background: #2563eb;
	color: white;
}

.related-articles {
	margin-top: 3rem;
}

.related-articles h3 {
	font-size: 1.5rem;
	color: #1f2937;
	margin-bottom: 1.5rem;
	text-align: center;
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.related-card {
	background: white;
	border-radius: 0.75rem;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
}

.related-card:hover {
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
}

.related-image {
	width: 100%;
	height: 200px;
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 2rem;
}

.related-content {
	padding: 1.5rem;
}

.related-content h4 {
	font-size: 1.1rem;
	color: #1f2937;
	margin-bottom: 0.5rem;
	line-height: 1.4;
}

.related-content p {
	color: #666;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.read-more {
	display: inline-block;
	color: #2563eb;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s;
}

.read-more:hover {
	color: #1d4ed8;
	text-decoration: underline;
}

@media (max-width: 768px) {
	.article-title {
		font-size: clamp(1.5rem, 6vw, 2rem);
	}

	.article-meta {
		flex-direction: column;
		gap: 0.75rem;
		justify-content: flex-start;
	}

	.article-content {
		padding: 1.5rem;
	}

	.article-content h2 {
		font-size: 1.5rem;
		margin-top: 1.25rem;
	}

	.article-content h3 {
		font-size: 1.15rem;
	}

	.related-grid {
		grid-template-columns: 1fr;
	}

	.article-image {
		max-height: 300px;
	}
}
