/* ============================================================
   REDDY ANNA BLOG — Shared CSS
   Matches main site design: PaytoneOne + Plus Jakarta Sans
   Dark gold/red theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=PaytoneOne&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --gold: #FFD700;
  --gold-light: #FFE766;
  --gold-dark: #B8960C;
  --red: #CC0000;
  --red-bright: #FF1A1A;
  --dark: #0A0A0A;
  --dark2: #111111;
  --dark3: #1A1A1A;
  --dark4: #222222;
  --white: #FFFFFF;
  --grey: #AAAAAA;
  --grey-light: #DDDDDD;
  --green: #00C853;
  --whatsapp: #25D366;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ============================================================
   HEADER (identical to main site)
   ============================================================ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.96); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,215,0,0.15);
  padding: 0 5%; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.6); }

.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-family: 'PaytoneOne', sans-serif; font-size: 15px; color: var(--dark);
  box-shadow: 0 0 18px rgba(255,215,0,0.35);
}
.logo-text span:first-child {
  display: block; font-family: 'PaytoneOne', sans-serif; font-size: 20px; line-height: 1;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.logo-text span:last-child {
  display: block; font-size: 9px; letter-spacing: 2.5px;
  color: var(--grey); text-transform: uppercase; margin-top: 2px;
}

nav { display: flex; align-items: center; gap: 24px; }
nav a {
  font-size: 12px; font-weight: 700; letter-spacing: 0.3px; color: var(--grey-light);
  text-decoration: none; text-transform: uppercase; transition: color 0.25s;
  position: relative; padding-bottom: 2px;
}
nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--gold); transform: scaleX(0);
  transition: transform 0.3s; transform-origin: left;
}
nav a:hover { color: var(--gold); }
nav a:hover::after { transform: scaleX(1); }
nav a.active { color: var(--gold); }
nav a.active::after { transform: scaleX(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark) !important; padding: 9px 20px; border-radius: 50px;
  font-weight: 800 !important; font-size: 12px !important;
  transition: all 0.3s !important; box-shadow: 0 0 18px rgba(255,215,0,0.25);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(255,215,0,0.45) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: all 0.3s; }

.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(10,10,10,0.99); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,215,0,0.1);
  padding: 16px 5%; z-index: 999; flex-direction: column; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px; color: var(--grey-light);
  text-decoration: none; text-transform: uppercase;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ============================================================
   PAGE WRAPPER
   ============================================================ */
.page-wrap { padding-top: 68px; min-height: 100vh; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--dark);
  padding: 12px 28px; border-radius: 50px; font-weight: 800; font-size: 13px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s; box-shadow: 0 0 20px rgba(255,215,0,0.25); border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(255,215,0,0.5); }

.btn-outline {
  background: transparent; color: var(--white); padding: 12px 28px; border-radius: 50px;
  font-weight: 700; font-size: 13px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.22); transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(255,215,0,0.05); }

/* ============================================================
   FOOTER (identical to main site)
   ============================================================ */
footer {
  background: #050505; border-top: 1px solid rgba(255,215,0,0.1);
  padding: 65px 5% 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 46px;
  max-width: 1200px; margin: 0 auto; padding-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand p { font-size: 13px; color: var(--grey); line-height: 1.8; margin: 14px 0 20px; max-width: 265px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 35px; height: 35px; background: var(--dark3);
  border: 1px solid rgba(255,215,0,0.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--grey); font-size: 14px; text-decoration: none; transition: all 0.3s;
}
.social-link:hover { background: rgba(255,215,0,0.08); color: var(--gold); border-color: rgba(255,215,0,0.3); transform: translateY(-2px); }

.footer-col h4 { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 13px; color: var(--grey); text-decoration: none; transition: color 0.25s; font-weight: 500; }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.22); text-decoration: none; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--gold); }

.disclaimer {
  max-width: 1200px; margin: 18px auto 0; padding: 12px 18px;
  background: rgba(255,215,0,0.03); border: 1px solid rgba(255,215,0,0.08);
  border-radius: 8px; font-size: 11px; color: rgba(255,255,255,0.18); line-height: 1.6; text-align: center;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.whatsapp-tooltip { background: var(--dark2); border: 1px solid rgba(37,211,102,0.3); border-radius: 10px; padding: 7px 13px; font-size: 12px; font-weight: 600; color: var(--white); white-space: nowrap; box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.whatsapp-btn { width: 56px; height: 56px; background: var(--whatsapp); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; color: white; text-decoration: none; box-shadow: 0 4px 22px rgba(37,211,102,0.45); transition: all 0.3s; position: relative; }
.whatsapp-btn::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(37,211,102,0.28); animation: ripple 2s linear infinite; }
.whatsapp-btn::after { content: ''; position: absolute; inset: -10px; border-radius: 50%; border: 2px solid rgba(37,211,102,0.12); animation: ripple 2s linear 0.6s infinite; }
@keyframes ripple { 0% { transform: scale(0.9); opacity: 1; } 100% { transform: scale(1.45); opacity: 0; } }
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 36px rgba(37,211,102,0.65); }

/* ============================================================
   BLOG INDEX PAGE
   ============================================================ */
.blog-hero {
  background: linear-gradient(160deg, #0A0A0A 0%, #0f0700 50%, #0A0A0A 100%);
  padding: 90px 5% 70px; text-align: center; position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(255,215,0,0.1);
}
.blog-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 65% 75% at 50% 50%, rgba(255,215,0,0.07) 0%, transparent 65%); }
.blog-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,215,0,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,215,0,0.03) 1px, transparent 1px); background-size: 52px 52px; }
.blog-hero h1 { font-family: 'PaytoneOne', sans-serif; font-size: clamp(36px, 5vw, 64px); position: relative; z-index: 1; margin-bottom: 14px; }
.blog-hero p { font-size: 16px; color: var(--grey); max-width: 520px; margin: 0 auto; position: relative; z-index: 1; line-height: 1.75; }
.gold-text { background: linear-gradient(90deg, var(--gold-light), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Blog Grid */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px; max-width: 1200px; margin: 0 auto;
}

.blog-card {
  background: var(--dark3); border: 1px solid rgba(255,215,0,0.1);
  border-radius: 18px; overflow: hidden; text-decoration: none; display: block;
  transition: all 0.35s; position: relative;
}
.blog-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  transform: scaleX(0); transition: transform 0.35s; transform-origin: left; z-index: 1;
}
.blog-card:hover { transform: translateY(-7px); border-color: rgba(255,215,0,0.32); box-shadow: 0 22px 52px rgba(0,0,0,0.45); }
.blog-card:hover::before { transform: scaleX(1); }

.blog-card-thumb {
  width: 100%; height: 200px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--dark4), var(--dark2));
  display: flex; align-items: center; justify-content: center;
}
.blog-card-thumb .thumb-emoji { font-size: 64px; opacity: 0.7; transition: transform 0.4s; }
.blog-card:hover .thumb-emoji { transform: scale(1.15); }
.blog-card-thumb .thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.85) 100%);
}
.blog-card-thumb .thumb-cat {
  position: absolute; top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 4px 12px; border-radius: 50px;
}

.blog-card-body { padding: 24px 22px 26px; }
.blog-card-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-meta-item { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--grey); font-weight: 600; }
.blog-meta-item i { color: var(--gold); font-size: 10px; }
.blog-card-title { font-family: 'PaytoneOne', sans-serif; font-size: 20px; color: var(--white); line-height: 1.25; margin-bottom: 10px; transition: color 0.3s; }
.blog-card:hover .blog-card-title { color: var(--gold); }
.blog-card-excerpt { font-size: 13px; color: var(--grey); line-height: 1.7; margin-bottom: 18px; }
.blog-card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; transition: gap 0.2s; }
.blog-card:hover .blog-card-link { gap: 10px; }

/* Featured post */
.blog-card.featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
.blog-card.featured .blog-card-thumb { height: 100%; min-height: 300px; }
.blog-card.featured .blog-card-title { font-size: 28px; }
.blog-card.featured .blog-card-excerpt { font-size: 14px; }

/* Category filter */
.blog-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 48px; }
.filter-btn {
  padding: 8px 20px; border-radius: 50px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase; cursor: pointer;
  background: var(--dark3); color: var(--grey); border: 1px solid rgba(255,215,0,0.12);
  transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); border-color: transparent;
}

/* ============================================================
   SINGLE BLOG POST PAGE
   ============================================================ */
.post-hero {
  padding: 80px 5% 60px; position: relative; overflow: hidden;
  background: linear-gradient(160deg, #0A0A0A 0%, #0f0700 50%, #0A0A0A 100%);
  border-bottom: 1px solid rgba(255,215,0,0.1);
}
.post-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 40%, rgba(255,215,0,0.06) 0%, transparent 65%); }
.post-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,215,0,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,215,0,0.03) 1px, transparent 1px); background-size: 52px 52px; }
.post-hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }

.post-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; font-size: 12px; color: var(--grey); flex-wrap: wrap; }
.post-breadcrumb a { color: var(--gold); text-decoration: none; font-weight: 700; transition: opacity 0.2s; }
.post-breadcrumb a:hover { opacity: 0.7; }
.post-breadcrumb i { font-size: 10px; }

.post-category {
  display: inline-block; background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); font-size: 10px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 18px;
}

.post-title {
  font-family: 'PaytoneOne', sans-serif;
  font-size: clamp(28px, 4.5vw, 52px); line-height: 1.1; margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff, rgba(255,255,255,0.85));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.post-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.post-meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--grey); font-weight: 600; }
.post-meta-item i { color: var(--gold); }

/* Post layout */
.post-layout { display: grid; grid-template-columns: 1fr 340px; gap: 50px; max-width: 1200px; margin: 0 auto; padding: 60px 5%; align-items: start; }

/* Post content */
.post-content { min-width: 0; }

.post-featured-img {
  width: 100%; border-radius: 16px; margin-bottom: 40px; overflow: hidden;
  background: linear-gradient(135deg, var(--dark3), var(--dark4));
  border: 1px solid rgba(255,215,0,0.12);
  display: flex; align-items: center; justify-content: center;
  min-height: 320px; font-size: 96px; position: relative;
}
.post-featured-img::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 40%, rgba(255,215,0,0.05) 0%, transparent 70%);
}

/* Article typography */
.article-body { font-size: 15px; color: var(--grey-light); line-height: 1.85; }
.article-body h2 { font-family: 'PaytoneOne', sans-serif; font-size: clamp(22px, 3vw, 30px); color: var(--white); margin: 40px 0 16px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,215,0,0.15); }
.article-body h3 { font-size: 20px; font-weight: 800; color: var(--gold-light); margin: 30px 0 12px; }
.article-body p { margin-bottom: 18px; }
.article-body strong { color: var(--white); font-weight: 800; }
.article-body a { color: var(--gold); text-decoration: none; font-weight: 700; border-bottom: 1px solid rgba(255,215,0,0.3); transition: border-color 0.2s; }
.article-body a:hover { border-color: var(--gold); }
.article-body ul, .article-body ol { margin: 16px 0 20px 24px; display: flex; flex-direction: column; gap: 10px; }
.article-body li { color: var(--grey-light); font-size: 15px; line-height: 1.7; }
.article-body li::marker { color: var(--gold); }

.article-body blockquote {
  border-left: 4px solid var(--gold); padding: 18px 24px;
  background: rgba(255,215,0,0.05); border-radius: 0 12px 12px 0;
  margin: 28px 0; font-style: italic; color: var(--grey-light); font-size: 16px; line-height: 1.75;
}
.article-body blockquote strong { color: var(--gold); }

/* Callout box */
.callout {
  background: rgba(255,215,0,0.06); border: 1px solid rgba(255,215,0,0.2);
  border-radius: 14px; padding: 22px 24px; margin: 28px 0;
  display: flex; gap: 16px; align-items: flex-start;
}
.callout-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.callout-text h4 { font-size: 15px; font-weight: 800; color: var(--gold); margin-bottom: 6px; }
.callout-text p { font-size: 13px; color: var(--grey-light); line-height: 1.65; margin: 0; }

/* Tip box */
.tip-box {
  background: rgba(0,200,83,0.06); border: 1px solid rgba(0,200,83,0.2);
  border-radius: 14px; padding: 20px 22px; margin: 28px 0;
}
.tip-box h4 { font-size: 14px; font-weight: 800; color: var(--green); margin-bottom: 8px; }
.tip-box p, .tip-box li { font-size: 13px; color: var(--grey-light); line-height: 1.65; margin: 0; }

/* Step list */
.step-list { list-style: none; margin: 20px 0 28px !important; padding: 0 !important; display: flex; flex-direction: column; gap: 14px !important; }
.step-list li {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--dark3); border: 1px solid rgba(255,215,0,0.1);
  border-radius: 12px; padding: 16px 18px;
}
.step-num {
  min-width: 32px; height: 32px; background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'PaytoneOne', sans-serif; font-size: 14px; color: var(--dark); flex-shrink: 0;
}
.step-text { font-size: 14px; color: var(--grey-light); line-height: 1.65; padding-top: 4px; }
.step-text strong { color: var(--white); display: block; margin-bottom: 3px; }

/* Tags */
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06); }
.post-tag { background: var(--dark3); border: 1px solid rgba(255,215,0,0.12); border-radius: 50px; padding: 5px 14px; font-size: 11px; font-weight: 700; color: var(--grey); text-transform: uppercase; letter-spacing: 1px; transition: all 0.2s; }
.post-tag:hover { border-color: rgba(255,215,0,0.3); color: var(--gold); }

/* Share box */
.share-box { background: var(--dark3); border: 1px solid rgba(255,215,0,0.12); border-radius: 16px; padding: 24px; margin-top: 40px; text-align: center; }
.share-box h4 { font-family: 'PaytoneOne', sans-serif; font-size: 18px; color: var(--white); margin-bottom: 16px; }
.share-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.share-btn { display: inline-flex; align-items: center; gap: 7px; padding: 9px 18px; border-radius: 50px; font-size: 12px; font-weight: 800; text-decoration: none; transition: all 0.3s; }
.share-wa { background: rgba(37,211,102,0.12); color: var(--whatsapp); border: 1px solid rgba(37,211,102,0.28); }
.share-wa:hover { background: rgba(37,211,102,0.2); transform: translateY(-2px); }
.share-tg { background: rgba(44,165,224,0.12); color: #2CA5E0; border: 1px solid rgba(44,165,224,0.28); }
.share-tg:hover { background: rgba(44,165,224,0.2); transform: translateY(-2px); }
.share-copy { background: rgba(255,215,0,0.1); color: var(--gold); border: 1px solid rgba(255,215,0,0.25); cursor: pointer; }
.share-copy:hover { background: rgba(255,215,0,0.18); transform: translateY(-2px); }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 90px; }

.sidebar-widget {
  background: var(--dark3); border: 1px solid rgba(255,215,0,0.1);
  border-radius: 16px; padding: 22px; overflow: hidden; position: relative;
}
.sidebar-widget::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
}
.sidebar-widget h3 { font-family: 'PaytoneOne', sans-serif; font-size: 16px; color: var(--white); margin-bottom: 16px; padding-top: 4px; }

/* CTA Widget */
.cta-widget { background: linear-gradient(135deg, #1a0800, #0f0500); border-color: rgba(255,215,0,0.2); text-align: center; }
.cta-widget .cta-emoji { font-size: 48px; display: block; margin-bottom: 12px; }
.cta-widget h3 { font-size: 18px; }
.cta-widget p { font-size: 13px; color: var(--grey); line-height: 1.65; margin-bottom: 18px; }
.cta-widget .btn-primary { width: 100%; justify-content: center; font-size: 13px; }

/* Recent posts widget */
.recent-post { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); text-decoration: none; transition: all 0.2s; }
.recent-post:last-child { border-bottom: none; padding-bottom: 0; }
.recent-post:hover .rp-title { color: var(--gold); }
.rp-thumb { width: 48px; height: 48px; border-radius: 8px; background: linear-gradient(135deg, var(--dark4), var(--dark2)); border: 1px solid rgba(255,215,0,0.1); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.rp-title { font-size: 13px; font-weight: 700; color: var(--grey-light); line-height: 1.4; margin-bottom: 4px; transition: color 0.2s; }
.rp-date { font-size: 11px; color: var(--grey); }

/* Categories widget */
.cat-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.cat-list li a { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--grey-light); text-decoration: none; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.04); transition: color 0.2s; font-weight: 600; }
.cat-list li a:hover { color: var(--gold); }
.cat-count { background: rgba(255,215,0,0.1); color: var(--gold); font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: 50px; }

/* Tags widget */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-chip { background: var(--dark2); border: 1px solid rgba(255,215,0,0.1); border-radius: 50px; padding: 5px 12px; font-size: 11px; font-weight: 700; color: var(--grey); text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.2s; cursor: pointer; }
.tag-chip:hover { border-color: rgba(255,215,0,0.3); color: var(--gold); }

/* Related posts */
.related-section { background: var(--dark2); padding: 70px 5%; }
.related-section h2 { font-family: 'PaytoneOne', sans-serif; font-size: 30px; margin-bottom: 30px; text-align: center; }
.related-section h2 .gold { background: linear-gradient(90deg, var(--gold-light), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .post-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .blog-card.featured { grid-column: auto; display: block; }
  .blog-card.featured .blog-card-thumb { height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .whatsapp-float { bottom: 18px; right: 18px; }
}
