.product-spotlight-wrap {
  max-width: 780px;
  margin: 40px auto;
  padding: 0 24px;
}

.product-spotlight {
  position: relative;
  background: #0B1221;
  border: 1px solid rgba(0, 200, 150, 0.2);
  border-radius: 16px;
  padding: 36px 32px 32px;
  overflow: hidden;
}

.product-spotlight__num {
  position: absolute;
  top: 12px;
  left: 20px;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(64px, 12vw, 96px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.product-spotlight__icon {
  width: 48px;
  height: 48px;
  border: 1px solid #00C896;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.product-spotlight__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 14px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.product-spotlight__desc {
  font-size: 15px;
  color: #94A3B8;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.product-spotlight__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.product-spotlight__tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #00C896;
  background: rgba(0, 200, 150, 0.1);
  border: 1px solid rgba(0, 200, 150, 0.25);
  padding: 4px 12px;
  border-radius: 100px;
}

.product-spotlight__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #00C896;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  position: relative;
  z-index: 1;
  transition: color 0.2s, gap 0.2s;
}

.product-spotlight__link:hover {
  color: #2DBD8F;
  gap: 10px;
}

@media (max-width: 640px) {
  .product-spotlight-wrap {
    padding: 0 18px;
    margin: 32px auto;
  }

  .product-spotlight {
    padding: 28px 22px 24px;
  }
}
