/* База */
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: #f9f9f9;
  color: #222;
  line-height: 1.7;
}

/* Шапка */
header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-size: 20px;
  margin: 0;
  font-family: Arial, sans-serif;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #555;
  font-size: 14px;
}

nav a:hover {
  color: #000;
}

/* Контейнер */
.container {
  max-width: 720px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Превью постов */
.post {
  margin-bottom: 40px;
}

.post h2 {
  margin-bottom: 5px;
}

.post h2 a {
  text-decoration: none;
  color: #111;
}

.post h2 a:hover {
  text-decoration: underline;
}

.date {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

/* Страница статьи */
.post p {
  font-size: 18px;
  margin-bottom: 18px;
}

/* Картинки */
.post img {
  width: 100%;
  border-radius: 8px;
  margin: 20px 0;
}

/* Разделитель */
hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 30px 0;
}

/* Футер */
footer {
  text-align: center;
  padding: 40px;
  font-size: 13px;
  color: #999;
}
