/* ── component-footer (shared) ── */

.site-footer {
  position: relative;
  z-index: 1;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 15rem;
  padding: 4rem 0;
}

.site-footer-inner {
  width: 60vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}

.site-footer-name {
  color: #f5f5f5;
  margin: 0 0 6px;
}

.site-footer-role {
  color: rgba(245, 245, 245, 0.45);
  margin: 0;
}

.site-footer-columns {
  display: flex;
  gap: 4rem;
}

.site-footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer-col-title {
  color: rgba(245, 245, 245, 0.35);
  font-size: 0.9rem;
  font-weight: 300;
  margin: 0 0 10px;
}

.site-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #f5f5f5;
  padding: 5px 0;
  transition: color 0.2s ease;
}

.site-footer-link:hover {
  color: rgba(100, 160, 255, 0.95);
}

.site-footer-link i {
  font-size: 1rem;
  line-height: 1;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .site-footer {
    min-height: auto;
    padding: 3rem 0;
  }

  .site-footer-inner {
    width: 85vw;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer-columns {
    flex-wrap: wrap;
    gap: 2rem 3rem;
  }
}
