/* CD FOOTER */
.cd-footer {
  background: var(--cd-text-strong);
  color: rgb(255 255 255 / 0.78);
  padding: var(--cd-space-xl) var(--cd-gutter) var(--cd-space-md);
}

.cd-footer__inner {
  width: min(100%, 1200px);
  margin-inline: auto;
}

.cd-footer__content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 3.05fr);
  gap: var(--cd-space-xl);
  padding-bottom: var(--cd-space-lg);
  border-bottom: 1px solid rgb(255 255 255 / 0.10);
}

.cd-footer__brand .cd-logo {
  color: var(--cd-white);
}

.cd-footer__brand .cd-logo__tagline {
  color: rgb(255 255 255 / 0.55);
}

.cd-footer__description {
  max-width: 32rem;
  margin-top: var(--cd-space-xs);
  color: rgb(255 255 255 / 0.56);
  font-size: 0.9rem;
  line-height: 1.7;
}

.cd-footer__links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
  align-items: start;
}

.cd-footer__column {
  min-width: 0;
}

.cd-footer__title {
  margin-bottom: var(--cd-space-sm);
  color: var(--cd-white);
  font-family: var(--cd-font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.cd-footer__link {
  display: block;
  margin-bottom: 0.55rem;
  color: rgb(255 255 255 / 0.64);
  font-size: 0.875rem;
  line-height: 1.35;
  text-decoration: none;
  transition: color var(--cd-transition);
}

.cd-footer__link:hover,
.cd-footer__link:focus-visible {
  color: var(--cd-white);
}

.cd-footer__bottom {
  padding-top: var(--cd-space-md);
  text-align: center;
}

.cd-footer__text,
.cd-footer__disclosure {
  max-width: 640px;
  margin: 0 auto 0.5rem;
  color: rgb(255 255 255 / 0.44);
  font-size: 0.78rem;
}

.cd-footer__disclosure {
  color: rgb(255 255 255 / 0.32);
  font-size: 0.74rem;
}

/* Tablet */
@media (max-width: 920px) {
  .cd-footer__content {
    grid-template-columns: 1fr;
  }

  .cd-footer__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 480px) {
  .cd-footer__links {
    grid-template-columns: 1fr;
  }
}