body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	background-color: #f5f5f5;
	padding: 0;
	margin: 0;
}

.main-container {
	max-width: 1200px;
	margin: 30px auto;
	padding: 0 20px;
}

.header {
	background-color: #ffcf00;
	padding: 15px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-left {
	display: flex;
	align-items: center;
	gap: 20px;
}

.logo {
	font-size: 36px;
	font-weight: 900;
	color: #000;
	letter-spacing: -2px;
	text-decoration: none;
}

.header-right {
	display: flex;
	align-items: center;
	gap: 15px;
}

.nav-link {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	color: #000;
	text-decoration: none;
}

.container {
	max-width: 1200px;
	margin: 30px auto;
	padding: 0 20px;
}

.content-wrapper {
	display: grid;
	grid-template-columns: 1fr 350px;
	gap: 40px;
	margin-top: 20px;
}

.main-content {
	min-width: 0;
}

.sidebar {
	position: sticky;
	top: 20px;
	height: fit-content;
}

@media (max-width: 968px) {
	.content-wrapper {
		grid-template-columns: 1fr;
	}
	.sidebar {
		position: static;
	}
}

.breadcrumb {
	font-size: 13px;
	color: #666;
	margin-bottom: 20px;
	padding: 10px 0;
}

.breadcrumb a {
	color: #333;
	text-decoration: none;
}

.breadcrumb a:hover {
	text-decoration: underline;
}

.breadcrumb span {
	color: #333;
}

.article-header {
	background: white;
	padding: 30px;
	border-radius: 8px;
	margin-bottom: 25px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

h1 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 15px;
	line-height: 1.2;
}

.author-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-top: 10px;
}

.parade-logo {
	color: #000;
	font-size: 28px;
	font-weight: 700;
	font-style: italic;
}

.author-name {
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
}

.author-name a {
	color: inherit;
	text-decoration: none;
}

.author-name a:hover {
	text-decoration: underline;
}

.publish-date {
	font-size: 12px;
	color: #666;
	margin-top: 2px;
}

.intro-text {
	font-size: 16px;
	color: #333;
	margin-bottom: 30px;
	line-height: 1.6;
}

.sidebar-section {
	margin-bottom: 35px;
}

.sidebar-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 3px solid #ffcf00;
}

.sidebar-item {
	display: flex;
	gap: 15px;
	margin-bottom: 25px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}

.sidebar-item:last-child {
	border-bottom: none;
}

.sidebar-item img {
	width: 120px;
	height: 80px;
	object-fit: cover;
	border-radius: 4px;
	flex-shrink: 0;
}

.sidebar-content h3 {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
	margin: 0 0 8px 0;
}

.sidebar-content h3 a {
	color: #000;
	text-decoration: none;
}

.sidebar-content h3 a:hover {
	color: #333;
}

.sidebar-source {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: #666;
	margin-bottom: 5px;
}

.category-tag {
	display: inline-block;
	background: #ffcf00;
	color: #000;
	padding: 2px 8px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 15px;
	border-radius: 2px;
}

.footer {
	background: white;
	border-top: 1px solid #e0e0e0;
	padding: 40px 20px;
	margin-top: 60px;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-logo {
	font-size: 32px;
	font-weight: 900;
	color: #aaa;
	margin-bottom: 30px;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 25px;
	padding: 15px 0;
	border-bottom: 1px solid #e0e0e0;
}

.footer-links a {
	color: #666;
	text-decoration: none;
	font-size: 14px;
}

.footer-links a:hover {
	color: #000;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}

.footer-bottom-links {
	display: flex;
	gap: 20px;
}

.footer-bottom-links a {
	color: #666;
	text-decoration: none;
	font-size: 13px;
}

.post-body {
	font-size: 16px;
	color: #333;
	line-height: 1.6;
}

.post-body h2 {
	font-size: 20px;
	font-weight: 700;
	margin: 1.5em 0 0.5em;
}

.post-body p {
	margin-bottom: 1em;
}