.r3-consent-banner {
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: none;
  max-width: 820px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid #dce3ef;
  border-radius: 16px;
  background: #fff;
  color: #071437;
  box-shadow: 0 18px 55px rgba(7, 20, 55, .2);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.r3-consent-banner[data-visible="true"] {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.r3-consent-copy strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.r3-consent-copy p {
  margin: 0;
  color: #46536f;
  font-size: 13px;
  line-height: 1.5;
}

.r3-consent-copy a {
  color: #0101ce;
  font-weight: 700;
}

.r3-consent-actions {
  display: flex;
  gap: 8px;
}

.r3-consent-actions button,
.r3-cookie-preferences {
  font: inherit;
  cursor: pointer;
}

.r3-consent-actions button {
  min-height: 42px;
  padding: 9px 16px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 800;
}

.r3-consent-reject {
  border: 1px solid #aeb8c9;
  background: #fff;
  color: #46536f;
}

.r3-consent-accept {
  border: 1px solid #0101ce;
  background: #0101ce;
  color: #fff;
}

.r3-cookie-preferences {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 680px) {
  .r3-consent-banner[data-visible="true"] {
    grid-template-columns: 1fr;
  }

  .r3-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
