/* SEO Footer - clean classes, no conflicts with old bundle */

.site-footer .container {
  max-width: 1400px;
}

/* 6-column SEO grid */
.seo-footer__columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}

.seo-footer__heading {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.seo-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.seo-footer__links a {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.seo-footer__links a:hover {
  color: var(--text-primary);
}

/* Brand + Newsletter row */
.seo-footer__cta {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}

.seo-footer__brand {
  flex-shrink: 0;
  max-width: 280px;
}

/* Affiliates */
.seo-footer__affiliates {
  border-top: 1px solid var(--border);
  padding: 12px 0;
}

.seo-footer__affiliates p {
  font-size: 0.65rem;
  color: var(--text-muted);
  opacity: 0.6;
}

.seo-footer__affiliates a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.seo-footer__affiliates a:hover {
  color: var(--text-primary);
}

/* Bottom bar */
.seo-footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.seo-footer__bottom > p {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.seo-footer__legal {
  display: flex;
  gap: 16px;
}

.seo-footer__legal a {
  color: var(--text-muted);
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.seo-footer__legal a:hover {
  color: var(--text-primary);
}

/* Tablet+ */
@media (min-width: 768px) {
  .seo-footer__columns {
    grid-template-columns: repeat(3, 1fr);
  }

  .seo-footer__cta {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .seo-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .seo-footer__columns {
    grid-template-columns: repeat(6, 1fr);
  }
}
