/*
Theme Name: VenMundo Awwwards Hero
Theme URI: https://www.venmundo.org/
Author: VenMundo
Author URI: https://www.venmundo.org/
Description: Tema editorial de alto impacto para WordPress, con diseño estilo Awwwards inspirado en la diáspora venezolana. Combina un hero cinemático en modo oscuro con acentos tricolor y dorados, y un canvas de lectura de artículos en fondo blanco con tipografía de máxima legibilidad editorial.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: venmundo-hero
Tags: blog, news, editorial, clean, modern, accessibility-ready, custom-colors, custom-menu, featured-images, responsive-layout, translation-ready
*/

/* ==========================================================================
   CSS VARIABLES & DESIGN TOKENS
   ========================================================================== */
:root {
  /* Venezuelan Brand Colors */
  --vm-yellow: #FFCC00;
  --vm-yellow-hover: #FFB300;
  --vm-blue: #00247D;
  --vm-red: #CF142B;
  
  /* Dark Hero & Navigation Palette */
  --vm-navy-950: #050A14;
  --vm-navy-900: #0A1329;
  --vm-navy-800: #0F1C3F;
  --vm-navy-700: #1E293B;
  --vm-navy-border: rgba(255, 204, 0, 0.2);
  --vm-gold-glow: rgba(255, 204, 0, 0.4);
  
  /* Pristine Reading Canvas (Editorial White) */
  --vm-read-bg: #FFFFFF;
  --vm-read-surface: #F8FAFC;
  --vm-read-text: #1E293B;
  --vm-read-text-muted: #64748B;
  --vm-read-text-dim: #94A3B8;
  --vm-read-border: #E2E8F0;
  --vm-read-border-light: #F1F5F9;
  
  /* Typography */
  --vm-font-heading: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --vm-font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --vm-font-serif: 'Source Serif 4', Georgia, serif;
  
  /* Layout Dimensions */
  --vm-container-max: 1240px;
  --vm-reading-max: 820px;
  --vm-header-height: 80px;
}

/* ==========================================================================
   GLOBAL BASE RESETS
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--vm-read-surface);
  color: var(--vm-read-text);
  font-family: var(--vm-font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: #0052CC;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--vm-yellow-hover);
}

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

/* Tricolor Top Bar */
.vm-tricolor-accent {
  height: 4px;
  background: linear-gradient(90deg, #FFCC00 0% 33.3%, #00247D 33.3% 66.6%, #CF142B 66.6% 100%);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

/* ==========================================================================
   HEADER & FLOATING NAVIGATION
   ========================================================================== */
.vm-site-header {
  background: rgba(5, 10, 20, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 4px;
  z-index: 999;
  transition: all 0.3s ease;
}

.vm-header-inner {
  max-width: var(--vm-container-max);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vm-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.vm-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.vm-logo-text {
  font-family: var(--vm-font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.vm-logo-text span {
  color: var(--vm-yellow);
}

.vm-nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
  align-items: center;
}

.vm-nav-menu a {
  color: #CBD5E1;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.vm-nav-menu a:hover,
.vm-nav-menu .current-menu-item > a {
  color: var(--vm-yellow);
}

.vm-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Button Component */
.vm-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.35rem;
  font-family: var(--vm-font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: 9999px;
  text-decoration: none;
  background: linear-gradient(135deg, #FFCC00 0%, #FFB300 100%);
  color: #050A14 !important;
  box-shadow: 0 4px 18px rgba(255, 204, 0, 0.35);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

.vm-btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 204, 0, 0.55);
}

/* ==========================================================================
   AWWWARDS-LEVEL ARTICLE HERO (DARK MODE)
   ========================================================================== */
.vm-post-hero {
  background-color: var(--vm-navy-950);
  background-image: 
    radial-gradient(circle at top right, rgba(0, 36, 125, 0.4) 0%, transparent 60%),
    radial-gradient(circle at bottom left, rgba(255, 204, 0, 0.08) 0%, transparent 40%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  padding: 4.5rem 1.5rem 3.5rem;
  border-bottom: 1px solid rgba(255, 204, 0, 0.15);
}

.vm-post-hero-inner {
  max-width: var(--vm-reading-max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Breadcrumbs */
.vm-breadcrumbs {
  font-size: 0.85rem;
  color: #94A3B8;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.vm-breadcrumbs a {
  color: #94A3B8;
}

.vm-breadcrumbs a:hover {
  color: var(--vm-yellow);
}

.vm-breadcrumbs-sep {
  opacity: 0.5;
}

/* Category Pill */
.vm-hero-category {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 204, 0, 0.12);
  border: 1px solid rgba(255, 204, 0, 0.35);
  color: var(--vm-yellow);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

/* Hero Title */
.vm-hero-title {
  font-family: var(--vm-font-heading);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 1.5rem;
  color: #FFFFFF;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.vm-hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.6;
  color: #CBD5E1;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* Hero Meta Row */
.vm-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vm-author-block {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.vm-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--vm-yellow);
  object-fit: cover;
}

.vm-author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #FFFFFF;
  display: block;
}

.vm-author-role {
  font-size: 0.8rem;
  color: #94A3B8;
  display: block;
}

.vm-post-stats {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: #94A3B8;
}

.vm-post-stat-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.vm-post-stat-icon {
  color: var(--vm-yellow);
}

/* ==========================================================================
   FEATURED IMAGE BACKDROP OR BANNER
   ========================================================================== */
.vm-featured-media-wrap {
  max-width: var(--vm-container-max);
  margin: -2.5rem auto 3rem;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

.vm-featured-media-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--vm-navy-900);
}

.vm-featured-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.vm-featured-caption {
  padding: 0.85rem 1.5rem;
  background: #0A1329;
  font-size: 0.85rem;
  color: #94A3B8;
  font-style: italic;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   PRISTINE READING CANVAS (EDITORIAL WHITE)
   ========================================================================== */
.vm-reading-layout {
  max-width: var(--vm-container-max);
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 60px 1fr 300px;
  gap: 3rem;
  align-items: start;
}

/* Sticky Share Bar */
.vm-sticky-share {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.vm-share-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid var(--vm-read-border);
  color: #475569;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  cursor: pointer;
}

.vm-share-btn:hover {
  transform: translateY(-2px);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.vm-share-btn.twitter:hover { background: #000000; border-color: #000000; }
.vm-share-btn.whatsapp:hover { background: #25D366; border-color: #25D366; }
.vm-share-btn.facebook:hover { background: #1877F2; border-color: #1877F2; }
.vm-share-btn.linkedin:hover { background: #0A66C2; border-color: #0A66C2; }
.vm-share-btn.copy:hover { background: #0052CC; border-color: #0052CC; }

/* Article Body Typography */
.vm-article-canvas {
  background: var(--vm-read-bg);
  padding: 3.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--vm-read-border);
  min-width: 0;
}

.vm-entry-content {
  font-family: var(--vm-font-body);
  font-size: 1.125rem;
  line-height: 1.85;
  color: var(--vm-read-text);
}

.vm-entry-content p {
  margin: 0 0 1.75rem;
}

/* Headings inside content */
.vm-entry-content h2 {
  font-family: var(--vm-font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 2.75rem 0 1.25rem;
  color: #0F172A;
  position: relative;
  padding-bottom: 0.5rem;
}

.vm-entry-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--vm-yellow);
}

.vm-entry-content h3 {
  font-family: var(--vm-font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 2.25rem 0 1rem;
  color: #0F172A;
}

.vm-entry-content h4 {
  font-family: var(--vm-font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 1.75rem 0 0.75rem;
  color: #1E293B;
}

/* Blockquotes with Tricolor touch */
.vm-entry-content blockquote {
  margin: 2.5rem 0;
  padding: 1.75rem 2rem;
  background: #F8FAFC;
  border-left: 4px solid var(--vm-yellow);
  border-radius: 0 12px 12px 0;
  font-size: 1.2rem;
  line-height: 1.7;
  font-style: italic;
  color: #334155;
  position: relative;
}

.vm-entry-content blockquote cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 1rem;
  color: #0F172A;
}

/* Lists */
.vm-entry-content ul, .vm-entry-content ol {
  margin: 0 0 1.75rem;
  padding-left: 1.75rem;
}

.vm-entry-content li {
  margin-bottom: 0.65rem;
}

/* Tables */
.vm-entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
}

.vm-entry-content th, .vm-entry-content td {
  padding: 0.85rem 1rem;
  border: 1px solid var(--vm-read-border);
  text-align: left;
}

.vm-entry-content th {
  background: #F1F5F9;
  font-weight: 700;
  color: #0F172A;
}

/* Callout Box */
.vm-callout-box {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.vm-callout-box.info {
  background: #EFF6FF;
  border-color: #BFDBFE;
}

/* Tags Box */
.vm-post-tags {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--vm-read-border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.vm-tag-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: #64748B;
  margin-right: 0.5rem;
}

.vm-tag-pill {
  background: #F1F5F9;
  color: #475569;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.vm-tag-pill:hover {
  background: var(--vm-yellow);
  color: #050A14;
}

/* Author Bio Card */
.vm-author-box {
  margin-top: 3rem;
  padding: 2rem;
  background: #F8FAFC;
  border: 1px solid var(--vm-read-border);
  border-radius: 16px;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.vm-author-box-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid var(--vm-yellow);
  flex-shrink: 0;
  object-fit: cover;
}

.vm-author-box-name {
  font-family: var(--vm-font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 0.4rem;
  color: #0F172A;
}

.vm-author-box-bio {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* Next / Prev Post Navigation */
.vm-post-nav {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.vm-post-nav-card {
  padding: 1.25rem;
  background: #F8FAFC;
  border: 1px solid var(--vm-read-border);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: block;
}

.vm-post-nav-card:hover {
  border-color: var(--vm-yellow);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.vm-nav-dir {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 800;
  color: #94A3B8;
  display: block;
  margin-bottom: 0.3rem;
}

.vm-nav-post-title {
  font-family: var(--vm-font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.4;
  margin: 0;
}

/* ==========================================================================
   SIDEBAR WIDGETS
   ========================================================================== */
.vm-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.vm-widget {
  background: var(--vm-read-bg);
  padding: 1.75rem;
  border-radius: 16px;
  border: 1px solid var(--vm-read-border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.vm-widget-title {
  font-family: var(--vm-font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.vm-widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--vm-yellow);
}

/* Newsletter Widget Card */
.vm-newsletter-widget {
  background: linear-gradient(135deg, #0A1329 0%, #0F1C3F 100%);
  color: #FFFFFF;
  border-color: rgba(255, 204, 0, 0.2);
}

.vm-newsletter-widget .vm-widget-title {
  color: #FFFFFF;
}

.vm-newsletter-desc {
  font-size: 0.88rem;
  color: #CBD5E1;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.vm-input-field {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.vm-input-field::placeholder {
  color: #94A3B8;
}

/* ==========================================================================
   RELATED ARTICLES GRID (3 COLUMNS)
   ========================================================================== */
.vm-related-section {
  background: #F8FAFC;
  padding: 4rem 1.5rem;
  border-top: 1px solid var(--vm-read-border);
}

.vm-related-inner {
  max-width: var(--vm-container-max);
  margin: 0 auto;
}

.vm-section-heading-wrap {
  text-align: center;
  margin-bottom: 2.5rem;
}

.vm-section-badge {
  font-size: 0.8rem;
  font-weight: 800;
  color: #0052CC;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
  display: block;
}

.vm-section-title {
  font-family: var(--vm-font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: #0F172A;
  margin: 0;
}

.vm-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.vm-article-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--vm-read-border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.vm-article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 204, 0, 0.5);
}

.vm-card-thumb-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.vm-card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vm-article-card:hover .vm-card-thumb {
  transform: scale(1.05);
}

.vm-card-category-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(5, 10, 20, 0.85);
  color: var(--vm-yellow);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.vm-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.vm-card-date {
  font-size: 0.8rem;
  color: #94A3B8;
  margin-bottom: 0.5rem;
}

.vm-card-title {
  font-family: var(--vm-font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 0.75rem;
  color: #0F172A;
}

.vm-card-excerpt {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.6;
  margin: 0 0 1.25rem;
  flex-grow: 1;
}

.vm-card-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0052CC;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.vm-card-link:hover {
  color: var(--vm-yellow-hover);
}

/* ==========================================================================
   COMMENTS SECTION
   ========================================================================== */
.vm-comments-wrap {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--vm-read-border);
}

.vm-comments-title {
  font-family: var(--vm-font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: #0F172A;
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
}

.comment-body {
  padding: 1.5rem;
  background: #F8FAFC;
  border: 1px solid var(--vm-read-border);
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.comment-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.comment-author .fn {
  font-weight: 700;
  color: #0F172A;
}

.comment-metadata {
  font-size: 0.8rem;
  color: #94A3B8;
}

/* ==========================================================================
   FOOTER (MIDNIGHT NAVY)
   ========================================================================== */
.vm-site-footer {
  background: var(--vm-navy-950);
  color: #CBD5E1;
  border-top: 1px solid rgba(255, 204, 0, 0.15);
  padding: 4.5rem 1.5rem 2rem;
}

.vm-footer-inner {
  max-width: var(--vm-container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.vm-footer-brand-title {
  font-family: var(--vm-font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: #FFFFFF;
  margin: 0 0 1rem;
}

.vm-footer-brand-title span {
  color: var(--vm-yellow);
}

.vm-footer-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #94A3B8;
  margin-bottom: 1.5rem;
}

.vm-footer-h4 {
  font-family: var(--vm-font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 1.25rem;
}

.vm-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.vm-footer-links a {
  color: #94A3B8;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.vm-footer-links a:hover {
  color: var(--vm-yellow);
}

.vm-footer-bottom {
  max-width: var(--vm-container-max);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #64748B;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .vm-reading-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .vm-sticky-share {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .vm-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .vm-header-nav-wrap {
    display: none;
  }
  
  .vm-article-canvas {
    padding: 2rem 1.25rem;
  }
  
  .vm-post-nav {
    grid-template-columns: 1fr;
  }
  
  .vm-footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .vm-hero-title {
    font-size: 1.85rem;
  }
}
