/* ===== MINIMAL LIGHT THEME ===== */
:root {
  --primary: #2c3e50;
  --secondary: #ecf0f1;
  --accent: #3498db;
  --text: #2c3e50;
  --light-text: #7f8c8d;
  --gradient: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: #f9f9f9;
  font-size: 18px;
  margin: 0;
  padding: 0;
}

/* === ШАПКА САЙТА === */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  position: relative;
}

.header-content {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.site-title {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 700;
}

.site-title a {
  color: var(--primary);
  text-decoration: none;
}

.site-description {
  margin: 0;
  color: var(--light-text);
  font-style: italic;
  font-size: 1.2rem;
}

/* === МЕНЮ НАВИГАЦИИ === */
.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 1.8rem;
  margin: 0;
  padding: 0;
}

.main-navigation a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
  font-size: 1.1rem;
}

.main-navigation a:hover {
  color: var(--accent);
}

.main-navigation a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.main-navigation a:hover:after {
  width: 100%;
}

/* === КОНТЕНТ И САЙДБАР === */
.content-area {
  display: flex;
  max-width: 1200px;
  margin: 2rem auto;
  gap: 2rem;
  padding: 0 1rem;
}

.main-content {
  flex: 2;
}

/* ———— ПРИЛИПАЮЩИЙ САЙДБАР ———— */
.sidebar {
  flex: 1;
  position: sticky;
  top: 20px;
  align-self: start;
  height: fit-content;
}

.widget {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.widget-title {
  margin: 0 0 1rem;
  font-size: 1.4rem;
  color: var(--primary);
}

/* === СЕТКА НОВОСТЕЙ === */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.news-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-thumbnail {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.news-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.news-item:hover .news-thumbnail img {
  transform: scale(1.05);
}

.thumbnail-gradient {
  width: 100%;
  height: 100%;
  background: var(--gradient);
}

.news-content {
  padding: 1.5rem;
}

.news-content h2 {
  margin: 0 0 0.8rem;
  font-size: 1.6rem;
}

.news-content h2 a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}

.news-content h2 a:hover {
  color: var(--accent);
}

.news-meta {
  display: flex;
  gap: 1rem;
  margin: 0.8rem 0;
  font-size: 1rem;
  color: var(--light-text);
}

.news-excerpt {
  color: var(--text);
  line-height: 1.6;
  font-size: 1.05rem;
}

.pagination {
  margin-top: 3rem;
  text-align: center;
}

.pagination .page-numbers {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0 0.2rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
  font-size: 1rem;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* === СТРАНИЦА ОДНОЙ СТАТЬИ === */
.single-content {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  font-size: 18px;
  line-height: 1.6;
}

/* Заголовок статьи (обычно h1) — убедимся, что он выделен */
.single-content h1 {
  margin: 0 0 1.5rem;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

/* Если заголовок статьи не вынесен отдельно, и первый h2 — это фактический заголовок */
.single-content h2:first-of-type {
  margin: 0 0 1.5rem;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

/* Остальные h2 — подзаголовки */
.single-content h2 {
  margin: 1.8rem 0 1rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.3;
}

/* h3 и ниже */
.single-content h3 {
  font-size: 1.4rem;
  color: var(--text);
  margin: 1.4rem 0 1rem;
  font-weight: 600;
}

.single-content h4,
.single-content h5,
.single-content h6 {
  color: var(--text);
  margin: 1.2rem 0 0.8rem;
  font-weight: 500;
}

/* Изображение статьи */
.featured-image {
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Навигация по статьям */
.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.nav-previous a,
.nav-next a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 1.1rem;
}

.nav-previous a:hover,
.nav-next a:hover {
  color: var(--accent);
}

/* === ФУТЕР === */
.site-footer {
  background: var(--primary);
  color: white;
  padding: 2rem 5%;
  text-align: center;
  margin-top: 3rem;
  font-size: 1.1rem;
}

/* === АДАПТИВНОСТЬ === */
@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  .header-content {
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.5rem;
  }
  
  .content-area {
    flex-direction: column;
  }
  
  .main-navigation ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-title {
    font-size: 2rem;
  }

  .site-description {
    font-size: 1.1rem;
  }

  /* Адаптация заголовков */
  .single-content h1,
  .single-content h2:first-of-type {
    font-size: 2rem;
  }

  .single-content h2:not(:first-of-type) {
    font-size: 1.6rem;
  }

  body {
    font-size: 17px;
  }

  /* Отключаем прилипание на мобильных */
  .sidebar {
    position: static;
    top: auto;
  }
}