/* Keeping Lowell in the Loop: consent banner + Facebook fallback
   Exact brand palette from the site CSS :root. */

.klw-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
  max-width: 40rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 1rem 1.25rem;
  background: #21425E;            /* Canal Navy */
  color: #F7F1E4;                 /* newsprint */
  border-radius: 8px;
  box-shadow: 0 24px 60px -18px rgba(24, 47, 68, 0.28);
  font-family: "Mulish", system-ui, sans-serif;
}

.klw-consent__text {
  margin: 0;
  flex: 1 1 16rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #D9CEB9;                 /* muted cream on navy */
}

.klw-consent__btns {
  display: flex;
  gap: 0.5rem;
  flex: 0 0 auto;
}

.klw-btn {
  font: inherit;
  font-weight: 700;
  padding: 0.6rem 1.15rem;
  border-radius: 8px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.klw-btn--primary {               /* matches the site .btn-primary */
  background: #B5512F;            /* Mill Brick */
  color: #ffffff;
}
.klw-btn--primary:hover { background: #8F3D22; transform: translateY(-1px); }

.klw-btn--ghost {                 /* matches the site .btn-light */
  background: transparent;
  color: #F7F1E4;
  border-color: rgba(247, 241, 228, 0.5);
}
.klw-btn--ghost:hover { background: #F7F1E4; color: #21425E; }

.klw-fb-fallback {
  display: inline-block;
  padding: 0.7rem 1.1rem;
  font-family: "Mulish", system-ui, sans-serif;
  font-weight: 700;
  color: #ffffff;
  background: #B5512F;
  border-radius: 8px;
  text-decoration: none;
}
.klw-fb-fallback:hover { background: #8F3D22; }
