/* --- Premium Classifieds Bootstrap Card Style --- */
.premium-section-bs {
  padding: 40px 30px;
  background:#eee9e9;;
}

/*.section-heading {*/
/*  background: linear-gradient(90deg, #ff5722, #9c27b0);*/
/*  color: #fff;*/
/*  display: inline-block;*/
/*  padding: 10px 25px;*/
/*  border-radius: 8px;*/
/*}*/

.premium-card-bs {
  position: relative;
  border-radius: 15px;
  transition: all 0.3s ease;
  overflow: hidden;
  margin-bottom: 19px;
}

.premium-card-bs:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.premium-img-bs {
  height: 130px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

/* Premium Ribbon (top-right corner) */
.premium-ribbon {
  position: absolute;
  top: 10px;
  right: -40px;
  background: linear-gradient(45deg, #ffb300, #ff6f00);
  color: #fff;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 5px 40px;
  transform: rotate(45deg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

@media (max-width: 767px) {
  .premium-card-bs {
    max-width: 100%;
  }

  .premium-img-bs {
    height: auto;
    border-radius: 15px 15px 0 0;
  }

  .premium-ribbon {
    right: 10px;
    transform: rotate(0);
    border-radius: 20px;
    padding: 4px 12px;
  }
}
@media (max-width: 360px) {
  .premium-section-bs {
    padding: 20px 10px;
  }

  .section-heading {
    font-size: 1rem;
    padding: 8px 16px;
  }

  .premium-card-bs .card-body {
    padding: 10px;
  }

  .premium-card-bs h5.card-title {
    font-size: 0.95rem;
  }

  .premium-card-bs p {
    font-size: 0.8rem;
  }

  .premium-ribbon {
    font-size: 0.65rem;
    padding: 3px 8px;
  }
}





/* ===== Section Title ===== */
/*.new-users-title {*/
/*  text-align: center;*/
/*  font-size: 22px;*/
/*  font-weight: 600;*/
/*  margin-bottom: 20px;*/
/*  background: linear-gradient(90deg, #ff6b6b, #a66bff);*/
/*  color: #fff;*/
/*  padding: 10px;*/
/*  border-radius: 6px;*/
/*}*/

/* ===== Container Layout ===== */
.new-users-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.new-users-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

/* ===== Card Design ===== */
.new-user-card {
  flex: 1 1 calc(25% - 15px);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  position: relative;
  min-width: 250px;
  transition: all 0.3s ease;
}

.new-user-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* ===== Inner Card Layout ===== */
.new-user-card-inner {
  display: flex;
  align-items: center;
  padding: 15px;
  position: relative;
}

.new-user-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-right: 15px;
}

.new-user-details {
  flex: 1;
}

.new-user-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 5px 0;
}

.new-user-info {
  font-size: 14px;
  color: #666;
  margin: 2px 0;
}

/* ===== NEW Tag ===== */
.new-user-tag {
  position: absolute;
  top: 10px;
  right: -25px;
  background: #ff6600;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 30px;
  transform: rotate(45deg);
}

/* ===== Button ===== */
.new-users-btn {
  display: block;
  margin: 25px auto;
  background: linear-gradient(90deg, #ff6b6b, #a66bff);
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.new-users-btn:hover {
  background: linear-gradient(90deg, #a66bff, #ff6b6b);
}

/* ===== Responsive Design ===== */

/* Tablet (≤ 768px) → 2 cards per row */
@media (max-width: 768px) {
  .new-user-card {
    flex: 1 1 calc(50% - 15px);
  }
}

/* Mobile (≤ 480px) → 1 card per row */
@media (max-width: 480px) {
  .new-user-card {
    flex: 1 1 100%;
  }
}

/* Very small mobile (≤ 320px) */
@media (max-width: 320px) {
  .new-user-card-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .new-user-logo img {
    width: 70px;
    height: 70px;
    margin: 0 0 10px 0;
  }

  .new-user-details {
    text-align: left;
  }

  .new-user-tag {
    right: -30px;
    font-size: 10px;
  }
}
