/*
 * Footer - Site footer styles
 */

.site-footer {
  margin-top: 64px;
  background: var(--slate-900);
  color: var(--slate-200);
}

.footer-top {
  text-align: center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
  letter-spacing: 0.1px;
}

.footer-top a {
  color: var(--brand-red);
  text-decoration: none;
  font-weight: 800;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.footer-brand p {
  margin: 0;
  line-height: 1.6;
  color: var(--slate-300);
}

.footer-link {
  color: var(--brand-red);
  text-decoration: none;
  font-weight: 700;
}

.footer-columns {
  flex: 2 1 480px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px 32px;
}

.footer-title {
  margin: 0 0 10px;
  font-weight: 800;
  color: #ffffff;
}

.footer-column {
  display: grid;
  gap: 8px;
}

.footer-column a {
  color: var(--slate-200);
  text-decoration: none;
  font-weight: 600;
}

.footer-column a:hover,
.footer-link:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding: 16px 12px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--slate-300);
  font-weight: 600;
}
