.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 #cbd5e1;
  border-radius: 8px;
  padding: 14px;
  background: #ffffff;
  color: #17202a;
  box-shadow: 0 18px 50px rgb(15 23 42 / 0.2);
  font: 14px/1.45 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.adConsentBanner p {
  margin: 0;
  color: #475569;
}

.adConsentBanner a {
  display: inline-flex;
  margin-top: 6px;
  color: #14545f;
  font-weight: 750;
  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 #cbd5e1;
  border-radius: 8px;
  padding: 0 12px;
  background: #f8fafc;
  color: #17202a;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.adConsentActions button:last-child {
  border-color: #14545f;
  background: #14545f;
  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;
  }
}
