/* ===== Team Footer Styles ===== */

.team-footer {
  grid-area: footer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--team-footer-height);
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.95));
  border-top: 1px solid var(--team-dark-border);
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: var(--team-z-sticky);
}

.team-footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding: 0 var(--team-space-lg);
}

.team-footer-left p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--team-gray-400);
  font-weight: 400;
}

.team-footer-right {
  display: flex;
  align-items: center;
  gap: var(--team-space-sm);
  font-size: 0.75rem;
  color: var(--team-gray-500);
  font-weight: 500;
}

.team-footer-separator {
  color: var(--team-gray-600);
}

/* ===== Responsive Footer ===== */
@media (max-width: 768px) {
  .team-footer-content {
    flex-direction: column;
    gap: var(--team-space-xs);
    padding: var(--team-space-sm) var(--team-space-md);
  }

  .team-footer-left,
  .team-footer-right {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .team-footer-content {
    padding: var(--team-space-sm);
  }

  .team-footer-right {
    flex-direction: column;
    gap: var(--team-space-xs);
  }

  .team-footer-separator {
    display: none;
  }
}

/* ===== Print Footer ===== */
@media print {
  .team-footer {
    display: none;
  }
}
