.stock-images-section {
  background: #fff;
}

.content-type-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.content-type-label {
  color: #7a7a7a;
  font-weight: 700;
}

.content-type-link {
  border: 1px solid #dee2e6;
  border-radius: 50px;
  background: #fff;
  color: #333;
  font-weight: 600;
  padding: 8px 22px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.content-type-link:hover,
.content-type-link.active {
  background: #f68a0a;
  border-color: #f68a0a;
  color: #fff;
}

.stock-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.stock-image-preview img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.stock-download-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 10;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(-8px);
}

.stock-image-card:hover .stock-download-btn {
  opacity: 1;
  transform: translateY(0);
}

.stock-download-btn:hover {
  background: var(--bs-primary);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.35);
}

.stock-download-btn i {
  font-size: 18px;
}
.stock-image-preview {
  display: block;
  height: 260px;
  border-radius: 20px;
  /* padding: 18px 52px 18px 18px; */
}

.stock-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 575px) {
  .stock-image-preview {
    height: 220px;
  }
}
