/* Сброс и базовые стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f1f3f4;
  color: #202124;
  line-height: 1.6;
  padding: 2rem 1rem;
}

/* Обёртка-карточка, как на главной */
.post {
  max-width: 800px;
  margin: 2rem auto;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}

.post:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Заголовок */
.post h1 {
  font-size: 2.5rem;
  color: #1a73e8;
  margin-bottom: 1rem;
  border-bottom: 2px solid #90caf9;
  padding-bottom: 0.5rem;
}

/* Параграфы */
.post p {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

/* Кнопка "Назад" */
.back-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background-color: #1a73e8;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.back-button:hover {
  background-color: #155ab6;
}

/* Адаптивность */
@media (max-width: 600px) {
  .post h1 {
    font-size: 2rem;
  }

  .post p {
    font-size: 1rem;
  }
}
