.feature-container {
  display: block;
  margin-top: 20px;
  padding: 20px 0;
}

.feature-container .title {
  width: 100%;
  text-align: center;
}

.feature-container .title h1 {
  font-size: 28px;
  color: #000;
  margin: 0;
  font-weight: 600;
}

.feature-container .wrapper {
  max-width: 1200px;
  margin: 20px auto;
  position: relative;
}

.feature-container .wrapper .Image {
  width: 100%;
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(50px);
  border-radius: 10px;
}

.feature-container .wrapper .Image a {
  display: block;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #c0d3dc;
  text-decoration: none;
  color: inherit;
}

.feature-container .wrapper .Image a:hover span img {
  transform: scale(1.05);
}

.feature-container .wrapper .Image a span {
  height: 250px;
  display: block;
  width: 100%;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.4s;
}

.feature-container .wrapper .Image a span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  transition: 0.4s;
}

.feature-container .wrapper .Image a span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 30%;
  background: linear-gradient(
    to bottom,
    rgba(6, 27, 65, 0) 0%,
    rgba(6, 27, 65, 0.95) 100%
  );
  border-radius: 5px;
  z-index: 2;
}

.feature-container .wrapper .Image a .content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-container .wrapper .Image a .content .itemDetail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.premiumBadge,
.verifiedBadge {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  height: 22px;
  border-radius: 5px;
  font-size: 14px;
  color: #fff;
}

.premiumBadge {
  background: #0678b1;
}

.premiumBadge i {
  color: orange;
}

.verifiedBadge {
  background: orange;
}

.verifiedBadge img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.feature-container .wrapper .Image a .content .FullDetail {
  padding: 10px;
  color: #fff;
}

.contentData {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.contentData .name {
  width: 60%;
}

.swiper-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.swiper-container .swiper-button-next {
  color: orange;
  height: 15px;
}
.swiper-container .swiper-button-prev {
  color: orange;
  font-size: 12px;
  height: 15px;
}

.swiper-container .swiper-button-prev::after {
  font-size: 20px;
  font-weight: 700;
}

.swiper-container .swiper-button-next::after {
  font-size: 20px;
  font-weight: 700;
}

.name h2 {
  font-size: 18px;
  font-weight: 300;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.name h3 {
  font-size: 11px;
  font-weight: 300;
  margin: 5px 0 0 0;
  color: #fff;
}

.ratingData {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ratingData h2 {
  background: #0678b1;
  font-size: 13px;
  color: #fff;
  height: 40px;
  width: 40px;
  border-radius: 5px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.ratingStar .star {
  display: flex;
  gap: 2px;
  padding: 4px 0;
}

.ratingStar .star i {
  color: orange;
  font-size: 12px;
}

.ratingStar h3 {
  font-size: 12px;
  font-weight: 500;
  margin: 0;
  color: #fff;
}

.Category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}

.Category h2,
.Category h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  color: #fff;
}

.Category h2 i {
  background: rgb(247, 92, 150);
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Category h3 i {
  background: #fff;
  color: #4db7fe;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Responsive adjustments */
@media only screen and (max-width: 768px) {
  .feature-container .title h2 {
    font-size: 22px;
  }
  .feature-container .wrapper {
    width: 100%;
    padding: 0 10px;
  }
}

@media only screen and (max-width: 992px) and (min-width: 769px) {
  .feature-container .wrapper {
    width: 100%;
    padding: 0 10px;
  }
}

@media only screen and (max-width: 1299px) and (min-width: 993px) {
  .feature-container .wrapper {
    width: 100%;
    padding: 0 10px;
  }
}
