/* ===== KALKULATOR ===== */

.calc {
  background: white;
  position: relative;
  overflow: hidden;
}

.calc::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 15% 50%,
      rgba(126, 201, 107, 0.07) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 85% 30%,
      rgba(74, 140, 66, 0.08) 0%,
      transparent 55%
    );
  pointer-events: none;
}

/* HEADER */
.calc__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-xl);
  align-items: end;
  margin-bottom: var(--space-xl);
}

/* DESCRIPTION */
.calc__desc {
  max-width: 260px;
  color: black;
}

/* EMBED */
.calc__embed {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .calc__header {
    grid-template-columns: 1fr;
  }
}
