
* { box-sizing: border-box; }
body { margin: 0; font-family: Arial, sans-serif; display: flex; background-color: #fff; }
.sidebar { width: 200px; background-color: #1d1f21; color: #fff; height: 100vh; padding-top: 50px; position: fixed; }
.sidebar ul { list-style: none; padding: 0; margin: 0; }
.sidebar li { padding: 16px 24px; font-size: 16px; }
.sidebar a { color: white; text-decoration: none; display: block; }
.sidebar li:hover { background-color: #2d2f31; }
.content { margin-left: 200px; padding: 40px 30px; max-width: 850px; }
.title { font-size: 32px; font-weight: bold; text-align: center; margin-bottom: 10px; }
.subtitle { text-align: center; font-size: 18px; font-weight: bold; margin-bottom: 40px; }
.article { margin-bottom: 50px; }
.article h2 { font-size: 24px; font-weight: bold; margin: 20px 0; }
.article img { width: 100%; max-height: 300px; object-fit: cover; display: block; }
.article p { font-size: 14px; line-height: 1.6; margin: 10px 0; text-align: justify; }
.read-more { display: block; text-align: right; font-weight: bold; text-decoration: none; color: #111; margin-top: 10px; }
