/* Cookie consent banner — GDPR accept/dismiss (molecule level) */

.m-cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  background-color: #212529;
  color: #f8f9fa;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
}

.m-cookie-consent-text {
  font-size: 0.875rem;
  line-height: 1.4;
  max-width: 600px;
  text-align: center;
}

.m-cookie-consent-text a {
  color: #adb5bd;
  text-decoration: underline;
}

.m-cookie-consent-text a:hover {
  color: #f8f9fa;
}

.m-cookie-consent--hidden {
  display: none;
}

.m-cookie-consent--dismissing {
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
