/* FIX & CLEAN WOB cookie consent.
   Isolated file: it does not modify the existing website stylesheet. */
.fixwob-cookie-banner {
  position: fixed;
  z-index: 10000;
  right: 18px;
  bottom: 18px;
  left: 18px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.fixwob-cookie-card {
  width: min(1050px, 100%);
  margin: 0 auto;
  padding: 20px;
  color: #07152f;
  background: #ffffff;
  border: 1px solid #e5eaf2;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(5, 23, 51, 0.25);
}

.fixwob-cookie-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.fixwob-cookie-copy {
  flex: 1 1 auto;
}

.fixwob-cookie-title {
  display: block;
  margin-bottom: 7px;
  color: #043f8f;
  font-size: 19px;
  font-weight: 800;
}

.fixwob-cookie-copy p {
  margin: 0;
  color: #39445b;
  font-size: 14px;
  line-height: 1.55;
}

.fixwob-cookie-copy a {
  color: #043f8f;
  font-weight: 700;
  text-decoration: underline;
}

.fixwob-cookie-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

.fixwob-cookie-button {
  min-height: 44px;
  padding: 11px 17px;
  border: 2px solid #043f8f;
  border-radius: 9px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.fixwob-cookie-button--necessary {
  color: #043f8f;
  background: #ffffff;
}

.fixwob-cookie-button--accept {
  color: #ffffff;
  background: #043f8f;
}

.fixwob-cookie-button:focus-visible {
  outline: 3px solid rgba(227, 6, 19, 0.35);
  outline-offset: 2px;
}

@media (max-width: 760px) {
  .fixwob-cookie-banner {
    right: 10px;
    bottom: 72px;
    left: 10px;
  }

  .fixwob-cookie-card {
    padding: 16px;
    border-radius: 13px;
  }

  .fixwob-cookie-row,
  .fixwob-cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .fixwob-cookie-row {
    gap: 14px;
  }

  .fixwob-cookie-button {
    width: 100%;
  }
}
