
/* PREMIUM EDITORIAL UI – FRONTEND ONLY */
:root {
  --primary: #1B2A41;
  --accent: #C9A227;
  --bg-main: #FFFFFF;
  --text-main: #1F2933;
  --text-muted: #6B7280;
  --border-light: #E5E7EB;
  --radius: 14px;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.8;
}

h1,h2,h3,h4 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
}

.post-card {
  background:#fff;
  border-radius:var(--radius);
  overflow:hidden;
  transition:.2s ease;
}

.post-card:hover {
  transform:translateY(-4px);
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.post-card img {
  aspect-ratio:16/9;
  object-fit:cover;
}

.single-post {
  max-width:780px;
  margin:auto;
}
.site-footer {
    background: #1a535c;
    color: #cbd5f5;
    margin-top: 4rem;
}

.site-footer h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: #cbd5f5;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer__copyright {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
}
