/* ── Leverage Card Widget ── */

.lvc-card {
  background: #F3F3F3;
  border: 1px solid #E7E7E7;
  border-radius: 20px;
  padding: 3rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Libre Franklin', sans-serif;
  box-sizing: border-box;
  width: 100%;
}

.lvc-display {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2.5rem;
  width: 100%;
}

.lvc-col {
  text-align: center;
}

.lvc-bar {
  border-radius: 8px 8px 0 0;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lvc-bar-left {
  height: 80px;
  width: 72px;
  background: linear-gradient(
    180deg,
    var(--lvc-left-top, #A5D633),
    var(--lvc-left-bottom, #84BD00)
  );
}

.lvc-bar-right {
  height: 240px;
  width: 72px;
  background: linear-gradient(
    180deg,
    var(--lvc-right-top, #E5006A),
    var(--lvc-right-bottom, #CE0056)
  );
}

.lvc-bar span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  color: #ffffff;
}

.lvc-label {
  font-size: 12px;
  font-weight: 600;
  color: #63666A;
  letter-spacing: 0.02em;
}

.lvc-arrow {
  font-size: 22px;
  color: #FEDD00;
  margin-bottom: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

/* Icon-Font (<i>) */
.lvc-arrow i {
  font-size: inherit;
  color: inherit;
}

/* SVG-Icons (Elementor SVG-Modus) */
.lvc-arrow svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
  display: block;
}

.lvc-arrow--animate {
  animation: lvcFloat 2s ease-in-out infinite;
}

@keyframes lvcFloat {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-6px); }
}

.lvc-ratio {
  margin-top: 2rem;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: #CE0056;
  line-height: 1;
}

.lvc-ratio small {
  display: block;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: #63666A;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
