.adConsentBanner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 2147483000;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid #ead7dd;
  border-radius: 8px;
  padding: 14px;
  background: #fffdfb;
  color: #4d3c45;
  box-shadow: 0 18px 50px rgb(92 57 69 / 0.18);
  font: 14px/1.45 Nunito, "Avenir Next", ui-rounded, "SF Pro Rounded", "Segoe UI", system-ui, sans-serif;
}

.adConsentBanner strong {
  display: block;
  margin-bottom: 4px;
  color: #4d3c45;
  font-size: 15px;
}

.adConsentBanner p {
  margin: 0;
  color: #6f5f66;
}

.adConsentBanner a {
  display: inline-flex;
  margin-top: 6px;
  color: #b54674;
  font-weight: 850;
  text-decoration: none;
}

.adConsentBanner a:hover {
  text-decoration: underline;
}

.adConsentActions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.adConsentActions button {
  min-height: 38px;
  border: 1px solid #ead7dd;
  border-radius: 8px;
  padding: 0 12px;
  background: #fff8f5;
  color: #4d3c45;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.adConsentActions button:last-child {
  border-color: #b54674;
  background: #b54674;
  color: #ffffff;
}

.adConsentLink {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: inherit;
  text-decoration: none;
  cursor: pointer;
}

.adConsentLink:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .adConsentBanner {
    grid-template-columns: 1fr;
  }

  .adConsentActions {
    justify-content: stretch;
  }

  .adConsentActions button {
    flex: 1 1 160px;
  }
}
