/* ============================================================
 * blog.css — Insights listing + single article.
 * Self-contained like the other page stylesheets: defines the shared
 * :root variables, base typography, .container and .page-banner, then
 * blog-specific styles.
 * ============================================================ */
:root { --navy: #0d1b2a; --navy-dark: #07111c; --gold: #b8942a; --gold-light: #e8c45c; --cream: #f8f4ec; --white: #ffffff; --gray: #6b7280; --border: rgba(184,148,42,0.25); --shadow: 0 4px 20px rgba(0,0,0,0.1); --shadow-lg: 0 16px 48px rgba(0,0,0,0.15); --nav-red: #d9534f; }
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--navy); overflow-x: hidden; line-height: 1.6; }
h1, h2, h3, h4, h5, h6 { font-family: 'Cormorant Garamond', serif; font-weight: 500; line-height: 1.2; color: var(--white); }
/*p, span, li, a { color: var(--navy); }*/
a { text-decoration: none; transition: color 0.25s; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 60px; width: 100%; }

/* Banner */
.page-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color: var(--white); padding: 2rem 0 1.4rem; text-align: center; margin-top: 122px; }
.page-banner h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); color: var(--white); max-width: 900px; margin: 0 auto; line-height: 1.25; }
.page-banner .breadcrumb { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem; list-style: none; padding: 0; margin: 0.6rem 0 0; font-size: 0.9rem; }
.page-banner .breadcrumb li { color: rgba(255,255,255,0.7); }
.page-banner .breadcrumb a { color: var(--gold-light); }

/* ───────────── LISTING ───────────── */
.blog-section { background: var(--cream); padding: 4rem 0 5rem; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.blog-card { background: var(--white); border: 1px solid rgba(13,27,42,0.08); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(184,148,42,0.35); }
.blog-card-media { display: block; aspect-ratio: 16 / 9; overflow: hidden; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-card-media img { transform: scale(1.05); }
.blog-card-body { padding: 1.6rem 1.7rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 0.8rem; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.8rem; }
.blog-cat { color: var(--gold); font-weight: 600; }
.blog-date { color: var(--gray); }
.blog-card-title { font-size: 1.4rem; font-weight: 600; line-height: 1.25; margin-bottom: 0.7rem; }
.blog-card-title a { color: var(--navy); }
.blog-card-title a:hover { color: var(--gold); }
.blog-card-excerpt { color: var(--gray); font-size: 0.93rem; line-height: 1.7; margin-bottom: 1.2rem; }
.blog-card-link { margin-top: auto; align-self: flex-start; display: inline-flex; align-items: center; gap: 0.5rem; color: var(--navy); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.blog-card-link i { font-size: 0.72rem; transition: transform 0.25s; }
.blog-card-link:hover { color: var(--gold); }
.blog-card-link:hover i { transform: translateX(4px); }

/* ───────────── ARTICLE ───────────── */
.article-section { background: var(--white); padding: 3.5rem 0 5rem; }
.article-wrap { max-width: 780px; margin: 0 auto; }
.article-meta { display: flex; align-items: center; gap: 0.9rem; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1.2rem; }
.article-cat { color: var(--gold); font-weight: 600; }
.article-date { color: var(--gray); }
.article-hero { width: 100%; height: auto; border-radius: 10px; box-shadow: var(--shadow); margin-bottom: 2.2rem; }

.article-body { color: var(--gray); }
.article-body .article-lead { font-size: 1.15rem; line-height: 1.8; color: var(--navy); margin-bottom: 1.4rem; }
.article-body p { font-size: 1rem; line-height: 1.85; margin-bottom: 1.2rem; }
.article-body strong { color: var(--navy); font-weight: 600; }
.article-body h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 700; color: var(--navy); line-height: 1.25; margin: 2.2rem 0 0.9rem; }
.article-list { list-style: none; padding: 0; margin: 0 0 1.4rem; display: flex; flex-direction: column; gap: 1rem; }
.article-list li { position: relative; padding-left: 1.7rem; line-height: 1.8; }
.article-list li::before { content: ''; position: absolute; left: 0; top: 0.65em; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.article-note { background: var(--cream); border-left: 4px solid var(--gold); border-radius: 0 8px 8px 0; padding: 1.2rem 1.4rem; margin: 1.6rem 0; line-height: 1.75; color: var(--navy); }
.article-cta { display: inline-block; margin-top: 0.6rem; background: var(--navy); color: var(--white); padding: 0.9rem 1.8rem; border-radius: 2px; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; transition: background 0.25s; }
.article-cta:hover { background: var(--gold); color: var(--white); }

.article-share { display: flex; align-items: center; gap: 0.8rem; margin: 2.6rem 0 1.4rem; padding-top: 1.6rem; border-top: 1px solid rgba(13,27,42,0.1); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray); }
.article-share a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: var(--white); transition: background 0.25s, transform 0.25s; }
.article-share a:hover { background: var(--gold); transform: translateY(-2px); }
.article-back { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--gold); font-size: 0.85rem; font-weight: 600; }
.article-back:hover { color: var(--navy); }

/* RTL */
[dir="rtl"] .article-list li { padding-left: 0; padding-right: 1.7rem; }
[dir="rtl"] .article-list li::before { left: auto; right: 0; }
[dir="rtl"] .article-note { border-left: 0; border-right: 4px solid var(--gold); border-radius: 8px 0 0 8px; }

/* Responsive */
@media (max-width: 992px) { .container { padding: 0 40px; } }
@media (max-width: 768px) {
  .page-banner { margin-top: 0; padding-top: 90px; }
  .container { padding: 0 20px; }
  .blog-section { padding: 2.5rem 0 3.5rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .article-section { padding: 2.5rem 0 3.5rem; }
  .article-body h2 { font-size: 1.45rem; }
}
