.ct-consent {
  position: fixed;
  z-index: 2147483000;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  color: #1f1a14;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ct-consent__inner {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 1rem;
  border: 1px solid #cdbfa9;
  border-radius: 12px;
  background: #fcfaf4;
  box-shadow: 0 18px 60px rgba(31, 26, 20, .22);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.ct-consent__copy h2 {
  margin: 0 0 .35rem;
  color: #1f1a14;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.25;
}

.ct-consent__copy p {
  margin: 0;
  color: #5a5147;
  font-size: .9rem;
  line-height: 1.5;
}

.ct-consent__copy a {
  color: #843923;
  text-underline-offset: 3px;
}

.ct-consent__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: .65rem;
}

.ct-consent__button {
  min-width: 120px;
  min-height: 44px;
  padding: .65rem 1rem;
  border: 1px solid #843923;
  border-radius: 8px;
  background: #fcfaf4;
  color: #843923;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.ct-consent__button:hover,
.ct-consent__button:focus-visible {
  background: #843923;
  color: #fff;
  outline: 2px solid #fff;
  outline-offset: -4px;
}

.legal-consent-button {
  min-height: 40px;
  padding: .45rem .75rem;
  border: 1px solid #843923;
  border-radius: 7px;
  background: transparent;
  color: #843923;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.legal-consent-button:hover,
.legal-consent-button:focus-visible {
  background: #843923;
  color: #fff;
}

@media (max-width: 760px) {
  .ct-consent {
    right: .5rem;
    bottom: .5rem;
    left: .5rem;
  }

  .ct-consent__inner {
    grid-template-columns: 1fr;
  }

  .ct-consent__actions {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .ct-consent__actions {
    grid-template-columns: 1fr;
  }
}
