.media-container {
  position: relative;
}

.download-icons {
  position: absolute;
  bottom: -44px;
  right: 10px;
  display: flex;
  gap: 10px;
  z-index: 5;
}

.download-icons a {
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.download-icons a:hover {
  background: #fff;
  color: #000;
  transform: scale(1.15);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}
