@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Open+Sans:wght@400;500;600;700&display=swap');
:root { --bg-main: #FAFAF9; --bg-card: #FFFFFF; --bg-header: #FFFFFF; --accent: #D97706; --text-main: #1C1917; --text-gray: #57534E; --border-color: #E7E5E4; --font-main: 'Open Sans', sans-serif; --font-heading: 'Merriweather', serif; --shadow-sm: 0 1px 2px rgba(0,0,0,0.05); }
* { 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.6; display: flex; flex-direction: column; min-height: 100vh; }
a { text-decoration: none; color: inherit; transition: all 0.2s ease; }
a:hover { color: var(--accent); }
h1, h2, h3, h4 { color: var(--text-main); font-family: var(--font-heading); font-weight: 700; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 30px; width: 100%; }
.site-header { background: var(--bg-header); border-bottom: 1px solid var(--border-color); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 100; }
.header-top { display: flex; justify-content: space-between; align-items: center; padding: 25px 30px; max-width: 1400px; margin: 0 auto; }
.logo { font-size: 2rem; font-weight: 700; font-family: var(--font-heading); color: var(--accent); text-transform: uppercase; }
.header-nav { border-top: 1px solid var(--border-color); background: var(--bg-header); }
.nav-links { display: flex; justify-content: center; gap: 40px; padding: 15px 20px; flex-wrap: wrap; }
.nav-links a { color: var(--text-gray); font-weight: 600; font-size: 0.95rem; text-transform: uppercase; }
.nav-links a:hover { color: var(--accent); }
.bottom-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin: 40px 0; }
.post-thumb-card { position: relative; background: var(--bg-card); border: 1px solid var(--border-color); display: flex; flex-direction: column; justify-content: flex-end; padding: 25px; transition: all 0.3s ease; box-shadow: var(--shadow-sm); min-height: 250px; }
.post-thumb-card:hover { transform: translateY(-4px); border-color: #d6d3d1; }
.cat-badge { background: var(--accent); color: #fff; padding: 4px 10px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; display: inline-block; margin-bottom: 15px; width: fit-content; }
.post-thumb-title { color: var(--text-main); font-size: 1.1rem; line-height: 1.4; }
.post-container { max-width: 850px; margin: 40px auto; background: var(--bg-card); padding: 50px; border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); }
.post-h1 { font-size: 2.5rem; line-height: 1.25; margin-bottom: 25px; }
.post-meta-info { display: flex; align-items: center; gap: 15px; border-top: 1px solid var(--border-color); padding-top: 20px; font-size: 0.95rem; }
.post-meta-info img { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; }
.post-content { font-size: 1.15rem; line-height: 1.8; }
.post-content h2 { font-size: 1.8rem; margin: 50px 0 20px; border-bottom: 1px solid var(--border-color); padding-bottom: 10px; }
.post-content p { margin-bottom: 25px; }
.post-content a { color: var(--accent); font-weight: 600; text-decoration: underline; }
.pagination { display: flex; justify-content: center; gap: 8px; margin: 20px 0 60px; }
.page-link { width: 40px; height: 40px; display: flex; justify-content: center; align-items: center; border: 1px solid var(--border-color); background: var(--bg-card); font-weight: 600; }
.page-link.active { background: var(--accent); color: #fff; }
.site-footer { background: var(--bg-card); border-top: 1px solid var(--border-color); padding: 60px 0 20px; margin-top: auto; }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; max-width: 1400px; margin: 0 auto; padding: 0 30px; }
.footer-title { margin-bottom: 20px; font-weight: 700; text-transform: uppercase; color: var(--text-main); }
.footer-bottom { text-align: center; margin-top: 50px; padding-top: 20px; border-top: 1px solid var(--border-color); font-size: 0.85rem; }