@charset "UTF-8";
/* Стили для списка статей */
.blog-index {
  padding: 20px 0;
}

.article-item {
  margin-bottom: 30px;
}

.article-image {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: auto;
}

.article-title {
  font-size: 28px;
  margin-bottom: 10px;
}

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

.article-title a:hover {
  color: #007bff;
}

.article-date {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}

.article-description {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.article-separator {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #eee;
}

article h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

article p {
  margin-bottom: 20px;
}

/* Стили для боковой панели */
.sidebar {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

.sidebar h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.sidebar-article {
  margin-bottom: 15px;
}

.sidebar-title {
  font-size: 16px;
  margin-bottom: 5px;
}

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

.sidebar-title a:hover {
  color: #007bff;
}

.sidebar-date {
  font-size: 12px;
  color: #999;
}

.sidebar-separator {
  margin: 12px 0;
  border: 0;
  border-top: 1px solid #e0e0e0;
}

/* Стили для страницы статьи */
.blog-view {
  padding: 20px 0;
}

.article-main-image {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.article-main-image img {
  width: 100%;
  height: auto;
}

.article-full {
  max-width: 800px;
  margin: 0 auto;
}

.article-full .article-title {
  font-size: 36px;
  margin-bottom: 15px;
}

.article-full .article-date {
  font-size: 14px;
  color: #999;
  margin-bottom: 20px;
}

.article-full .article-description {
  font-size: 18px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
  font-style: italic;
}

.article-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.article-content img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}

.article-content blockquote {
  margin: 20px 0;
  padding: 15px 20px;
  background: #f8f9fa;
  border-left: 4px solid #007bff;
}

.article-content blockquote.quote-style-1 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-left: none;
  border-radius: 8px;
}

.article-content blockquote.quote-style-2 {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  font-style: italic;
}

.article-content blockquote.quote-style-3 {
  background: #d1ecf1;
  border: 1px solid #bee5eb;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.article-content ul.list-style-1 {
  padding-left: 30px;
  list-style-type: square;
  color: #15255b;
}

.article-content ul.list-style-2 {
  list-style-type: circle;
  padding-left: 30px;
}

.article-content ul.list-style-3 {
  list-style: none;
  padding-left: 0;
}

.article-content ul.list-style-3 li {
  padding-left: 20px;
  position: relative;
}

.article-content ul.list-style-3 li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #007bff;
}

.article-content ol.list-style-1 {
  padding-left: 30px;
  list-style-type: upper-roman;
}

.article-content ol.list-style-2 {
  list-style-type: lower-alpha;
}

.article-content ol.list-style-3 {
  list-style-type: decimal-leading-zero;
}

/* Пагинация */
.pagination-wrapper {
  margin-top: 40px;
  text-align: center;
}

.pagination {
  display: inline-flex;
  gap: 5px;
}

.page-item.active .page-link {
  background-color: #007bff;
  border-color: #007bff;
  color: white;
}

.page-link {
  color: #007bff;
  padding: 8px 16px;
  border-radius: 4px;
}

/*# sourceMappingURL=frontend.css.map */
