.praxis-hinweis-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  background: rgba(20, 57, 61, 0.28);
}

.praxis-hinweis-overlay[hidden] {
  display: none;
}

.praxis-hinweis-dialog {
  width: min(560px, 100%);
  border: 1px solid var(--rule, #d8e7e7);
  border-radius: 8px;
  background: var(--surface, #ffffff);
  color: var(--ink, #14393d);
  box-shadow: 0 18px 50px rgba(20, 57, 61, 0.22);
}

.praxis-hinweis-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px 0;
}

.praxis-hinweis-title {
  margin: 0;
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.praxis-hinweis-close {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line, #d8e7e7);
  border-radius: 6px;
  background: transparent;
  color: var(--ink, #14393d);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.praxis-hinweis-close:hover,
.praxis-hinweis-close:focus-visible {
  border-color: var(--sage-dark, #006f78);
  outline: none;
}

.praxis-hinweis-body {
  padding: 14px 20px 20px;
}

.praxis-hinweis-body p {
  margin: 0 0 10px;
  color: var(--muted, #617174);
}

.praxis-hinweis-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.praxis-hinweis-link,
.praxis-hinweis-dismiss {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.praxis-hinweis-link {
  border: 1px solid var(--sage-dark, #006f78);
  background: var(--sage-dark, #006f78);
  color: #ffffff;
}

.praxis-hinweis-dismiss {
  border: 1px solid var(--line, #d8e7e7);
  background: transparent;
  color: var(--sage-dark, #006f78);
}

@media (min-width: 720px) {
  .praxis-hinweis-overlay {
    align-items: center;
    padding: 28px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .praxis-hinweis-dialog {
    animation: praxisHinweisIn 0.18s ease-out;
  }

  @keyframes praxisHinweisIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
