/* volt_einladung – Frontend (v0.2.2) – Volt-Stil */
.volt-einladung
{
  --vp:#502379; --vr:#E63E12; --vy:#FDC220; --vb:#82D0F4; --vg:#1BBE6F;
  font-family: Ubuntu, Arial, sans-serif;
  max-width: 880px;
  margin: 0 auto;
  padding: 8px 0 4px;
}
/* Startseiten-Ankündigung (Teaser): mehr Abstand nach unten */
.volt-einladung.ve-teaser { margin-bottom: 48px; }
.volt-einladung .ve-band
{
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin: 0 0 18px;
  padding: 30px 200px 30px 34px;
  background: var(--vp);
  box-shadow: 0 14px 36px rgba(80,35,121,.22);
}
/* gelber Volt-Diagonale-Keil rechts (dekorativer Akzent) */
.volt-einladung .ve-band::after
{
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 170px;
  background: var(--vy);
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
.volt-einladung .ve-band-text { position: relative; z-index: 1; min-width: 0; }
.volt-einladung .ve-title
{
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 8px;
}
.volt-einladung .ve-sub { color: rgba(255,255,255,.93); line-height: 1.55; margin: 0; }
.volt-einladung .ve-band-art
{
  position: absolute;
  top: 50%; right: 24px;
  transform: translateY(-50%);
  width: 96px; height: 96px;
  z-index: 2;
}
.volt-einladung .ve-band-art svg { width: 100%; height: 100%; display: block; }
.volt-einladung .ve-cta-wrap { margin: 4px 0 8px; }
.volt-einladung .ve-cta
{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--vp);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 10px;
  padding: 13px 26px;
  transition: background .15s ease, transform .05s ease;
}
.volt-einladung .ve-cta span { transition: transform .15s ease; }
.volt-einladung .ve-cta:hover { background: var(--vg); }
.volt-einladung .ve-cta:hover span { transform: translateX(5px); }
.volt-einladung .ve-cta:active { transform: translateY(1px); }
.volt-einladung .ve-note
{
  color: #555;
  line-height: 1.5;
  font-size: 0.95rem;
  margin: 0 0 18px;
  padding-left: 14px;
  border-left: 3px solid var(--vy);
}

/* Hinweise / Meldungen */
.volt-einladung .ve-alert
{
  border-radius: 8px;
  padding: 12px 14px;
  margin: 0 0 16px;
  line-height: 1.45;
}
.volt-einladung .ve-ok  { background: #e8f8f0; border: 2px solid var(--vg); color: #0c6b40; }
.volt-einladung .ve-err { background: #fdeceA; border: 2px solid var(--vr); color: #9a2a10; }
.volt-einladung .ve-again a { color: var(--vp); font-weight: 700; text-decoration: none; }
.volt-einladung .ve-again a:hover { text-decoration: underline; }

/* Formular */
.volt-einladung .ve-form { display: block; }
.volt-einladung .ve-row { margin: 0 0 14px; }
.volt-einladung .ve-row2
{
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 14px;
}
.volt-einladung .ve-field { display: block; }
.volt-einladung .ve-field > span
{
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--vp);
  margin: 0 0 5px;
}
.volt-einladung .ve-field input
{
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 2px solid #cdbfe0;
  border-radius: 8px;
  font: inherit;
  color: #141414;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.volt-einladung .ve-field input:focus
{
  outline: none;
  border-color: var(--vp);
  box-shadow: 0 0 0 3px rgba(80,35,121,.15);
}

/* Honeypot – unsichtbar fuer Menschen */
.volt-einladung .ve-hp
{
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

/* Captcha */
.volt-einladung .ve-captcha
{
  display: grid;
  grid-template-columns: auto minmax(0,1fr);
  gap: 16px;
  align-items: end;
}
.volt-einladung .ve-captcha-img { display: flex; flex-direction: column; gap: 6px; }
.volt-einladung .ve-captcha-img img
{
  border: 2px solid #cdbfe0;
  border-radius: 8px;
  background: #fff;
  display: block;
}
.volt-einladung .ve-cap-reload
{
  border: none;
  background: none;
  color: var(--vp);
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  padding: 0;
  text-align: left;
}
.volt-einladung .ve-cap-reload:hover { color: var(--vr); text-decoration: underline; }

/* Aktion */
.volt-einladung .ve-actions
{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.volt-einladung .ve-submit
{
  background: var(--vp);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 26px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s ease, transform .05s ease;
}
.volt-einladung .ve-submit:hover { background: var(--vg); }
.volt-einladung .ve-submit:active { transform: translateY(1px); }
.volt-einladung .ve-hint { font-size: 0.8rem; color: #666; }

/* Band: ab schmal einspaltig, voll lila, Grafik aus */
@media (max-width: 680px)
{
  .volt-einladung .ve-band
  {
    background: var(--vp);
    padding: 24px 22px;
  }
  .volt-einladung .ve-band::after { display: none; }
  .volt-einladung .ve-band-art { display: none; }
  .volt-einladung .ve-title { font-size: 1.5rem; }
}

/* Handy */
@media (max-width: 560px)
{
  .volt-einladung .ve-row2 { grid-template-columns: minmax(0,1fr); }
  .volt-einladung .ve-captcha { grid-template-columns: minmax(0,1fr); }
  .volt-einladung .ve-title { font-size: 1.4rem; }
}
