/* THEME 6: LASLESVPN STYLE */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap');

:root {
  --bg-main: #FDFDFD;
  --bg-card: #FFFFFF;
  --bg-header: #FDFDFD;
  --accent: #F53838; /* Насыщенный красный */
  --text-main: #0B132A; /* Очень темно-синий/черный */
  --text-gray: #4F5665; /* Мягкий сизо-серый */
  --border-color: #DDDDDD;
  --font-main: 'Rubik', sans-serif;
  --font-heading: 'Rubik', sans-serif;
  --shadow-sm: 0 10px 20px rgba(0, 0, 0, 0.03);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body { font-family: var(--font-main); background-color: var(--bg-main); color: var(--text-gray); line-height: 1.8; display: flex; flex-direction: column; min-height: 100vh; }

a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 { color: var(--text-main); font-family: var(--font-heading); font-weight: 500; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }

.site-header { background: var(--bg-header); padding: 20px 0; }
.header-top { display: flex; justify-content: space-between; align-items: center; padding: 10px 20px; max-width: 1200px; margin: 0 auto; }
.logo { font-size: 1.8rem; font-weight: 700; color: var(--text-main); display: flex; align-items: center; gap: 10px; }
.logo::before { content: '●'; color: var(--accent); font-size: 1.5rem; }

.header-nav { display: flex; justify-content: center; margin-top: -45px; } /* Визуально поднимаем меню в шапку */
.nav-links { display: flex; justify-content: center; gap: 40px; }
.nav-links a { color: var(--text-gray); font-weight: 400; font-size: 1rem; }
.nav-links a:hover { color: var(--accent); }

.bottom-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; margin: 80px 0; }

.post-thumb-card { 
  position: relative; background: var(--bg-card); 
  border: 2px solid var(--border-color); 
  border-radius: 10px; 
  display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
  padding: 40px 30px; transition: all 0.3s ease; 
  box-shadow: var(--shadow-sm); 
  min-height: 300px; 
}
/* Фирменный эффект из дизайна - красная рамка и тень при наведении */
.post-thumb-card:hover { border-color: var(--accent); box-shadow: 0 20px 40px rgba(245, 56, 56, 0.15); }

.cat-badge { background: transparent; color: var(--text-main); padding: 0; font-size: 1rem; font-weight: 500; display: inline-block; margin-bottom: 20px; }

.post-thumb-title { color: var(--text-main); font-size: 1.2rem; line-height: 1.5; font-weight: 500; margin-bottom: 15px; }

.post-container { max-width: 800px; margin: 50px auto; background: transparent; padding: 0; border: none; }
.post-h1 { font-size: 3rem; line-height: 1.2; margin-bottom: 25px; text-align: center; }
.post-meta-info { display: flex; align-items: center; justify-content: center; gap: 15px; padding-bottom: 30px; margin-bottom: 30px; font-size: 1rem; color: var(--text-gray); }
.post-meta-info img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.post-content { font-size: 1.1rem; line-height: 2; color: var(--text-gray); }
.post-content h2 { font-size: 2rem; margin: 50px 0 20px; }
.post-content p { margin-bottom: 20px; }
.post-content a { color: var(--accent); font-weight: 500; }

.pagination { display: flex; justify-content: center; gap: 15px; margin: 40px 0 100px; }
.page-link { width: 45px; height: 45px; display: flex; justify-content: center; align-items: center; border: 2px solid var(--accent); background: #FFF; color: var(--accent); border-radius: 50%; font-weight: 500; transition: 0.3s; }
.page-link:hover { background: var(--accent); color: #FFF; }
.page-link.active { background: var(--accent); color: #FFF; box-shadow: 0 10px 20px rgba(245, 56, 56, 0.3); }

.site-footer { background: #F8F8F8; padding: 80px 0 30px; margin-top: auto; }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 50px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.footer-title { margin-bottom: 25px; font-weight: 500; color: var(--text-main); font-size: 1.2rem; }
.footer-bottom { text-align: center; margin-top: 60px; padding-top: 25px; font-size: 1rem; color: #AFB5C0; }