@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;500;600&display=swap');

*{margin:0;padding:0;box-sizing:border-box}
body{font-family:'Inter',sans-serif;color:#1a1a1a;background:#fff;line-height:1.8}
a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto;display:block}

/* NAV */
nav{display:flex;align-items:center;justify-content:space-between;padding:20px 48px;border-bottom:1px solid #f0ece6;position:sticky;top:0;background:rgba(255,255,255,0.97);backdrop-filter:blur(8px);z-index:100}
.nav-logo{font-family:'Playfair Display',serif;font-size:18px;font-weight:700;color:#1a1a1a;letter-spacing:0.3px}
.nav-links a{margin-left:28px;font-size:13px;color:#666;font-weight:500;letter-spacing:0.05em;transition:color 0.2s}
.nav-links a:hover{color:#c0392b}

/* HERO IMAGE - article pages */
.hero-img{width:100%;height:460px;object-fit:cover;object-position:center}

/* CONTAINER */
.container{max-width:800px;margin:0 auto;padding:52px 24px}
h1{font-family:'Playfair Display',serif;font-size:40px;font-weight:700;line-height:1.2;margin-bottom:14px;color:#1a1a1a}
.meta{font-size:12px;color:#aaa;margin-bottom:40px;padding-bottom:40px;border-bottom:1px solid #f0ece6;letter-spacing:0.06em;font-weight:500}
h2{font-family:'Playfair Display',serif;font-size:24px;font-weight:700;margin:48px 0 18px;color:#1a1a1a}
p{margin-bottom:20px;font-size:16px;color:#444;line-height:1.85}
strong{font-weight:600;color:#1a1a1a}
ul{margin:0 0 20px 20px}
ul li{font-size:16px;color:#444;margin-bottom:10px;line-height:1.7}

/* INFO BOX */
.info-box{background:#fdf8f4;border-left:3px solid #c0392b;padding:20px 24px;margin:32px 0;border-radius:0 6px 6px 0}
.info-box p{margin:0;font-size:15px;color:#555}

/* AD SLOT */
.ad-slot{background:#f9f6f2;border:1.5px dashed #ddd;text-align:center;padding:40px;margin:48px 0;border-radius:6px;color:#ccc;font-size:12px;letter-spacing:0.1em;font-weight:500}

/* TABLE */
.table-wrap{overflow-x:auto;margin:24px 0}
table{width:100%;border-collapse:collapse;min-width:400px}
th,td{border:1px solid #ede9e4;padding:13px 16px;text-align:left;font-size:14px}
th{background:#fdf8f4;font-weight:600;color:#1a1a1a;font-size:13px;letter-spacing:0.04em}
td{color:#555}

/* RELATED */
.related{margin-top:60px;padding-top:32px;border-top:1px solid #f0ece6}
.related-label{font-size:11px;font-weight:600;letter-spacing:0.1em;color:#aaa;margin-bottom:16px}
.related a{display:inline-block;color:#c0392b;font-size:14px;margin-right:24px;margin-bottom:8px;font-weight:500}
.related a:hover{text-decoration:underline}

/* FOOTER */
footer{background:#1a1a1a;color:#666;padding:40px 48px;display:flex;justify-content:space-between;align-items:center;margin-top:80px}
.footer-logo{font-family:'Playfair Display',serif;color:#fff;font-size:16px;font-weight:700}
.footer-right{font-size:13px}
.footer-right a{color:#666;margin-left:20px}
.footer-right a:hover{color:#999}

/* MOBILE */
@media(max-width:768px){
  nav{padding:16px 20px}
  .nav-links a{margin-left:16px;font-size:12px}
  .hero-img{height:260px}
  .container{padding:32px 16px}
  h1{font-size:28px}
  h2{font-size:20px}
  p,ul li{font-size:15px}
  footer{flex-direction:column;gap:12px;text-align:center;padding:28px 20px}
  .footer-right a{margin:0 8px}
}
@media(max-width:480px){
  .nav-links{display:none}
  .hero-img{height:210px}
  h1{font-size:24px}
}
