/* =========================================================
   CodeWithZaid.online — Complete CSS (Index, Blog & Contact Synced)
   PREMIUM EDITION — animated glow borders, glass cards, cinematic article layout
   ========================================================= */

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

:root {
  --bg: #090a0f;
  --bg-elevated: #12141d;
  --bg-elevated-2: #161922;
  --border: rgba(255, 255, 255, 0.09);
  --border-glow: rgba(0, 240, 255, 0.4);
  --text: #f0f2f8;
  --text-muted: #8e93a6;
  --accent: #2563eb;
  --accent-2: #00f0ff;
  --accent-3: #7c3aed;
  --accent-glow: rgba(0, 240, 255, 0.25);
  --accent-soft: rgba(37, 99, 235, 0.15);
  --hero-gradient: linear-gradient(135deg, #ffffff 30%, var(--accent-2));
  --badge-bg: rgba(0, 240, 255, 0.08);
  --badge-border: rgba(0, 240, 255, 0.25);
  --radius: 14px;
  --font-display: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --max-width: 1180px;
  --easing: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] {
  --bg: #f8fafc;
  --bg-elevated: #ffffff;
  --bg-elevated-2: #e2e8f0;
  --border: rgba(15, 23, 42, 0.12);
  --border-glow: rgba(37, 99, 235, 0.35);
  --text: #0f172a;
  --text-muted: #475569;
  --accent: #2563eb;
  --accent-2: #0284c7;
  --accent-3: #7c3aed;
  --accent-glow: rgba(37, 99, 235, 0.15);
  --accent-soft: rgba(37, 99, 235, 0.1);
  --hero-gradient: linear-gradient(135deg, #0f172a 30%, #0284c7);
  --badge-bg: rgba(2, 132, 199, 0.08);
  --badge-border: rgba(2, 132, 199, 0.25);
}

/* Global Reset & Tap Highlight Fix */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent !important;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark light;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(circle at 15% 10%, rgba(0, 240, 255, 0.06), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(124, 58, 237, 0.05), transparent 40%);
  background-attachment: fixed;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

/* ---------- 1. Header, Logo Animations & Mobile Overlay ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(9, 10, 15, 0.75);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--border);
}

[data-theme="light"] .site-header {
  background: rgba(248, 250, 252, 0.75);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Header Logo Glow & Pulse Animation */
.logo {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  position: relative;
  background: linear-gradient(90deg, #ffffff 0%, var(--accent-2) 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: logoGlowShift 4s linear infinite;
  transition: transform 0.3s var(--easing);
}

.logo:hover {
  transform: translateY(-1px) scale(1.03);
}

.logo .bracket {
  color: var(--accent-2);
  -webkit-text-fill-color: var(--accent-2);
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
  animation: bracketPulse 2.5s infinite alternate ease-in-out;
}

/* Terminal Cursor Effect after Logo */
.logo::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background-color: var(--accent-2);
  margin-left: 5px;
  box-shadow: 0 0 8px var(--accent-2);
  vertical-align: middle;
  animation: logoBlinkCursor 0.8s infinite;
}

@keyframes logoGlowShift {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes bracketPulse {
  0% { text-shadow: 0 0 4px rgba(0, 240, 255, 0.4); }
  100% { text-shadow: 0 0 14px rgba(0, 240, 255, 0.9), 0 0 20px rgba(0, 240, 255, 0.5); }
}

@keyframes logoBlinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s var(--easing);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent-3));
  box-shadow: 0 0 8px var(--accent-2);
  transition: width 0.3s var(--easing);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

/* External cross-site link pill in nav */
.nav-external-link {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--badge-border) !important;
  background: linear-gradient(180deg, rgba(0,240,255,0.08), rgba(124,58,237,0.06));
  color: var(--accent-2) !important;
  font-family: var(--font-mono);
  font-size: 0.82rem !important;
  font-weight: 600;
  white-space: nowrap;
}
.nav-external-link:hover {
  box-shadow: 0 0 14px var(--accent-glow);
  transform: translateY(-1px);
}
.nav-external-link::after { display: none !important; }

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-elevated);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 720px) {
  .hamburger { display: flex; }
  
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 72px);
    background-color: var(--bg) !important;
    z-index: 999;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 28px;
    gap: 28px;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s var(--easing), opacity 0.3s var(--easing), visibility 0.3s;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.35rem;
    font-weight: 600;
  }
}

/* ---------- 2. GitHub & LinkedIn Icons Sizing (24px) ---------- */
footer img, 
footer svg, 
.site-footer img, 
.site-footer svg,
.social-links img,
.social-links svg,
.footer-socials img,
.footer-socials svg,
a[href*="github"] img,
a[href*="github"] svg,
a[href*="linkedin"] img,
a[href*="linkedin"] svg {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  min-width: 24px !important;
  min-height: 24px !important;
  object-fit: contain !important;
  display: inline-block !important;
  margin: 0 6px !important;
  transition: transform 0.2s var(--easing), filter 0.2s ease;
}

footer a, .site-footer a, .social-links a, .footer-socials a, a[href*="github"], a[href*="linkedin"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  height: auto !important;
}

footer a:hover img, footer a:hover svg, .social-links a:hover img, .social-links a:hover svg {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 6px var(--accent-2));
}

/* ---------- 3. AI Glow Title Animation ---------- */
.ai-title-glow, .card-body h3, .hero h1 .accent-text {
  display: inline-block;
  background: linear-gradient(90deg, #ffffff 0%, var(--accent-2) 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: aiPulseGlow 4s linear infinite;
}

@keyframes aiPulseGlow {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ---------- 4. PREMIUM CARDS — glass, animated RGB-style border, image glow ---------- */
.hero {
  padding: 160px 0 80px;
}

.page-header {
  padding-top: 140px !important;
  padding-bottom: 30px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.card {
  background: linear-gradient(180deg, var(--bg-elevated), var(--bg-elevated-2));
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
  transition: transform 0.35s var(--easing), box-shadow 0.35s var(--easing);
  backdrop-filter: blur(6px);
}

/* Animated gradient border — sits behind the card, revealed via padding trick */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(0,240,255,0.55), rgba(124,58,237,0.45), rgba(0,240,255,0.55));
  background-size: 260% 260%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.55;
  z-index: 2;
  pointer-events: none;
  animation: borderFlow 6s ease infinite;
  transition: opacity 0.35s var(--easing);
}

@keyframes borderFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px -15px rgba(0, 0, 0, 0.55), 0 0 28px var(--accent-glow);
}

.card:hover::before {
  opacity: 1;
}

.card-img-wrapper, .card-image {
  width: 100%;
  height: 190px;
  background: var(--bg-elevated-2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.card-img-wrapper img, .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--easing), filter 0.6s var(--easing);
  filter: saturate(1.05) contrast(1.03);
}

.card:hover .card-img-wrapper img,
.card:hover .card-image img {
  transform: scale(1.08);
  filter: saturate(1.2) contrast(1.08);
}

/* Bottom fade so text/badge always reads clearly over any photo */
.card-img-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,10,15,0) 55%, rgba(9,10,15,0.65) 100%);
  pointer-events: none;
}

.card-topic-box {
  background: var(--badge-bg);
  border-bottom: 1px solid var(--badge-border);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  position: relative;
  z-index: 1;
}

.topic-title, .card-tag {
  color: var(--accent-2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.35);
}
.topic-title::before, .card-tag::before {
  content: "✦";
  font-size: 0.85rem;
  filter: drop-shadow(0 0 4px var(--accent-2));
}

.card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.card-body h3 {
  font-size: 1.18rem;
}

.card-body p {
  color: var(--text-muted);
  font-size: 0.94rem;
  flex: 1;
}

/* ---------- 5. Premium Cyan Button — glass + shine sweep ---------- */
.card-action, .card-body .read-btn-wrapper {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.read-btn, 
.card-body a.card-link,
.card-action a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  position: relative !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, #00f0ff, #4dd4ff) !important;
  color: #04151a !important;
  font-family: var(--font-mono) !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  border: none !important;
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.35), inset 0 0 0 1px rgba(255,255,255,0.25) !important;
  transition: all 0.25s var(--easing) !important;
  cursor: pointer !important;
  width: fit-content !important;
}

.read-btn::before,
.card-action a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.read-btn:hover::before,
.card-action a:hover::before {
  left: 130%;
}

.read-btn:hover, 
.card-body a.card-link:hover,
.card-action a:hover {
  background: linear-gradient(135deg, #ffffff, #b6faff) !important;
  color: #000000 !important;
  box-shadow: 0 0 26px rgba(0, 240, 255, 0.65) !important;
  transform: translateY(-2px) !important;
}

.read-btn:active, 
.card-body a.card-link:active {
  transform: scale(0.96) !important;
}

/* ---------- 6. Contact Page Modern Styling & Animations ---------- */
.page-header h1 {
  background: linear-gradient(90deg, #ffffff 0%, #00f0ff 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: contactTitleGlow 3.5s linear infinite;
  display: inline-block;
}

@keyframes contactTitleGlow {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 10px;
}

@media (min-width: 820px) {
  .contact-grid {
    grid-template-columns: 1fr 1.25fr;
    gap: 48px;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin-top: 6px;
}

/* Email Box Glowing Styling */
.email-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(0, 240, 255, 0.06);
  border: 1px solid var(--accent-2);
  border-radius: var(--radius);
  color: var(--accent-2) !important;
  font-weight: 600;
  font-family: var(--font-mono);
  font-size: 0.98rem;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
  transition: transform 0.25s var(--easing), box-shadow 0.25s var(--easing), background 0.25s var(--easing);
  width: fit-content;
}

.email-link:hover {
  transform: translateY(-3px) scale(1.02);
  background: rgba(0, 240, 255, 0.12);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.45);
  color: #ffffff !important;
}

/* Form Container */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--bg-elevated);
  padding: 32px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--easing);
}

.contact-form:focus-within {
  border-color: rgba(0, 240, 255, 0.35);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-display);
}

/* Inputs & Textarea Styling */
.form-control,
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-elevated-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s var(--easing), box-shadow 0.25s var(--easing), transform 0.25s var(--easing);
  box-sizing: border-box;
}

.form-control:focus,
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.25);
  transform: translateY(-1px);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

/* Send Message Button Animation */
.btn-cyan,
.contact-form button[type="submit"] {
  width: 100%;
  padding: 14px 24px;
  background: var(--accent-2) !important;
  color: #000000 !important;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.3);
  transition: transform 0.25s var(--easing), box-shadow 0.25s var(--easing), background 0.25s var(--easing);
  margin-top: 6px;
}

.btn-cyan:hover,
.contact-form button[type="submit"]:hover {
  background: #ffffff !important;
  box-shadow: 0 0 24px rgba(0, 240, 255, 0.6);
  transform: translateY(-2px);
}

.btn-cyan:active,
.contact-form button[type="submit"]:active {
  transform: scale(0.98);
}

.form-note, .form-success {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.form-success {
  display: none;
  color: #10b981;
  font-weight: 500;
}

/* ---------- 7. Responsive Fixes ---------- */
@media (max-width: 720px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   8. PREMIUM ARTICLE READING PAGE — glass panel, glow rails, drop cap
   ========================================================= */

/* Fix body vertical scrolling for desktop & laptops */
html, body {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  height: auto !important;
  min-height: 100vh;
}

/* Reading progress bar (fixed at very top, above header) */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-2), var(--accent-3));
  box-shadow: 0 0 10px var(--accent-2), 0 0 20px var(--accent-3);
  z-index: 1200;
  transition: width 0.1s linear;
}

/* Article Container — glass panel floating on the radial-glow background */
main.wrap,
.blog-post-content,
.blog-post-article {
  max-width: 820px !important;
  margin: 0 auto !important;
  padding: 48px 40px 80px !important;
  display: block !important;
  background: linear-gradient(180deg, rgba(18,20,29,0.6), rgba(18,20,29,0.35));
  border: 1px solid var(--border);
  border-radius: 22px;
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6), 0 0 40px rgba(0, 240, 255, 0.06);
  margin-top: 120px !important;
  position: relative;
  overflow: hidden;
}

/* Faint corner glow accents inside the article card */
main.wrap::before,
.blog-post-article::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0,240,255,0.16), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

main.wrap::after,
.blog-post-article::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(124,58,237,0.14), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

main.wrap > *, .blog-post-article > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  main.wrap,
  .blog-post-content,
  .blog-post-article {
    padding: 32px 22px 60px !important;
    border-radius: 16px;
  }
}

/* Main Article Title (H1) */
.blog-post-content h1, 
.blog-post-article h1 {
  font-size: 2.3rem !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  margin-bottom: 10px !important;
  background: linear-gradient(90deg, #ffffff 0%, #00f0ff 45%, #7c3aed 75%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: aiPulseGlow 6s linear infinite;
}

/* Thin glowing rule under the title */
.blog-post-content h1::after,
.blog-post-article h1::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin: 18px 0 30px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent-3));
  border-radius: 4px;
  box-shadow: 0 0 12px var(--accent-2);
}

/* Subtitles / Headings (H2) */
.blog-post-content h2, 
.blog-post-article h2 {
  font-size: 1.55rem !important;
  font-weight: 700 !important;
  margin-top: 42px !important;
  margin-bottom: 20px !important;
  color: #00f0ff !important;
  border-left: 3px solid #00f0ff;
  padding: 4px 0 4px 16px;
  line-height: 1.35 !important;
  position: relative;
  text-shadow: 0 0 16px rgba(0, 240, 255, 0.25);
  background: linear-gradient(90deg, rgba(0,240,255,0.08), transparent 70%);
  border-radius: 0 8px 8px 0;
}

/* Subheadings (H3) */
.blog-post-content h3, 
.blog-post-article h3 {
  font-size: 1.25rem !important;
  margin-top: 28px !important;
  margin-bottom: 14px !important;
  color: #ffffff !important;
}

/* Paragraphs Line Height & Gap Spacing */
.blog-post-content p, 
.blog-post-article p,
main.wrap p {
  font-size: 1.08rem !important;
  line-height: 1.9 !important;
  margin-bottom: 28px !important;
  color: var(--text-muted, #94a3b8) !important;
}

/* Drop cap on the very first paragraph for a premium editorial feel */
.blog-post-article p:first-of-type::first-letter,
.blog-post-content p:first-of-type::first-letter {
  float: left;
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.85;
  font-weight: 800;
  padding: 6px 10px 0 0;
  color: var(--accent-2);
  text-shadow: 0 0 18px rgba(0, 240, 255, 0.55);
}

/* List Items Spacing (for 1, 2, 3 numbered/bullet points) */
.blog-post-content li, 
.blog-post-article li {
  font-size: 1.05rem !important;
  line-height: 1.75 !important;
  margin-bottom: 12px !important;
  color: var(--text-muted, #cbd5e1) !important;
  position: relative;
  padding-left: 4px;
}

.blog-post-content ol, 
.blog-post-content ul,
.blog-post-article ol, 
.blog-post-article ul {
  margin-bottom: 28px !important;
  padding-left: 24px !important;
}

.blog-post-article ul li::marker,
.blog-post-content ul li::marker {
  color: var(--accent-2);
}

/* Bold inline emphasis gets a subtle glow so key terms pop */
.blog-post-article strong,
.blog-post-content strong {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.25);
}

/* Blockquotes, if the AI ever generates one — premium glass quote block */
.blog-post-article blockquote,
.blog-post-content blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--accent-2);
  background: rgba(0, 240, 255, 0.05);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--text);
}
