/* Blog/Post/style.css - Стили Одного Поста */

:root {
  --primary-font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --main-bg-color: #f0f8ff;
  --text-color: #333;
  --footer-bg-color: #6a8faf;
  --button-bg-color: #46992d;
  --transparent-white: rgba(255, 255, 255, 0.8);
  --light-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

body {
  font-family: var(--primary-font);
  line-height: 1.6;
  margin: 0;
  color: var(--text-color);
  background-color: var(--main-bg-color);
}

main {
  padding: 20px;
}

a,
button {
  transition: transform 0.3s ease;
}

a:hover,
button:hover {
  transform: scale(1.05);
}

/* --- Контейнер Поста --- */

#post-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem 2.5rem;
  font-family: var(--primary-font);
  background-color: white;
  border-radius: 15px;
  box-shadow: var(--light-shadow);
}

.post-error {
  color: #c00;
  font-weight: bold;
  text-align: center;
  padding: 2rem;
}

/* --- Элементы Поста (из post-script.js) --- */

.post-header {
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
}

.post-title {
  font-size: 2.5rem;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
  color: var(--button-bg-color);
}

.post-date {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
  display: block;
}

.post-main-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

/* --- Контент (Markdown) --- */

.post-content {
  line-height: 1.7;
  font-size: 1.1rem;
  color: var(--text-color);
}

.post-content h1,
.post-content h2,
.post-content h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: #333;
}

.post-content h1 {
  font-size: 2rem;
}

.post-content h2 {
  font-size: 1.7rem;
}

.post-content h3 {
  font-size: 1.4rem;
}

.post-content p {
  margin-bottom: 1.2rem;
}

.post-content ul,
.post-content ol {
  padding-left: 2rem;
  margin-bottom: 1.2rem;
}

.post-content li {
  margin-bottom: 0.5rem;
}

.post-content blockquote {
  border-left: 4px solid var(--button-bg-color);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #555;
  background-color: #f9f9f9;
  border-radius: 0 5px 5px 0;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.post-content a {
  color: var(--button-bg-color);
  text-decoration: none;
  border-bottom: 1px dotted var(--button-bg-color);
}

.post-content a:hover {
  text-decoration: none;
  border-bottom: 1px solid var(--button-bg-color);
}

/* --- Футер Поста --- */

.post-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid #f0f0f0;
  color: #555;
  font-size: 1rem;
}

.post-tags {
  color: var(--button-bg-color);
  font-weight: 500;
}

/* --- Подвал --- */

footer {
  text-align: center;
  padding: 20px 0;
  background-color: var(--main-bg-color);
  color: var(--footer-bg-color);
  margin-top: 2rem;
}