/* ── DRV Button ── */

.drv-btn-wrap {
  position: relative;
  display: inline-block;
  max-width: fit-content!important;
  height: 62px;
}

@media screen and (max-width: 769px) {.drv-btn-wrap {
    min-width: 100%;
}}

/* Gradient-Rahmen via Cutout */
.drv-btn-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  transform: translate(0, 0);
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(90deg, #00A8DD 0%, #083163 100%);
  padding: 4px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition:
    transform  0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity    0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.drv-btn-wrap:hover::before {
  opacity: 0;
}

.drv-btn-wrap:focus-within::before {
  background: #6983A1;
  padding: 2px;
  opacity: 1;
}

/* ── Button (Elementor) ── */
.drv-btn-wrap .elementor-button,
.drv-btn-wrap a.drv-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 62px;
  background: var(--e-global-color-color_dunkelblau, #083163) !important;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  outline: none;
  z-index: 3;
  font-family: var(--e-global-typography-typo_fliesstext-font-family, Arial, sans-serif);
  font-size: var(--e-global-typography-typo_fliesstext-font-size, 16px);
  font-weight: var(--e-global-typography-typo_fliesstext-font-weight, 400);
  line-height: 150%;
  transition:
    box-shadow 0.3s,
    transform  0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 50px;
  transform: translate(-7px, -7px);
}

.drv-btn-wrap:hover .elementor-button,
.drv-btn-wrap:hover a.drv-btn {
  background: #083163 !important;
  box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.25);
  transform: translate(0, 0);
}

.drv-btn-wrap:focus-within .elementor-button,
.drv-btn-wrap:focus-within a.drv-btn {
  background: #083163 !important;
  box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.25);
  outline: none;
  transform: translate(0, 0);
}

.drv-btn-icon {
  margin-top: 4px;
}

/* ── Icon ── */
.drv-btn-wrap .elementor-button-icon svg,
.drv-btn-wrap .drv-btn-icon svg {
  width: 10px;
  height: 16px;
}

.drv-btn-wrap:hover .elementor-button-icon svg path,
.drv-btn-wrap:hover .drv-btn-icon svg path {
  stroke: var(--e-global-color-color_cyan, #00A8DD);
}

.elementor-button-icon {
	margin-left: 12px;
}