.km-homeProducts{
  background: var(--km-primary);
  margin-bottom: 72px;
  overflow: hidden;
}

.km-homeProducts__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 560px;
}

.km-homeProducts__content{
  display:flex;
  align-items:center;
  padding: clamp(36px, 5vw, 72px);
}

.km-homeProducts__inner{
  max-width: 620px;
}

.km-homeProducts__kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:10px 18px;
  border-radius:999px;
  background: var(--km-primary);
  color:#fff;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:18px;
}

.km-homeProducts__title{
  margin:0 0 14px;
  font-size:clamp(2rem, 3.2vw, 3.4rem);
  line-height:1.05;
  color:#fff;
}

.km-homeProducts__desc{
  margin:0 0 28px;
  max-width:58ch;
  font-size:1rem;
  color:#fff;
}

.km-homeProducts__list{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  padding-bottom: 72px;
}

.km-homeProducts__pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:52px;
  padding:13px 18px;
  border:1px solid rgba(0,0,0,.08);
  border-radius:999px;
  background:#fff;
  box-shadow:0 10px 30px rgba(16,24,40,.06);
  color:var(--km-secondary);
  font-weight:600;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.km-homeProducts__pill i{
  color:#d92d20;
  font-size:1.05rem;
  flex:0 0 auto;
}

.km-homeProducts__pill:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(16,24,40,.1);
  border-color:rgba(0,0,0,.14);
}

.km-homeProducts__media{
  position:relative;
  min-height:100%;
}

.km-homeProducts__media img,
.km-homeProducts__placeholder{
  width:100%;
  height:100%;
  min-height:560px;
  object-fit:cover;
  display:block;
}

.km-homeProducts__placeholder{
  background:linear-gradient(135deg,#dfe4ea 0%,#f3f5f8 100%);
}

@media (max-width: 991px){
  .km-homeProducts__grid{
    grid-template-columns:1fr;
  }

  .km-homeProducts__content{
    order:2;
    padding:36px 20px 40px;
  }

  .km-homeProducts__media{
    order:1;
  }

  .km-homeProducts__media img,
  .km-homeProducts__placeholder{
    min-height:320px;
  }
}

@media (max-width: 767px){
  .km-homeProducts__title{
    font-size:clamp(1.75rem, 8vw, 2.4rem);
  }

  .km-homeProducts__desc{
    font-size:.98rem;
  }

  .km-homeProducts__list{
    gap:10px;
  }

  .km-homeProducts__pill{
    width:100%;
    justify-content:flex-start;
    border-radius:16px;
  }
}

.km-homeProducts{
  background: var(--km-primary);
  overflow: hidden;
}

.km-homeProducts__content{
  display:flex;
  align-items:center;
  padding: clamp(36px, 5vw, 72px) clamp(24px, 5vw, 72px) 0;
}

.km-homeProducts__kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:10px 18px;
  border-radius:999px;
  background:#b7ff2a;
  color:var(--km-primary);
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:18px;
}

@media (max-width: 991px){
  .km-homeProducts{
    margin-bottom: 48px;
  }
}