/* THEME 2: EDITORIAL LUXURY */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;900&family=Plus+Jakarta+Sans:wght@300;400;600&display=swap');

:root {
  --bg-main: #fbfbf9;
  --bg-card: #ffffff;
  --bg-header: #fbfbf9;
  --accent: #111111;
  --accent-gold: #b38b59;
  --text-main: #111111;
  --text-gray: #6e6e6e;
  --border-color: #e5e5e0;
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Cinzel', serif;
  --shadow-sm: none;
}

* { 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: opacity 0.2s ease; }
a:hover { opacity: 0.6; }

h1, h2, h3, h4 { color: var(--text-main); font-family: var(--font-heading); letter-spacing: 0.05em; }

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

.site-header { 
  background: var(--bg-header); 
  border-bottom: 1px solid var(--border-color); 
  position: sticky; top: 0; z-index: 100;
}
.header-top { display: flex; justify-content: space-between; align-items: center; padding: 30px 40px; max-width: 1360px; margin: 0 auto; }
.logo { font-size: 2.2rem; font-family: var(--font-heading); font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-main); }

.header-nav { border-top: 1px solid var(--border-color); background: var(--bg-header); }
.nav-links { display: flex; justify-content: center; gap: 45px; padding: 14px 20px; }
.nav-links a { color: var(--text-main); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; }
.nav-links a:hover { color: var(--accent-gold); }

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

.post-thumb-card { 
  background: var(--bg-card); 
  border: 1px solid var(--border-color); 
  display: flex; flex-direction: column; justify-content: space-between; 
  padding: 40px 30px; transition: border-color 0.3s ease; 
  min-height: 280px; 
}
.post-thumb-card:hover { border-color: var(--accent-gold); }

.cat-badge { 
  color: var(--accent-gold); font-size: 0.7rem; font-weight: 600; 
  letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 25px; 
  border-bottom: 1px solid var(--accent-gold); padding-bottom: 3px; display: inline-block; width: fit-content;
}

.post-thumb-title { color: var(--text-main); font-size: 1.35rem; line-height: 1.4; font-family: var(--font-heading); font-weight: 500; }

.post-container { max-width: 820px; margin: 70px auto; background: var(--bg-card); padding: 60px; border: 1px solid var(--border-color); }
.post-h1 { font-size: 3.2rem; line-height: 1.15; margin-bottom: 30px; text-align: center; font-weight: 700; }
.post-meta-info { display: flex; align-items: center; justify-content: center; gap: 15px; border-bottom: 1px solid var(--border-color); padding-bottom: 30px; margin-bottom: 40px; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }
.post-meta-info img { width: 44px; height: 44px; border-radius: 50%; filter: grayscale(100%); }
.post-content { font-size: 1.1rem; line-height: 2; color: #444; font-weight: 300; }
.post-content h2 { font-size: 1.8rem; margin: 50px 0 20px; text-align: center; }
.post-content p { margin-bottom: 25px; }
.post-content a { color: var(--accent-gold); text-decoration: underline; text-underline-offset: 6px; }

.pagination { display: flex; justify-content: center; gap: 12px; margin: 40px 0 80px; }
.page-link { width: 40px; height: 40px; display: flex; justify-content: center; align-items: center; border: 1px solid var(--border-color); background: transparent; font-size: 0.85rem; font-family: var(--font-heading); }
.page-link:hover { border-color: var(--text-main); }
.page-link.active { background: var(--text-main); color: #fff; border-color: var(--text-main); }

.site-footer { background: #111111; color: #888; border-top: 1px solid #222; padding: 80px 0 30px; margin-top: auto; }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 50px; max-width: 1360px; margin: 0 auto; padding: 0 40px; }
.footer-title { margin-bottom: 25px; font-weight: 600; color: #ffffff; letter-spacing: 0.15em; text-transform: uppercase; font-size: 0.85rem; }
.footer-bottom { text-align: center; margin-top: 60px; padding-top: 25px; border-top: 1px solid #222; font-size: 0.75rem; letter-spacing: 0.1em; color: #555; }