/* Blog Article Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --color-cream: #faf6ee; --color-cream-soft: #f5ede0;
    --color-maroon: #6b1e1e; --color-maroon-deep: #4a1414;
    --color-saffron: #d97706; --color-gold: #c9a961; --color-gold-light: #e5c989;
    --color-text-dark: #1a1a1a; --color-text-muted: #5c5c5c;
    --color-border: rgba(201, 169, 97, 0.2);
}
body { font-family: 'Inter', sans-serif; background: var(--color-cream); color: var(--color-text-dark); line-height: 1.8; }
a { color: var(--color-saffron); text-decoration: none; }
a:hover { text-decoration: underline; }
.page-header { background: linear-gradient(135deg, var(--color-maroon-deep), var(--color-maroon)); color: var(--color-cream); padding: 20px 0; border-bottom: 3px solid var(--color-gold); }
.header-content { max-width: 900px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Cinzel', serif; font-size: 20px; font-weight: 700; color: var(--color-cream); }
.back-link { color: var(--color-gold-light); padding: 6px 14px; border: 1px solid var(--color-gold); border-radius: 20px; font-size: 13px; }
.back-link:hover { background: var(--color-gold); color: var(--color-maroon-deep); text-decoration: none; }
.article-header { background: linear-gradient(135deg, var(--color-maroon-deep), #8b2828); color: white; padding: 60px 24px; text-align: center; }
.article-header .tag { display: inline-block; padding: 4px 14px; background: rgba(255,255,255,0.15); border-radius: 20px; font-size: 12px; letter-spacing: 0.1em; margin-bottom: 16px; }
.article-header h1 { font-family: 'Cinzel', serif; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; color: var(--color-gold-light); line-height: 1.2; }
.article-header .meta { font-size: 13px; opacity: 0.85; }
article { max-width: 800px; margin: 0 auto; padding: 50px 24px; }
article h2 { font-family: 'Cinzel', serif; color: var(--color-maroon-deep); font-size: 1.5rem; margin: 32px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--color-gold); }
article h3 { font-family: 'Cinzel', serif; color: var(--color-maroon); font-size: 1.15rem; margin: 22px 0 8px; }
article p { margin-bottom: 14px; }
article ul, article ol { margin: 10px 0 16px 24px; }
article li { margin-bottom: 6px; }
article strong { color: var(--color-maroon-deep); }
.note-box { background: var(--color-cream-soft); border-left: 4px solid var(--color-saffron); padding: 16px 20px; margin: 22px 0; border-radius: 0 8px 8px 0; }
.note-box strong { color: var(--color-saffron); }
.cta-end { background: linear-gradient(135deg, var(--color-saffron), var(--color-maroon)); color: white; padding: 36px 28px; border-radius: 16px; text-align: center; margin-top: 36px; }
.cta-end h3 { font-family: 'Cinzel', serif; font-size: 1.4rem; margin-bottom: 10px; color: white; }
.cta-end p { margin-bottom: 18px; opacity: 0.95; }
.cta-end a { display: inline-block; padding: 12px 26px; background: white; color: var(--color-maroon-deep); border-radius: 30px; font-weight: 700; text-decoration: none; }
.related { background: var(--color-cream-soft); padding: 40px 24px; }
.related h2 { font-family: 'Cinzel', serif; color: var(--color-maroon-deep); text-align: center; margin-bottom: 20px; font-size: 1.4rem; }
.related-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.related a { background: white; padding: 14px 18px; border-radius: 8px; border: 1px solid var(--color-border); transition: 0.3s; color: var(--color-maroon-deep); font-weight: 600; font-size: 14px; }
.related a:hover { border-color: var(--color-gold); transform: translateY(-3px); text-decoration: none; }
.page-footer { background: #0a0a0f; color: var(--color-cream); padding: 28px 24px; text-align: center; font-size: 14px; }
.page-footer a { color: var(--color-gold-light); margin: 0 8px; }
.float-wa { position: fixed; bottom: 20px; right: 20px; width: 54px; height: 54px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(37,211,102,0.4); z-index: 999; }
.float-wa svg { width: 26px; height: 26px; fill: white; }
