/* Video Editor Clean theme CSS (small additions; core globals are in theme.json) */

:root {
  --ve-gradient-primary: linear-gradient(135deg, hsl(175 75% 40%) 0%, hsl(190 75% 45%) 100%);
  --ve-shadow-card: 0 4px 24px hsl(220 30% 20% / 0.08);
  --ve-shadow-elevated: 0 12px 40px hsl(220 30% 20% / 0.12);
}

.ve-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: hsl(0 0% 100% / 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid hsl(210 20% 88% / 0.6);
}

.ve-header__inner {
  padding: 14px 0;
}

.ve-brand__title a {
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: hsl(220 25% 15%);
}

.ve-nav a {
  color: hsl(220 15% 45%);
  text-decoration: none;
  font-weight: 500;
}

.ve-nav a:hover {
  color: hsl(175 75% 38%);
}

.ve-hero {
  background: linear-gradient(180deg, hsl(175 75% 38% / 0.06), transparent);
  border-bottom: 1px solid hsl(210 20% 88% / 0.5);
}

.ve-hero__inner {
  padding: 28px 0;
}

.ve-hero__title {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  background-image: var(--ve-gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ve-main {
  padding: 28px 0 44px;
}

.ve-post-card {
  background: hsl(0 0% 100%);
  border: 1px solid hsl(210 20% 88%);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--ve-shadow-card);
  margin-bottom: 16px;
}

.ve-footer {
  border-top: 1px solid hsl(210 20% 88% / 0.6);
  padding: 22px 0;
  color: hsl(220 15% 45%);
}

.ve-footer__text {
  margin: 0;
}


