/* 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;
  line-height: 1.12;
  margin: 0;
  background-image: var(--ve-gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ve-brand {
  gap: 12px;
  align-items: center;
}

.ve-brand__logo {
  margin: 0;
}

.ve-brand__logo img {
  border-radius: 12px;
}

.ve-main {
  padding: 28px 0 44px;
}

/* Homepage hero (uses core blocks so it stays editable in WP Site Editor) */
.ve-home-hero .ve-hero__inner {
  padding: 22px 0 30px;
}

.ve-home-hero .wp-block-columns {
  gap: 22px;
}

.ve-home-hero__image {
  margin: 0;
  display: grid;
  place-items: center;
}

.ve-home-hero__image img {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 18px;
  box-shadow: var(--ve-shadow-elevated);
}

.ve-home-hero__lead {
  margin-top: 12px;
  font-size: 18px;
  color: var(--wp--preset--color--muted-foreground);
}

.ve-home-hero .wp-block-buttons {
  margin-top: 16px;
  justify-content: center;
}

@media (max-width: 782px) {
  .ve-hero__title {
    line-height: 1.06;
  }

  .ve-home-hero .ve-hero__inner {
    padding: 16px 0 22px;
  }

  .ve-home-hero .wp-block-column {
    text-align: center;
  }

  .ve-home-hero__image img {
    max-width: 420px;
  }

  .ve-home-hero__lead {
    font-size: 16px;
  }
}

.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;
}


