/* Lambiek Cookie Consent Banner — brand colours: #f40 accent, #22384d text, #fdf6e1 bg */
#lmb-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #22384d;
  color: #fff;
  font-family: NewsCycleRegular, sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.35);
}
.lmb-consent-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
}
.lmb-consent-text {
  margin-bottom: 10px;
}
.lmb-consent-link {
  color: #ffb347;
  text-decoration: underline;
}
.lmb-consent-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}
.lmb-btn {
  display: inline-block;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-family: inherit;
  font-weight: 600;
  border-radius: 3px;
  cursor: pointer;
  border: 2px solid #f40;
  transition: background 0.15s, color 0.15s;
  min-width: 110px;
  text-align: center;
}
.lmb-btn-accept {
  background: #f40;
  color: #fff;
}
.lmb-btn-accept:hover {
  background: #e33;
  border-color: #e33;
}
.lmb-btn-reject {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.lmb-btn-reject:hover {
  background: rgba(255,255,255,0.15);
}
.lmb-btn-settings {
  background: transparent;
  color: #ccc;
  border-color: #aaa;
}
.lmb-btn-settings:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: #fff;
}
#lmb-consent-settings {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.lmb-consent-catlist {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}
.lmb-consent-catlist li {
  margin-bottom: 10px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
}
.lmb-consent-catlist input[type=checkbox] {
  margin-right: 6px;
  width: 15px;
  height: 15px;
  accent-color: #f40;
}
.lmb-consent-catlist label {
  color: #fff;
  cursor: pointer;
}
.lmb-consent-catlist small {
  display: block;
  color: #bbb;
  margin-top: 3px;
  font-size: 0.82rem;
}
@media (max-width: 600px) {
  .lmb-consent-buttons {
    flex-direction: column;
  }
  .lmb-btn {
    width: 100%;
  }
}
