/* ============================================================
   BLANCA — Vista White Card
============================================================ */

/* Panel de entrada para referido */
.entry-panel {
  padding: 24px 22px 28px;
  margin-bottom: 16px;
}

/* Error view */
.error-wrap {
  text-align: center;
  padding: 48px 24px;
}

.error-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(239,68,68,0.10);
  border: 1px solid rgba(239,68,68,0.20);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}

.error-icon svg {
  width: 28px; height: 28px;
  stroke: #EF4444;
  fill: none; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}

.error-title {
  font-family: var(--serif);
  font-size: 22px;
  color: white;
  margin-bottom: 10px;
}

.error-msg {
  font-size: 14px;
  color: rgba(255,255,255,0.50);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ── Desktop: layout split ── */
@media (min-width: 1024px) {
  #v-blanca.active {
    grid-template-columns: 55% 45%;
  }

  .blanca-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 48px 40px;
    border-right: 1px solid rgba(45,204,211,0.12);
    background: linear-gradient(160deg, rgba(0,84,121,0.04), rgba(45,204,211,0.02));
    min-height: calc(100dvh - 84px);
  }

  .blanca-left > * {
    width: 100%;
    max-width: 480px;
  }

  .blanca-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 48px 40px;
    overflow-y: auto;
    min-height: calc(100dvh - 84px);
  }

  .blanca-right > * {
    max-width: 440px;
    width: 100%;
  }

  .blanca-right .welcome-panel {
    order: -1;
  }
}
