body.elementor-page-38058{margin:0% 3% 0% 3%;}/* Start custom CSS for html, class: .elementor-element-996a957 *//* ===== SCHRIFTGROSSEN — hier anpassen ===== */
:root {
  --btn-fs-desktop: 1.125rem;  /* 18px */
  --btn-fs-tablet:  1rem;      /* 16px */
  --btn-fs-mobile:  0.9375rem; /* 15px */
}

/* ===== WRAPPER ===== */
.custom-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: gap 0.3s ease;
}

/* ===== GRÜNER PILL ===== */
.custom-button__text {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background-color: #5fad00;
  color: #ffffff;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--btn-fs-desktop);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 0.3s ease,
              border-radius 0.3s ease,
              padding 0.3s ease;
}

/* ===== KREIS ===== */
.custom-button__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 2px solid #0f4c75;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: transparent;
  transition: background-color 0.3s ease,
              border 0.3s ease,
              border-radius 0.3s ease,
              width 0.3s ease,
              align-self 0.3s ease;
}

.custom-button__arrow svg {
  width: 25px;
  height: 25px;
  stroke: #0f4c75;
  stroke-width: 2;
  transition: stroke 0.3s ease;
}

.custom-button__arrow-diagonal { display: block; }
.custom-button__arrow-straight { display: none; }

/* ===== HOVER ===== */
.custom-button:hover {
  gap: 0;
}

.custom-button:hover .custom-button__text {
  background-color: #1487c9;
  border-radius: 50px 0 0 50px;
  padding-right: 20px;
}

.custom-button:hover .custom-button__arrow {
  background-color: #1487c9;
  border: none;
  border-radius: 0 50px 50px 0;
  width: 64px;
  height: auto;
  align-self: stretch;
}

.custom-button:hover .custom-button__arrow svg {
  stroke: #ffffff;
}

.custom-button:hover .custom-button__arrow-diagonal { display: none; }
.custom-button:hover .custom-button__arrow-straight { display: block; }

/* ===== TABLET ===== */
@media (max-width: 1024px) {
  .custom-button__text {
    font-size: var(--btn-fs-tablet);
  }
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {
  .custom-button__text {
    font-size: var(--btn-fs-mobile);
    padding: 12px 22px;
  }
}/* End custom CSS */