/* ============================================
   VOLTGLASS WEBSITE STYLES
   ============================================
   
   Table of Contents:
   1. CSS Variables & Reset
   2. Layout & Grid System
   3. Header & Navigation
   4. Hero Section
   5. Cards & Content Blocks
   6. Buttons & Forms
   7. Gallery
   8. Footer
   9. Cookie Consent
   10. Responsive (Media Queries)
   
============================================ */

/* === 1. CSS VARIABLES & RESET === */

:root {
  --bg: #05070a;
  --bg-alt: #0a0d12;
  --bg-soft: #10141c;
  --text: #f5f5f7;
  --muted: #9ca3af;
  --border: #1f2933;
  --accent: #e52529; /* červená z loga */
  --accent-soft: rgba(229, 37, 41, 0.14);
  --nav-bg: rgba(5, 7, 10, 0.95); /* tmavé pozadí jako zbytek webu */
  --nav-text: #f5f5f7; /* světlý text */
  --nav-muted: #9ca3af;
  --nav-border: rgba(31, 41, 51, 0.8);
  --danger: #f97373;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);

  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: radial-gradient(circle at top, #0b1120 0, #020617 45%, #02040a 85%);
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='87' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25 0l25 14.43v28.87L25 57.73 0 43.3V14.43L25 0zm50 0l25 14.43v28.87L75 57.73 50 43.3V14.43L75 0z' fill='none' stroke='rgba(229, 37, 41, 0.08)' stroke-width='1.5'/%3E%3Cpath d='M0 43.3l25 14.43 25-14.43M50 43.3l25 14.43 25-14.43M0 14.43l25-14.43 25 14.43M50 14.43l25-14.43 25 14.43' fill='none' stroke='rgba(229, 37, 41, 0.08)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 100px 87px;
  background-position: 0 0;
  mask-image: 
    linear-gradient(to right, black 0%, black 12%, transparent 25%);
  -webkit-mask-image: 
    linear-gradient(to right, black 0%, black 12%, transparent 25%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='87' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25 0l25 14.43v28.87L25 57.73 0 43.3V14.43L25 0zm50 0l25 14.43v28.87L75 57.73 50 43.3V14.43L75 0z' fill='none' stroke='rgba(56, 189, 248, 0.08)' stroke-width='1.5'/%3E%3Cpath d='M0 43.3l25 14.43 25-14.43M50 43.3l25 14.43 25-14.43M0 14.43l25-14.43 25 14.43M50 14.43l25-14.43 25 14.43' fill='none' stroke='rgba(56, 189, 248, 0.08)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 100px 87px;
  background-position: 0 0;
  mask-image: 
    linear-gradient(to left, black 0%, black 12%, transparent 25%);
  -webkit-mask-image: 
    linear-gradient(to left, black 0%, black 12%, transparent 25%);
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

a {
  color: #38bdf8;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #7dd3fc;
}

/* === 2. LAYOUT & GRID SYSTEM === */

.vg-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.vg-container-wide {
  max-width: 1360px;
}

.vg-section {
  padding: 4rem 0;
}
.vg-section-header {
  margin-bottom: 2.5rem;
  text-align: left;
}

.vg-section-header h2 {
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.vg-section-header p {
  margin: 0;
  color: var(--muted);
}

.vg-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
}

.vg-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.vg-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

/* === 3. HEADER & NAVIGATION === */

.vg-header {
  background: linear-gradient(135deg, rgba(229, 37, 41, 0.1), rgba(56, 189, 248, 0.1));
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
  position: relative;
}

.vg-header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.vg-logo {
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--nav-text);
  transition: opacity 0.2s ease;
  padding: 0;
  display: block;
}

.vg-header-menu-toggle {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: transparent;
  color: var(--nav-text);
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.3s ease;
  opacity: 1;
}


.vg-header-menu-toggle:hover {
  background: rgba(229, 37, 41, 0.1);
  color: var(--accent);
}

.vg-logo:hover {
  opacity: 0.8;
}

.vg-logo img {
  height: 60px;
  width: auto;
  display: block;
}

.vg-nav {
  position: relative;
}

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

.vg-nav-list a {
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nav-muted);
  padding-bottom: 0.2rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.vg-nav-list a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* mobilní toggle */

.vg-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.vg-nav-toggle span {
  position: absolute;
  width: 1.3rem;
  height: 2px;
  border-radius: 999px;
  background: var(--nav-text);
  transition: transform 0.18s ease, opacity 0.18s ease, top 0.18s ease;
}

.vg-nav-toggle span:nth-child(1) {
  top: 0.85rem;
}
.vg-nav-toggle span:nth-child(2) {
  top: 1.15rem;
}
.vg-nav-toggle span:nth-child(3) {
  top: 1.45rem;
}

.vg-nav-toggle.is-open span:nth-child(1) {
  top: 1.15rem;
  transform: rotate(45deg);
}
.vg-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.vg-nav-toggle.is-open span:nth-child(3) {
  top: 1.15rem;
  transform: rotate(-45deg);
}

/* === MENU TOGGLE BUTTON === */

.vg-menu-toggle {
  position: fixed;
  top: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #e52529, #b91c1f);
  color: #ffffff;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(229, 37, 41, 0.4);
  z-index: 101;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
}

.vg-menu-toggle.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.vg-menu-toggle:hover {
  box-shadow: 0 6px 25px rgba(229, 37, 41, 0.6);
  transform: translateY(-2px);
}

.vg-menu-toggle:active {
  transform: translateY(0);
}

/* === SIDEBAR MENU === */

.vg-sidebar-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: #1a1a2e;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.vg-sidebar-menu.is-open {
  right: 0;
}

.vg-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid #2d2d44;
}

.vg-sidebar-header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #f5f5f7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vg-sidebar-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: none;
  background: transparent;
  color: #9ca3af;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}

.vg-sidebar-close:hover {
  background: rgba(229, 37, 41, 0.1);
  color: var(--accent);
}

.vg-sidebar-list {
  list-style: none;
  margin: 0;
  padding: 1rem 0;
}

.vg-sidebar-list li {
  margin: 0;
}

.vg-sidebar-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  border-left: 3px solid transparent;
}

.vg-sidebar-link:hover {
  background: rgba(229, 37, 41, 0.05);
  color: var(--accent);
  padding-left: 1.75rem;
  border-left-color: var(--accent);
}

.vg-sidebar-link.active {
  background: rgba(229, 37, 41, 0.1);
  color: var(--accent);
  border-left-color: var(--accent);
  font-weight: 600;
}

.vg-sidebar-link i {
  width: 1.25rem;
  margin-right: 0.5rem;
  opacity: 0.6;
  font-size: 0.85rem;
}

.vg-sidebar-link:hover i {
  opacity: 1;
}

.vg-sidebar-section {
  padding: 0;
}

.vg-sidebar-section:first-child {
  border-bottom: 1px solid #2d2d44;
}

.vg-sidebar-section-title {
  margin: 0;
  padding: 1rem 1.5rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
}

.vg-sidebar-list-pages {
  padding-bottom: 1.5rem;
}

.vg-sidebar-link-page {
  color: var(--accent);
  font-weight: 500;
}

.vg-sidebar-link-page i {
  opacity: 0.8;
}

.vg-sidebar-link-page:hover {
  background: rgba(229, 37, 41, 0.08);
}

/* === SIDEBAR OVERLAY === */

.vg-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.vg-sidebar-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* === SCROLL TO TOP BUTTON === */

.vg-scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #0b1120;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.4);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
}

.vg-scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.vg-scroll-top:hover {
  box-shadow: 0 6px 25px rgba(56, 189, 248, 0.6);
  transform: translateY(-2px);
}

.vg-scroll-top:active {
  transform: translateY(0);
}

/* === INTRO PAGE === */

.vg-intro {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.vg-intro-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}

.vg-intro-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 2rem 2rem 8vh;
  background: linear-gradient(180deg, rgba(2, 4, 10, 0) 0%, rgba(2, 4, 10, 0) 55%, rgba(2, 4, 10, 0.75) 100%);
}

.vg-intro-enter {
  animation: vg-intro-pulse 2.4s ease-in-out infinite;
}

@keyframes vg-intro-pulse {
  0%, 100% { box-shadow: 0 22px 50px rgba(56, 189, 248, 0.35); }
  50% { box-shadow: 0 22px 60px rgba(56, 189, 248, 0.65); }
}

@media (max-width: 640px) {
  .vg-intro-overlay {
    padding-bottom: 10vh;
  }
}

/* === HERO === */

.vg-hero {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
  padding: 3.5rem 0 4.5rem;
}

.vg-hero-media {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
}

.vg-hero-media img,
.vg-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vg-hero-content {
  max-width: none;
}

.vg-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent);
  margin: 0 0 1.2rem;
}

.vg-hero-content h1 {
  font-size: clamp(2.5rem, 3.3vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 1.5rem;
}

.vg-subtitle {
  margin: 0 0 2.4rem;
  color: var(--muted);
  font-size: 1rem;
}

.vg-hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.vg-scroll-hint {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding-left: 1.6rem;
}

/* === 5. CARDS & CONTENT BLOCKS === */

.vg-scroll-hint::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28rem;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 0 0 6px rgba(148, 163, 184, 0.13);
}

/* === KARTY, LISTY, IKONY === */

.vg-card {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.9));
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.15);
  padding: 1.5rem 1.6rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.8);
}

.vg-card-tech {
  border-color: rgba(229, 37, 41, 0.6);
  box-shadow: 0 20px 45px rgba(229, 37, 41, 0.25);
}

.vg-card-benefits {
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.9), 0 0 40px rgba(56, 189, 248, 0.25);
}

.vg-card h3,
.vg-card h4 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.vg-card p {
  margin-top: 0;
  color: var(--muted);
}

.vg-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.vg-tag-soft {
  background: rgba(148, 163, 184, 0.18);
  color: var(--muted);
}

.vg-lead {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.9rem;
}

.vg-list {
  padding-left: 1.1rem;
  margin: 0.3rem 0 0;
  color: var(--muted);
}

.vg-list li + li {
  margin-top: 0.25rem;
}

.vg-list-badges {
  list-style: none;
  padding-left: 0;
}

.vg-list-badges li {
  position: relative;
  padding-left: 1.4rem;
}

.vg-list-badges li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  border: 2px solid var(--accent);
}

.vg-list-checks {
  list-style: none;
  padding-left: 0;
}

.vg-list-checks li {
  position: relative;
  padding-left: 1.5rem;
}

.vg-list-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.75rem;
  color: var(--accent);
}

.vg-icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.vg-icon-item {
  font-size: 0.78rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.32);
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.25), transparent 70%);
}

/* === METRICS BAR === */

.vg-metrics {
  background: linear-gradient(135deg, rgba(229, 37, 41, 0.1), rgba(56, 189, 248, 0.1));
  border-top: 1px solid rgba(229, 37, 41, 0.2);
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
  padding: 2rem 0;
}

.vg-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.vg-metric-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.vg-metric-label {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .vg-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .vg-metric-value {
    font-size: 1.5rem;
  }
}

/* === CLAIMS === */

.vg-claims-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

@media (max-width: 1024px) {
  .vg-claims-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .vg-claims-grid {
    grid-template-columns: 1fr;
  }
}

.vg-claim {
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.5);
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.1);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.vg-claim:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 37, 41, 0.3);
}

.vg-claim-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.vg-claim h3 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.vg-claim p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .vg-claim {
    padding: 1rem;
  }
  .vg-claim-icon {
    font-size: 2rem;
  }
  .vg-claim h3 {
    font-size: 1.1rem;
  }
}

/* === PARTNER CARDS === */

.vg-partner-card {
  padding: 2rem;
  background: rgba(15, 23, 42, 0.6);
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.15);
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.vg-partner-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 37, 41, 0.4);
}

.vg-partner-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.vg-partner-card h3 {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.vg-partner-card p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.vg-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s ease;
}

.vg-link:hover {
  gap: 0.75rem;
}

/* === COMPACT GALLERY === */

.vg-gallery-compact {
  padding: 1.5rem 0;
}

.vg-gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1rem;
  margin-top: 0;
}

.vg-gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 16 / 10;
}

.vg-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.vg-gallery-grid a:hover img {
  transform: scale(1.08);
}

@media (max-width: 1024px) {
  .vg-gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .vg-gallery-grid {
    grid-template-columns: 1fr !important;
  }
}

/* === TIMELINE === */

.vg-timeline {
  margin-top: 2.5rem;
  padding: 1.5rem 1.6rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.85);
}

.vg-timeline h3 {
  margin: 0 0 1rem;
}

.vg-timeline ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vg-timeline li {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  color: var(--muted);
  position: relative;
  padding-left: 0.8rem;
}

.vg-timeline li + li {
  margin-top: 0.45rem;
}

.vg-timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}

.vg-timeline-date {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
}

/* === MAPA & GALERIE === */

.vg-map-placeholder {
  margin-top: 0.7rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(148, 163, 184, 0.45);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.vg-map-europe {
  margin-top: 1.1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.8);
  position: relative;
}

.vg-map-europe iframe {
  display: block;
  width: 100%;
  min-height: 260px;
  border: 0;
}

.vg-map-marker-cz {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #e52529;
  box-shadow: 0 0 0 6px rgba(229, 37, 41, 0.35);
  /* přibližná pozice ČR v daném výřezu mapy */
  left: 52%;
  top: 46%;
  transform: translate(-50%, -50%);
}

.vg-gallery {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0.7rem;
}

.vg-gallery img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.vg-gallery-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vg-gallery-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vg-gallery-wide img,
.vg-gallery-strip img {
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.vg-gallery-wide img:hover,
.vg-gallery-strip img:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.85);
  opacity: 0.98;
}

/* === TÝM === */

.vg-team-grid .vg-card {
  text-align: left;
}

.vg-team-grid p {
  color: var(--muted);
}

.vg-mission {
  margin-top: 2rem;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.16), rgba(15, 23, 42, 0.9));
}

.vg-card-with-icon {
  position: relative;
  padding-top: 1.9rem;
}

.vg-card-icon {
  position: absolute;
  top: -1.2rem;
  left: 50%;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #020617;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.9);
  font-size: 1.1rem;
  transform: translateX(-50%);
}

.vg-card-icon-svg {
  width: 1.4rem;
  height: 1.4rem;
  stroke: var(--accent);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* === PRODUCT TEASER === */

.vg-teaser {
  height: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.24), rgba(15, 23, 42, 0.98));
  color: var(--muted);
}

/* === FORMULÁŘ & BUTTON === */

.vg-form {
  max-width: 600px;
}

.vg-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.3rem;
}

.vg-form-row label,
.vg-form legend {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.vg-form input[type="email"] {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.8);
  padding: 0.65rem 1rem;
  font-size: 0.92rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.vg-form input[type="email"]::placeholder {
  color: rgba(148, 163, 184, 0.7);
}

.vg-form input[type="email"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.55);
  background: #020617;
}

.vg-checkbox-group {
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 1rem 1rem 0.75rem;
  background: var(--bg-soft);
}

.vg-checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text);
}

.vg-checkbox-group input[type="checkbox"] {
  accent-color: var(--accent);
}

.vg-checkbox-group label + label {
  margin-top: 0.4rem;
}

.vg-button {
  appearance: none;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.7);
  background: radial-gradient(circle at top, #38bdf8, #0ea5e9);
  color: #0b1120;
  padding: 0.6rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(56, 189, 248, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.vg-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(56, 189, 248, 0.5);
}

.vg-button:active {
  transform: translateY(0);
  box-shadow: 0 10px 32px rgba(56, 189, 248, 0.35);
}

.vg-button-investor {
  background: linear-gradient(135deg, #e52529, #b91c1f);
  border-color: rgba(229, 37, 41, 0.7);
  box-shadow: 0 18px 40px rgba(229, 37, 41, 0.4);
  color: #ffffff;
}

.vg-button-investor:hover {
  box-shadow: 0 22px 50px rgba(229, 37, 41, 0.5);
}

.vg-button-investor:active {
  box-shadow: 0 10px 32px rgba(229, 37, 41, 0.35);
}

/* === DOPLŇKY === */

.vg-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.vg-document-link {
  color: #38bdf8;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

.vg-document-link:hover {
  color: #7dd3fc;
  text-decoration: underline;
}

.vg-infoletak-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.vg-infoletak-page {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.vg-infoletak-page::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.vg-infoletak-page:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.vg-infoletak-page:hover::after {
  opacity: 1;
}

.vg-infoletak-page a {
  display: block;
  position: relative;
}

.vg-infoletak-page a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}

.vg-infoletak-page:hover a::before {
  background: rgba(0, 0, 0, 0.2);
}

.vg-infoletak-page img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .vg-infoletak-container {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

.vg-highlight {
  margin-top: 1rem;
  color: var(--accent);
}

.vg-benefit-heading {
  margin-top: 1rem;
}

/* === KONTAKT === */

.vg-address {
  margin-top: 1.5rem;
  color: var(--muted);
}

.vg-address h3 {
  margin-bottom: 0.35rem;
}

/* === FOOTER === */

.vg-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding: 1.3rem 0 1.6rem;
  background: #020617;
  color: var(--muted);
  font-size: 0.82rem;
}

.vg-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.vg-footer-left {
  flex: 1;
}

.vg-footer-logo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.vg-footer-logo img {
  height: 60px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.vg-footer-logo img:hover {
  opacity: 1;
}

.vg-footer p {
  margin: 0.25rem 0;
}

.vg-footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0 0.8rem;
}

.vg-footer-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.2);
  transition: all 0.2s ease;
}

.vg-footer-icon-link:hover {
  background: rgba(229, 37, 41, 0.15);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.vg-footer-icon-link i {
  font-size: 1rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.vg-footer-icon-link:hover i {
  color: var(--accent);
}

/* === ANIMACE SEKCI === */

.vg-section-hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.vg-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVITA === */

@media (max-width: 1024px) {
  .vg-container {
    padding-inline: 2rem;
  }

  .vg-hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 4.5rem;
    padding-inline: 2rem;
  }

  .vg-hero-media {
    order: -1;
    max-width: 620px;
    margin: 0 auto 2.5rem;
  }

  .vg-hero-content {
    max-width: 100%;
  }
}

@media (max-width: 860px) {
  .vg-grid-2 {
    grid-template-columns: 1fr;
  }
  .vg-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .vg-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vg-container {
    padding-inline: 2.2rem;
  }

  .vg-hero {
    padding-inline: 2.2rem;
  }

  .vg-section-header h2 {
    font-size: 1.9rem;
  }

  .vg-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .vg-header-inner {
    padding-inline: 1rem;
  }

  .vg-nav-toggle {
    display: inline-flex;
  }

  .vg-nav-list {
    position: absolute;
    top: 110%;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.85rem 1rem;
    background: rgba(15, 23, 42, 0.98);
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.9);
    min-width: 14rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.15s ease, transform 0.15s ease;
  }

  .vg-nav-list.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .vg-section {
    padding: 3.5rem 0;
  }

  .vg-container {
    padding-inline: 1.5rem;
  }

  .vg-sidebar-menu {
    width: 280px;
    right: -280px;
  }

  .vg-header-menu-toggle {
    right: 1.5rem;
  }

  .vg-menu-toggle {
    top: 1.5rem;
    right: 1.5rem;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1rem;
  }

  .vg-scroll-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1rem;
  }

  .vg-section-header {
    text-align: center;
  }

  .vg-section-header h2 {
    font-size: 1.6rem;
    letter-spacing: 0.04em;
  }

  .vg-section-header p {
    font-size: 0.9rem;
  }

  .vg-grid-3 {
    grid-template-columns: 1fr;
  }
  .vg-grid-4 {
    grid-template-columns: 1fr;
  }

  .vg-gallery {
    grid-template-columns: 1fr;
  }

  .vg-gallery-strip {
    grid-template-columns: 1fr;
  }

  .vg-hero {
    min-height: auto;
    padding: 2.5rem 1.5rem 3rem;
    gap: 2rem;
  }

  .vg-hero-content h1 {
    font-size: 2rem;
    text-align: center;
  }

  .vg-eyebrow {
    text-align: center;
  }

  .vg-subtitle {
    text-align: center;
    font-size: 0.95rem;
  }

  .vg-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
  }

  .vg-hero-actions .vg-button {
    width: 100%;
  }

  .vg-card {
    padding: 1.3rem 1.4rem;
  }

  .vg-card h3 {
    font-size: 1.15rem;
  }

  .vg-form {
    max-width: 100%;
  }

  .vg-button {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
  }

  .vg-mission {
    margin-top: 1.5rem;
  }

  .vg-footer {
    text-align: center;
  }

  .vg-footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .vg-footer-logo {
    justify-content: center;
    order: -1;
    margin-bottom: 1rem;
  }

  .vg-footer-logo img {
    height: 50px;
  }

  .vg-footer-social {
    justify-content: center;
  }
}

/* === COOKIE CONSENT === */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(2, 6, 23, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-consent-content {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-consent-text {
  flex: 1;
}

.cookie-consent-text h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--text);
}

.cookie-consent-text p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.cookie-link {
  color: #38bdf8;
  text-decoration: underline;
}

.cookie-link:hover {
  color: #7dd3fc;
}

.cookie-consent-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #0b1120;
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
}

.cookie-btn-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(56, 189, 248, 0.4);
}

.cookie-btn-reject {
  background: rgba(148, 163, 184, 0.15);
  color: var(--muted);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.cookie-btn-reject:hover {
  background: rgba(148, 163, 184, 0.25);
  color: var(--text);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.cookie-btn-settings:hover {
  background: rgba(148, 163, 184, 0.1);
  color: var(--text);
}

@media (max-width: 860px) {
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .cookie-consent-actions {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .cookie-consent {
    padding: 1.2rem;
  }

  .cookie-consent-text h3 {
    font-size: 1rem;
  }

  .cookie-consent-text p {
    font-size: 0.85rem;
  }
}

/* === LANGUAGE SWITCHER === */

.vg-header-right {
  position: absolute;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vg-lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.4rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--nav-muted);
  background: transparent;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.vg-lang-switch .flag {
  font-size: 1.1rem;
  line-height: 1;
}

.vg-lang-switch:hover {
  color: var(--nav-text);
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  .vg-lang-switch span:not(.flag) {
    display: none;
  }
  
  .vg-lang-switch {
    padding: 0.4rem;
  }
}

/* === BLOG STYLES === */

.vg-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.vg-blog-card {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vg-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.vg-blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.vg-blog-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.vg-blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.vg-blog-card:hover .vg-blog-card-image img {
  transform: scale(1.05);
}

.vg-blog-card-content {
  padding: 1.5rem;
}

.vg-blog-card-date {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

.vg-blog-card-title {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  line-height: 1.3;
  color: var(--text);
}

.vg-blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.vg-blog-card-readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  transition: gap 0.2s ease;
}

.vg-blog-card:hover .vg-blog-card-readmore {
  gap: 0.75rem;
}

/* Blog Article */
.vg-blog-article-header {
  margin-bottom: 2rem;
}

.vg-blog-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  transition: color 0.2s ease;
}

.vg-blog-back:hover {
  color: var(--accent);
}

.vg-blog-article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.vg-blog-article-category {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vg-blog-article-header h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0 0 1.5rem;
}

.vg-blog-article-lead {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.vg-blog-article-image {
  margin: 2rem 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.vg-blog-article-image img {
  width: 100%;
  height: auto;
  display: block;
}

.vg-blog-article-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}

.vg-blog-article-content h2 {
  font-size: 1.75rem;
  margin: 2.5rem 0 1rem;
  color: var(--text);
}

.vg-blog-article-content h3 {
  font-size: 1.3rem;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

.vg-blog-article-content p {
  margin: 0 0 1.25rem;
}

.vg-blog-article-content ul,
.vg-blog-article-content ol {
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
}

.vg-blog-article-content li {
  margin-bottom: 0.5rem;
}

.vg-blog-article-cta {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin: 3rem 0;
  text-align: center;
}

.vg-blog-article-cta h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.vg-blog-article-cta p {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.vg-blog-article-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.vg-blog-article-share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.vg-blog-article-share span {
  font-size: 0.9rem;
  color: var(--muted);
}

.vg-blog-article-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--muted);
  transition: all 0.2s ease;
}

.vg-blog-article-share a:hover {
  background: var(--accent);
  color: white;
}

@media (max-width: 768px) {
  .vg-blog-article-header h1 {
    font-size: 1.75rem;
  }
  
  .vg-blog-article-lead {
    font-size: 1.05rem;
  }
  
  .vg-blog-article-content {
    font-size: 1rem;
  }
  
  .vg-blog-article-content h2 {
    font-size: 1.4rem;
  }
}

/* Blog Preview (compact version for homepage) */
.vg-blog-preview {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.vg-blog-preview-link {
  display: block;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vg-blog-preview-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.vg-blog-preview-image {
  aspect-ratio: 2 / 1;
  overflow: hidden;
}

.vg-blog-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.vg-blog-preview-link:hover .vg-blog-preview-image img {
  transform: scale(1.03);
}

.vg-blog-preview-content {
  padding: 1rem 1.25rem;
}

.vg-blog-preview-date {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0 0 0.25rem;
}

.vg-blog-preview-title {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  line-height: 1.3;
  color: var(--text);
}

.vg-blog-preview-all {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
}

.vg-blog-preview-all:hover {
  text-decoration: underline;
}
