/* =========================================
   ARCHIVE CARD MEDIA (UNIFORM SIZE)
========================================= */

.archive-media {
  width: 100%;
  aspect-ratio: 1 / 1;          /* perfect square */
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.archive-media img,
.archive-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-media video {
  pointer-events: none;
}

/* ICON FALLBACK */
.archive-media .media-icon {
  font-size: 3rem;
  color: var(--bs-primary);
}

/* =========================================
   ACTIONS POSITIONING
========================================= */

.archive-actions {
  margin-top: 0.75rem;
}

/* Ensure title never overlaps */
.team-name {
  position: relative;
  z-index: 2;
}
