/* Footer – MARTIN Lysiane, Fabienne */

.sle-footer__grid {
  align-items: flex-start;
}

.sle-footer__column {
  font-size: var(--text-sm);
}

.sle-footer__brand p {
  color: rgba(249, 250, 251, 0.88);
}

.sle-footer__disclaimer {
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  color: rgba(249, 250, 251, 0.75);
}

.sle-footer__text {
  margin-bottom: var(--space-2);
  color: rgba(249, 250, 251, 0.85);
}

.sle-footer__list {
  margin: 0;
  padding-left: 1.25rem;
  color: rgba(249, 250, 251, 0.85);
}

.sle-footer__list li {
  margin-bottom: 0.25rem;
}

.sle-footer__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.sle-footer__label {
  color: rgba(249, 250, 251, 0.85);
}

.sle-footer__input {
  background-color: rgba(15, 23, 42, 0.2);
  border-color: rgba(148, 163, 184, 0.55);
  color: #f9fafb;
}

.sle-footer__input::placeholder {
  color: rgba(209, 213, 219, 0.8);
}

.sle-footer__submit {
  align-self: flex-start;
  margin-top: var(--space-2);
}

.sle-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-3);
}

.sle-footer__legal-right {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* Cookie banner */

.sle-cookie {
  position: fixed;
  inset-inline: var(--space-4);
  bottom: var(--space-4);
  z-index: 50;
  max-width: 640px;
  margin-inline: auto;
  background: rgba(15, 23, 42, 0.98);
  color: #f9fafb;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(200, 169, 107, 0.7);
  transform: translateY(110%);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
}

.sle-cookie__inner {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.sle-cookie__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
  color: #f9fafb;
}

.sle-cookie__text {
  font-size: var(--text-sm);
  color: rgba(249, 250, 251, 0.88);
}

.sle-cookie__links {
  font-size: var(--text-xs);
  color: rgba(249, 250, 251, 0.8);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.sle-cookie__links a {
  color: #bfdbfe;
}

.sle-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: flex-start;
}

.sle-cookie__btn {
  width: auto;
}

.sle-cookie--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .sle-cookie__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .sle-cookie__content {
    max-width: 60%;
  }

  .sle-cookie__actions {
    flex-direction: column;
    align-items: flex-end;
  }
}

@media (max-width: 480px) {
  .sle-cookie {
    inset-inline: var(--space-2);
  }
}
