@import url("site.css");

.team-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 0.75rem;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-grid .column p {
  color: var(--muted);
  font-size: 0.9rem;
}

.team-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.team-footer-actions .form-stack {
  min-width: 240px;
}

.team-footer-actions input[type="email"] {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  font-family: inherit;
}

.team-footer-actions input[type="submit"] {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  box-shadow: none;
  padding: 0.55rem 1rem;
}

.team-footer-actions input[type="submit"]:hover {
  background: rgba(88, 101, 242, 0.25);
  border-color: rgba(88, 101, 242, 0.45);
}
