/* Void Honk — Modernist design system custom CSS. All classes namespaced vh- */

.vh-grayscale img { filter: grayscale(1) contrast(1.08); }

.vh-play-wrap { position: relative; }
.vh-play-wrap::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: var(--wp--preset--color--accent);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
  z-index: 1;
}
.vh-play-wrap::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-42%, -50%);
  width: 0; height: 0;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent var(--wp--preset--color--base);
  z-index: 2;
  pointer-events: none;
}

.vh-tag {
  display: inline-flex; align-items: center; font-size: 11px;
  letter-spacing: 0.02em; padding: 3px 10px; border-radius: 0;
}
.vh-tag--accent  { background: var(--wp--preset--color--accent-100); color: var(--wp--preset--color--accent-800); }
.vh-tag--neutral { background: var(--wp--preset--color--neutral-100); color: var(--wp--preset--color--neutral-800); }
.vh-tag--outline { border: 1px solid var(--wp--preset--color--accent); color: var(--wp--preset--color--accent); background: transparent; }

.vh-rule { height: 2px; border: 0; background: var(--wp--preset--color--divider); margin: 16px 0; }

.vh-eyebrow {
  font-weight: 800; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--wp--preset--color--accent-700);
  margin-bottom: 26px; display: block;
}
.vh-kicker { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--wp--preset--color--accent); }

/* Hero */
.vh-hero { padding: 64px 0 48px; }
.vh-hero h1 { font-size: clamp(32px, 5vw, 56px); line-height: 1.1; letter-spacing: -0.02em; max-width: 15ch; }
.vh-hero .vh-intro { max-width: 60ch; opacity: .85; font-size: 17px; line-height: 1.6; }
.vh-tag-row { display: flex; gap: 8px; flex-wrap: wrap; }

/* Latest */
.vh-latest { padding: 48px 0; }
.vh-latest-figure { aspect-ratio: 16/9; background: var(--wp--preset--color--neutral-200); }
.vh-latest-caption { font-size: 11px; opacity: .55; margin-top: 8px; }
.vh-latest-meta { font-size: 12px; opacity: .5; }
.vh-latest h3 { font-size: 26px; line-height: 1.2; }
.vh-latest .vh-body { font-size: 15px; line-height: 1.6; opacity: .8; }

/* Query loop grid */
.vh-grid-section { padding: 48px 0 72px; }
.vh-card { background: var(--wp--preset--color--surface); padding: 12px; display: flex; flex-direction: column; gap: 8px; height: 100%; }
.vh-card figure { aspect-ratio: 4/3; }
.vh-card h3 { font-size: 17px; font-weight: 800; line-height: 1.2; }
.vh-card .wp-block-post-excerpt { font-size: 13px; opacity: .8; }
.vh-card-meta { display: flex; justify-content: space-between; font-size: 11px; opacity: .5; }

/* Footer */
.vh-footer { border-top: 2px solid var(--wp--preset--color--divider); }
.vh-footer-inner { max-width: 1200px; margin: 0 auto; padding: 32px clamp(20px,5vw,56px); display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px; }
.vh-footer-links a { font-size: 13px; text-decoration: none; color: inherit; margin-right: 16px; }
.vh-footer-tagline { font-size: 12px; opacity: .55; max-width: 32ch; }

@media (max-width: 700px) {
  .vh-latest .wp-block-columns { flex-direction: column; }
}
