.external-embed-consent {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.external-embed-consent__inner {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 24px;
  text-align: center;
}
.external-embed-consent__inner strong,
.external-embed-consent__inner span {
  display: block;
}
.external-embed-consent__inner span {
  margin: 8px 0 16px;
}
.external-embed-consent--loaded {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  width: 100%;
  box-sizing: border-box;
  padding: 18px 20px;
  background: rgba(20,20,20,.97);
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 -4px 20px rgba(0,0,0,.25);
}
.cookie-banner__content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cookie-banner__text {
  flex: 1 1 auto;
}
.cookie-banner__text strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}
.cookie-banner__text p {
  margin: 4px 0;
}
.cookie-banner__text a {
  color: inherit;
  text-decoration: underline;
}
.cookie-banner__actions {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-banner__button {
  border: 0;
  border-radius: 5px;
  padding: 10px 18px;
  cursor: pointer;
  font: inherit;
}
@media (max-width: 700px) {
  .cookie-banner__content {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .cookie-banner__actions {
    justify-content: stretch;
  }
  .cookie-banner__button {
    flex: 1 1 auto;
  }
}
