/* ---------- GLOBAL RESET, VARIABLES ---------- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      font-size: 16px;
      scroll-behavior: smooth;
    }
    body {
      line-height: 1.5;
      transition: background-color 0.2s ease, color 0.2s ease;
    }
    /* Light theme (default) */
    body, .light-mode {
      --bg-primary: #f9fafc;
      --bg-secondary: #ffffff;
      --bg-card: #ffffff;
      --text-primary: #0b1c33;
      --text-secondary: #2d3a4f;
      --text-meta: #5b6c7e;
      --border-light: #e2e8f0;
      --accent: #0a7c7c; /* teal – AI vibe */
      --accent-soft: #dcfce7;
      --accent-hover: #0b6b6b;
      --card-shadow: 0 8px 20px -6px rgba(0,0,0,0.02);
      --header-bg: rgba(255,255,255,0.8);
      --footer-bg: #ffffff;
      --trend-bg: #f1f6fa;
      --pagination-bg: #ffffff;
      --modal-overlay: rgba(0,0,0,0); /* No blur, fully transparent overlay */
      --modal-bg: #ffffff;
      color-scheme: light;
    }
    /* Dark theme */
    .dark body {
      --bg-primary: #0b121c;
      --bg-secondary: #16202c;
      --bg-card: #1e2a36;
      --text-primary: #edf2f7;
      --text-secondary: #d1dce6;
      --text-meta: #a0b3c6;
      --border-light: #334150;
      --accent: #6cd4c5;
      --accent-soft: #1f4949;
      --accent-hover: #a0e6db;
      --card-shadow: 0 18px 28px -12px rgba(0,0,0,0.4);
      --header-bg: rgba(15, 25, 35, 0.85);
      --footer-bg: #0f1a24;
      --trend-bg: #1e2a36;
      --pagination-bg: #1e2a36;
      --modal-overlay: rgba(0,0,0,0); /* No blur, fully transparent */
      --modal-bg: #1e2a36;
      color-scheme: dark;
    }
    body {
      background-color: var(--bg-primary);
      color: var(--text-primary);
      backdrop-filter: blur(0);
    }
    /* container */
    .container {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    @media (max-width: 640px) {
      .container { padding: 0 1.25rem; }
    }
    a { text-decoration: none; color: inherit; }

    /* ---------- HEADER (domain: Latest AI Prompts) ---------- */
    header {
      background: var(--header-bg);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-light);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .header-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.9rem 0;
    }
    .logo-area {
      display: flex;
      align-items: center;
      gap: 0.7rem;
    }
    .logo-icon {
      font-size: 2rem;
      color: var(--accent);
    }
    .logo-text {
      font-weight: 800;
      font-size: 1.6rem;
      letter-spacing: -0.02em;
    }
    .logo-span {
      color: var(--accent);
      background: linear-gradient(145deg, #0a7c7c, #24b3b3);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .nav-links {
      display: flex;
      gap: 2.2rem;
      font-weight: 600;
    }
    .nav-links a { color: var(--text-secondary); transition: color 0.15s; }
    .nav-links a:hover, .nav-links a.active { color: var(--accent); }
    
    /* theme toggle */
    .theme-toggle {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: 40px;
      padding: 0.4rem 0.6rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      cursor: pointer;
    }
    .theme-toggle i {
      font-size: 1.1rem;
      color: var(--text-secondary);
      padding: 0.25rem 0.3rem;
      border-radius: 30px;
    }
    .theme-toggle i.active-theme {
      background: var(--accent);
      color: white;
    }
    .mobile-menu-icon {
      display: none;
      font-size: 1.6rem;
      color: var(--text-primary);
    }

    /* ----- MOBILE SIDEBAR (slide bar) – fully working ----- */
    .mobile-sidebar-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      backdrop-filter: blur(4px);
      z-index: 300;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s;
    }
    .mobile-sidebar {
      position: fixed;
      top: 0;
      left: -280px;
      width: 280px;
      height: 100%;
      background: var(--bg-card);
      border-right: 1px solid var(--border-light);
      box-shadow: 4px 0 20px rgba(0,0,0,0.1);
      z-index: 350;
      transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      padding: 2rem 1.8rem;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
    .mobile-sidebar.open {
      left: 0;
    }
    .mobile-sidebar-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .sidebar-close {
      font-size: 1.6rem;
      align-self: flex-end;
      cursor: pointer;
      color: var(--text-meta);
    }
    .sidebar-nav {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      list-style: none;
    }
    .sidebar-nav li a {
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--text-secondary);
    }
    .sidebar-nav li a:hover { color: var(--accent); }

    /* ---------- SEARCH BUTTON + MODAL (no blur, upward position, search button) ---------- */
    .search-header-btn {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: 40px;
      padding: 0.4rem 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      cursor: pointer;
      color: var(--text-secondary);
      transition: all 0.2s;
    }
    .search-header-btn:hover {
      border-color: var(--accent);
      color: var(--accent);
    }
    .search-header-btn i {
      font-size: 1rem;
    }
    /* Modal overlay - NO BLUR, transparent background */
    .search-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: transparent; /* no overlay, no blur */
      pointer-events: none; /* allow clicking through overlay, but modal content captures events */
      z-index: 1000;
      align-items: flex-start; /* align to top */
      justify-content: center;
    }
    .search-modal.active {
      display: flex;
    }
    /* Modal content - positioned slightly upward from middle, absolutely positioned */
    .modal-content {
      background: var(--modal-bg);
      border-radius: 32px;
      padding: 1.8rem 2rem;
      max-width: 600px;
      width: 90%;
      box-shadow: var(--card-shadow);
      border: 1px solid var(--border-light);
      position: relative;
      margin-top: 15vh; /* slightly upward from middle (15% from top) */
      pointer-events: auto; /* capture clicks inside modal */
    }
    .modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.2rem;
    }
    .modal-header h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text-primary);
    }
    .modal-close {
      font-size: 1.8rem;
      cursor: pointer;
      color: var(--text-meta);
      transition: color 0.2s;
      line-height: 1;
    }
    .modal-close:hover {
      color: var(--accent);
    }
    /* Search input + button row */
    .search-row {
      display: flex;
      gap: 0.8rem;
      align-items: center;
      margin-bottom: 0.8rem;
    }
    .search-modal-input {
      flex: 1;
      padding: 1rem 1.2rem;
      border-radius: 60px;
      border: 1px solid var(--border-light);
      background: var(--bg-primary);
      color: var(--text-primary);
      font-size: 1rem;
    }
    .search-modal-input:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 2px var(--accent-soft);
    }
    /* Search action button */
    .search-action-btn {
      background: var(--accent);
      color: white;
      border: none;
      border-radius: 60px;
      padding: 1rem 1.8rem;
      font-weight: 700;
      font-size: 1rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      cursor: pointer;
      transition: background 0.2s;
      white-space: nowrap;
    }
    .search-action-btn:hover {
      background: var(--accent-hover);
    }
    .modal-hint {
      color: var(--text-meta);
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      margin-left: 0.3rem;
    }

    /* ---------- HERO / DOMAIN SPECIFIC ---------- */
    .hero-feed {
      padding: 2.2rem 0 1rem;
    }
    .hero-title {
      font-size: 2.8rem;
      font-weight: 750;
      line-height: 1.15;
    }
    .hero-desc {
      font-size: 1.3rem;
      color: var(--text-secondary);
      max-width: 700px;
      margin-top: 0.5rem;
    }
    .badge {
      background: var(--accent-soft);
      color: var(--accent);
      padding: 0.25rem 1rem;
      border-radius: 40px;
      font-size: 0.9rem;
      font-weight: 700;
    }

    /* ---------- BLOG CARDS – STATIC: <a> + <article> with blog-image, blog-meta, read more ---------- */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      gap: 2rem 1.8rem;
      margin-bottom: 2rem;
    }

    .blog-card-link {
      display: block;
      transition: transform 0.25s ease, box-shadow 0.25s;
      border-radius: 24px;
      text-decoration: none;
      color: inherit;
    }
    .blog-card-link:hover {
      transform: translateY(-6px);
    }

    .blog-card {
      background: var(--bg-card);
      border-radius: 24px;
      border: 1px solid var(--border-light);
      overflow: hidden;
      transition: border-color 0.2s, box-shadow 0.2s;
      box-shadow: var(--card-shadow);
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .blog-card-link:hover .blog-card {
      border-color: var(--accent);
      box-shadow: 0 24px 32px -12px rgba(10,124,124,0.12);
    }

    .blog-image {
      width: 100%;
      aspect-ratio: 1.91 / 1; /* 16:9 */
      background-color: var(--trend-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      border-bottom: 1px solid var(--border-light);
      overflow: hidden;
    }
    .blog-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .blog-content {
      padding: 1.6rem 1.5rem 1.5rem;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .blog-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--text-meta);
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.4px;
      margin-bottom: 0.7rem;
    }
    .blog-category {
      color: var(--accent);
      font-weight: 700;
      background: var(--accent-soft);
      padding: 0.2rem 0.8rem;
      border-radius: 40px;
      font-size: 0.7rem;
      text-transform: uppercase;
    }
    .blog-content h3 {
      font-size: 1.4rem;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 0.6rem;
      color: var(--text-primary);
    }
    .blog-content p {
      color: var(--text-secondary);
      font-size: 0.95rem;
      margin-bottom: 1.2rem;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .read-more {
      font-weight: 700;
      color: var(--accent);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: auto;
      border-top: 1px dashed var(--border-light);
      padding-top: 0.9rem;
      transition: gap 0.2s;
    }
    .read-more i {
      font-size: 0.8rem;
    }
    .blog-card-link:hover .read-more {
      gap: 0.8rem;
    }

    /* ---------- PAGINATION (dynamic with 6 cards per page + filter/search integration) ---------- */
    .pagination-container {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 3.5rem 0 1.5rem;
    }
    .pagination {
      display: flex;
      gap: 0.4rem;
      background: var(--pagination-bg);
      padding: 0.5rem 0.8rem;
      border-radius: 60px;
      border: 1px solid var(--border-light);
      box-shadow: var(--card-shadow);
      flex-wrap: wrap;
      justify-content: center;
    }
    .page-item {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      height: 40px;
      border-radius: 40px;
      font-weight: 600;
      color: var(--text-secondary);
      transition: all 0.15s;
      cursor: pointer;
    }
    .page-item.active {
      background: var(--accent);
      color: white;
    }
    .page-item:not(.active):hover {
      background: var(--accent-soft);
      color: var(--accent);
    }
    .page-dots {
      color: var(--text-meta);
      padding: 0 0.2rem;
    }
    .pagination-info {
      text-align: center;
      margin-top: 1rem;
      color: var(--text-meta);
      font-size: 0.9rem;
    }

    /* ---------- TRENDING / SUGGESTED - minimal, keep ai prompts ---------- */
    .two-column-layout {
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 2.5rem;
      margin: 3rem 0 2rem;
    }
    .trending-list {
      background: var(--trend-bg);
      border-radius: 28px;
      padding: 1.5rem;
    }
    .trend-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0.7rem 0;
      border-bottom: 1px solid var(--border-light);
    }
    .trend-item:last-child { border-bottom: none; }
    .trend-rank {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--accent);
      opacity: 0.7;
      min-width: 40px;
    }
    .trend-title {
      font-weight: 700;
      font-size: 1.1rem;
    }
    .suggested-scroll {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .suggested-card-mini {
      background: var(--bg-card);
      padding: 1rem 1.2rem;
      border-radius: 20px;
      border: 1px solid var(--border-light);
    }
    /* mobile adjustments */
    @media (max-width: 1024px) {
      .two-column-layout { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .nav-links, .theme-toggle span { display: none; }
      .mobile-menu-icon { display: block; }
      .hero-title { font-size: 2.1rem; }
      .logo-text { font-size: 1.4rem; }
      .card-grid { grid-template-columns: 1fr; }
      .search-header-btn span { display: none; }
      .search-header-btn { padding: 0.4rem; }
      /* Adjust search row for mobile */
      .search-row {
        flex-wrap: wrap;
      }
      .search-action-btn {
        width: 100%;
        justify-content: center;
      }
    }

    /* footer */
    /* footer {
      margin-top: 4.5rem;
      background: var(--footer-bg);
      border-top: 1px solid var(--border-light);
      padding: 3rem 0 2rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.2fr;
      gap: 2.5rem;
    }
    .footer-copyright {
      text-align: center;
      margin-top: 3rem;
      color: var(--text-meta);
    }
    @media (max-width: 768px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .footer-grid { grid-template-columns: 1fr; }
    } */

    /* ==============================
   PREMIUM HOME FOOTER
================================ */

footer {
  margin-top: 4.5rem;
  background: linear-gradient(180deg, var(--footer-bg), rgba(0,0,0,0.02));
  border-top: 1px solid var(--border-light);
  padding: 3.5rem 0 2.2rem;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

/* COLUMN */
.footer-col {
  display: flex;
  flex-direction: column;
}

/* LOGO */
.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
}

.footer-logo-accent {
  color: var(--accent);
}

.footer-brand p {
  margin-top: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
  max-width: 340px;
}

/* HEADINGS */
.footer-col h4 {
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

/* Underline animation */
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.footer-col h4:hover::after {
  width: 75px;
}

/* LIST */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.7rem;
}

.footer-col li a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-block;
}

.footer-col li a:hover {
  color: var(--accent);
  transform: translateX(6px);
}

/* BOTTOM */
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-meta);
}

.footer-bottom a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
}

.footer-bottom a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* ==============================
   RESPONSIVE
================================ */

/* Tablet */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-col {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
  }

  .footer-col:last-child {
    border-bottom: none;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-col h4::after {
    width: 65px;
  }
}


/* CONTACT SECTION */

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.footer-contact i {
  color: var(--accent);
  font-size: 0.9rem;
  min-width: 18px;
}

.footer-contact a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: 0.25s;
}

.footer-contact a:hover {
  color: var(--accent);
}


    /* hide cards on different pages / filter */
    .blog-card-link.hidden-card {
      display: none !important;
    }
    /* No results */
    .no-results {
      text-align: center;
      padding: 3rem;
      color: var(--text-meta);
      display: none;
    }
    .no-results i {
      font-size: 3rem;
      margin-bottom: 1rem;
      color: var(--border-light);
    }


    /* ---------- ENHANCED HERO SECTION ---------- */
.hero-feed {
  padding: 3rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge-wrapper {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.badge {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 0.4rem 1.2rem;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.3px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(10,124,124,0.2);
}

.badge-update {
  background: var(--bg-card);
  color: var(--text-secondary);
  padding: 0.4rem 1.2rem;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border-light);
}

.badge-update i {
  font-size: 0.8rem;
  color: var(--accent);
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  position: relative;
}

.hero-emoji {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 2.8rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.hero-desc {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.hero-highlight {
  color: var(--accent);
  font-weight: 700;
  background: linear-gradient(145deg, var(--accent-soft), transparent);
  padding: 0.1rem 0.3rem;
  border-radius: 8px;
}

.hero-cta {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}

.hero-btn-primary {
  background: var(--accent);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 60px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s;
  border: 2px solid var(--accent);
  box-shadow: 0 8px 16px -6px rgba(10,124,124,0.2);
}

.hero-btn-primary:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(10,124,124,0.3);
}

.hero-btn-secondary {
  background: var(--bg-card);
  color: var(--text-secondary);
  padding: 0.9rem 2rem;
  border-radius: 60px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s;
  border: 2px solid var(--border-light);
}

.hero-btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  background: var(--accent-soft);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-top: 1.5rem;
  padding: 1.2rem 1.8rem;
  background: var(--bg-card);
  border-radius: 60px;
  border: 1px solid var(--border-light);
  width: fit-content;
  backdrop-filter: blur(8px);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-meta);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 30px;
  background: var(--border-light);
}

/* Hero visual cards grid */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-card);
  border-radius: 32px;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 380px;
  position: relative;
  backdrop-filter: blur(10px);
}

.hero-card {
  background: var(--bg-primary);
  padding: 1.2rem 0.8rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border-light);
  transition: all 0.3s;
  color: var(--text-secondary);
}

.hero-card i {
  font-size: 1.8rem;
  color: var(--accent);
  transition: all 0.3s;
}

.hero-card span {
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}

.hero-card:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  transform: translateY(-4px);
}

.hero-card:hover i {
  transform: scale(1.1);
  color: var(--accent-hover);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-visual {
    display: flex;
    justify-content: flex-end;
  }
}

@media (max-width: 768px) {
  .hero-feed {
    padding: 2rem 0 1rem;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-content {
    order: 1;
    text-align: center;
    align-items: center;
  }
  
  .hero-badge-wrapper {
    justify-content: center;
  }
  
  .hero-title {
    font-size: 2.4rem;
    text-align: center;
  }
  
  .hero-emoji {
    font-size: 2rem;
  }
  
  .hero-desc {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
    width: 100%;
  }
  
  .hero-visual {
    order: 2;
    justify-content: center;
  }
  
  .hero-card-grid {
    max-width: 100%;
  }
  
  .stat-number {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-badge-wrapper {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    padding: 1rem;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .hero-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Make blog thumbnail show full original image */
.blog-image {
  height: auto !important;        /* Remove fixed height */
  aspect-ratio: auto !important;  /* Remove forced 16:9 ratio if applied */
  overflow: visible;
}

.blog-image img {
  width: 100%;
  height: auto !important;        /* Maintain original ratio */
  object-fit: contain !important; /* Prevent cropping */
  display: block;
}
