/* Carousel images */
.slider-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  cursor: pointer;
  margin: auto;
}

/* Thumbnails (if any) */
.thumb {
  width: 80px;
  height: auto;
  margin: 5px;
  cursor: pointer;
}

@media (max-width: 576px) {
  .slider-img {
    max-width: 100%;
  }

  .thumb {
    width: 60px;
  }
}
/* ==============================
   FEATURED PROFILE SCROLL
================================= */

.featured-wrapper {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background: #ffffff;
}

.featured-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 5px;
}

/* Optional scrollbar styling */
.featured-scroll::-webkit-scrollbar {
    height: 6px;
}

.featured-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.featured-card {
    flex: 0 0 auto;
    width: 150px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 8px;
    text-align: center;
    background: #fff;
    transition: transform 0.2s ease;
}

.featured-card:hover {
    transform: translateY(-3px);
}

.featured-img {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 4px;
    margin-bottom: 8px;
}

.featured-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}