/* Cookie consent banner — shared by landing, apply, legal, mini website */
.cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  max-width: 920px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: none;
}
.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-consent.is-hiding {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}
.cookie-consent__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(25, 83, 92, .14);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 16px 40px rgba(15, 23, 42, .14);
  backdrop-filter: blur(10px);
}
.cookie-consent__copy {
  flex: 1 1 280px;
  min-width: 0;
}
.cookie-consent__title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}
.cookie-consent__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #475569;
}
.cookie-consent__text a {
  color: #19535C;
  font-weight: 600;
  text-decoration: none;
}
.cookie-consent__text a:hover {
  text-decoration: underline;
}
.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 0 0 auto;
}
.cookie-consent__btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.cookie-consent__btn--ghost {
  background: #f1f5f9;
  color: #334155;
}
.cookie-consent__btn--ghost:hover {
  background: #e2e8f0;
}
.cookie-consent__btn--solid {
  background: #19535C;
  color: #fff;
}
.cookie-consent__btn--solid:hover {
  background: #12454d;
}
@media (max-width: 640px) {
  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .cookie-consent__actions {
    width: 100%;
  }
  .cookie-consent__btn {
    flex: 1 1 auto;
    text-align: center;
  }
}
