/* Gravferdguiden voice widget — dignified, mobile-first, no animation.
   Palette: petroleum #0d4a4e, gold #e6bd55, line #e4e8ec. */

.gfgvl-widget {
  margin: 24px 0;
  max-width: 760px;
}

.gfgvl-sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 12px 18px;
  border: 1px solid #e6bd55;
  border-radius: 10px;
  background: #0d4a4e;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(13, 74, 78, 0.28);
  max-width: min(280px, calc(100vw - 32px));
  text-align: left;
}

.gfgvl-sticky-cta:hover,
.gfgvl-sticky-cta:focus-visible {
  background: #0b3f43;
  outline: 2px solid #e6bd55;
  outline-offset: 2px;
}

.gfgvl-sticky-cta-sub {
  font-size: 12px;
  font-weight: 400;
  color: #d7e4e3;
}

/* Keep clear of the ElevenLabs launcher bubble (bottom-right by default)
   on small screens by anchoring our CTA bottom-left there. */
@media (max-width: 640px) {
  .gfgvl-sticky-cta {
    left: 12px;
    right: auto;
    bottom: 12px;
    padding: 10px 14px;
    font-size: 14px;
  }
}

@media print {
  .gfgvl-sticky-cta {
    display: none;
  }
}
