.cookie-consent {
  position: fixed;
  z-index: 1000;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem 20px;
  color: #fff;
  background: rgba(5, 21, 37, .97);
  border-top: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 -12px 35px rgba(3, 16, 29, .24);
}

.cookie-consent__inner {
  width: min(1200px, 100%);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cookie-consent p {
  max-width: 980px;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: .9rem;
  line-height: 1.55;
}

.cookie-consent__accept {
  flex: 0 0 auto;
  min-width: 118px;
  padding: .72rem 1rem;
  border: 0;
  border-radius: 10px;
  color: #071a2f;
  background: #58ddd0;
  font: 800 .88rem/1 system-ui, sans-serif;
  cursor: pointer;
}

.cookie-consent__accept:hover {
  background: #79e7dc;
}

.cookie-consent__accept:focus-visible {
  outline: 3px solid #f4c66f;
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .cookie-consent {
    padding: .9rem 14px;
  }

  .cookie-consent__inner {
    align-items: stretch;
    flex-direction: column;
    gap: .8rem;
  }

  .cookie-consent p {
    font-size: .82rem;
  }

  .cookie-consent__accept {
    width: 100%;
  }
}
