/* Cookie consent banner — liviolive.com
   Palette follows the site: ink #0d2235, lime #C7D92C, muted #a9bdd1. */

.livio-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background-color: #0d2235;
  border-top: 1px solid rgba(169, 189, 209, 0.24);
  padding: 16px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  font-family: inherit;
}

.livio-consent[hidden] { display: none; }

.livio-consent__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.livio-consent__text { flex: 1 1 auto; min-width: 0; }

.livio-consent__title {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 700;
}

.livio-consent__body {
  margin: 0;
  color: #a9bdd1;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.livio-consent__link { color: #c7d92c; text-decoration: underline; }

.livio-consent__actions { flex: 0 0 auto; display: flex; gap: 10px; }

/* Both buttons share one class on purpose. Accept and Reject must be equally
   easy to choose — a de-emphasised reject is what EU regulators treat as an
   invalid consent mechanism. */
.livio-consent__btn {
  min-width: 116px;
  padding: 10px 18px;
  border: 1px solid #c7d92c;
  border-radius: 999px;
  background-color: transparent;
  color: #c7d92c;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
}

.livio-consent__btn:hover { background-color: rgba(199, 217, 44, 0.12); }

.livio-consent__btn:focus-visible {
  outline: 2px solid #c7d92c;
  outline-offset: 2px;
}

@media (max-width: 720px) {
  .livio-consent__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .livio-consent__actions { display: grid; grid-template-columns: 1fr 1fr; }
  .livio-consent__btn { min-width: 0; width: 100%; }
}
