.sphere-latest-section {
  width: 100%;
  display: flex;
  justify-content: center;
}

.sphere-comparisons-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1143px;
  margin: 0 auto;
}

.sphere-comparison-card {
  flex: 1 1 calc(33.333% - 30px);
  max-width: calc(33.333% - 30px);
  background: linear-gradient(118.04deg, #F9F9F9 3.31%, #FFFFFF 53.03%, #F9F9F9 99.86%);
  border-radius: 40px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  gap: 12px;
}

.sphere-comparison-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.sphere-comparison-image {
  width: 185.9px;
  height: 129.9px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sphere-comparison-image img {
  width: 185.9px;
  height: 129.9px !important;
  object-fit: contain !important;
}

.sphere-comparison-title {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #000;
  width: 321px;
  height: 52px;
  margin: 0;
}

.sphere-comparison-title a {
  color: inherit;
  text-decoration: none;
}

.sphere-comparison-title a:hover {
    color: #884688;
}

.sphere-comparison-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.sphere-stars {
  display: flex;
  gap: 5px;
}

.sphere-star {
  width: 14px;
  height: 14px;
  fill: #fbb546;
}

.sphere-rating-value {
  width: 34px;
  height: 18px;
  background: #27283e;
  border-radius: 19px;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
}

@media (max-width: 768px) {
  .sphere-comparisons-wrapper {
    gap: 20px;
  }
  .sphere-comparison-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
