/* Academia to Industry — cookie/analytics consent banner */
.a2i-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  max-width: 720px;
  margin: 0 auto;
  background: #0f1d2e;
  color: #faf5ee;
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  display: none;
  flex-direction: column;
  gap: 14px;
  transform: translateY(120%);
  transition: transform 0.35s ease;
}
.a2i-consent.is-visible { display: flex; transform: translateY(0); }
.a2i-consent__text { margin: 0; color: rgba(250, 245, 238, 0.92); }
.a2i-consent__text strong { color: #fff; font-weight: 600; }
.a2i-consent__actions {
  display: flex;
  gap: 10px;
  align-self: flex-end;
  flex-wrap: wrap;
}
.a2i-consent__btn {
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.a2i-consent__btn--accept {
  background: #0d9488;
  color: #fff;
}
.a2i-consent__btn--accept:hover { background: #0b7a70; }
.a2i-consent__btn--decline {
  background: transparent;
  color: rgba(250, 245, 238, 0.85);
  border: 1px solid rgba(250, 245, 238, 0.35);
}
.a2i-consent__btn--decline:hover {
  color: #fff;
  border-color: rgba(250, 245, 238, 0.7);
}
@media (min-width: 640px) {
  .a2i-consent { flex-direction: row; align-items: center; gap: 22px; padding: 18px 24px; }
  .a2i-consent__text { flex: 1; }
  .a2i-consent__actions { align-self: auto; }
}
