
/* Google Analytics consent banner */
.mc-cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 20px;
  background: #fff;
  color: #172033;
  border: 1px solid rgba(23, 32, 51, .12);
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0,0,0,.18);
  font-size: 14px;
  line-height: 1.5;
}
.mc-cookie-banner__text { flex: 1 1 auto; }
.mc-cookie-banner__text strong { display: block; margin-bottom: 4px; font-size: 16px; }
.mc-cookie-banner__text p { margin: 0; }
.mc-cookie-banner__actions { display: flex; flex: 0 0 auto; gap: 10px; }
.mc-cookie-btn {
  border: 0;
  border-radius: 9px;
  padding: 10px 16px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.mc-cookie-btn--primary { background: #0b63ce; color: #fff; }
.mc-cookie-btn--secondary { background: #eef2f7; color: #172033; }
@media (max-width: 700px) {
  .mc-cookie-banner { left: 12px; right: 12px; bottom: 12px; flex-direction: column; align-items: stretch; gap: 14px; }
  .mc-cookie-banner__actions { justify-content: stretch; }
  .mc-cookie-btn { flex: 1; }
}
