/* ==============================================
   VMUG AMS 2026 — deck-specific styles
   Loaded after blue-boy.css. Only put overrides
   and one-off styles for this deck here.
   ============================================== */

/* Chevron row — process flow header (unused, keeping for reference) */
.chevron-row {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 0.5em;
}
.chevron {
  position: relative;
  padding: 0.25em 1.8em 0.25em 1.2em;
  font-family: 'Cartridge Bold', 'Cartridge', sans-serif;
  font-size: 0.5em;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  clip-path: polygon(0 0, calc(100% - 0.8em) 0, 100% 50%, calc(100% - 0.8em) 100%, 0 100%, 0.8em 50%);
}
.chevron:first-child {
  clip-path: polygon(0 0, calc(100% - 0.8em) 0, 100% 50%, calc(100% - 0.8em) 100%, 0 100%);
}
.chevron.green  { background: #2E8B57; }
.chevron.teal   { background: #00897B; }
.chevron.purple { background: #7B1FA2; }

/* Card color variants — Tanzu brand gradients */
.card.green  { background: linear-gradient(160deg, #23800A, #007B8C); }
.card.teal   { background: linear-gradient(160deg, #007B8C, #005C8A); }
.card.purple { background: linear-gradient(160deg, #6C4B94, #1B1D36); }
