/* Honeywell list spotlight — featured series with photo backgrounds */
.hw-spotlight {
  margin: 14px 0 18px;
  padding: 14px 14px 16px;
  border-radius: 16px;
  background:
    radial-gradient(1200px 280px at 8% -20%, rgba(47, 168, 244, 0.22), transparent 55%),
    radial-gradient(900px 240px at 100% 120%, rgba(228, 0, 43, 0.16), transparent 50%),
    linear-gradient(165deg, #0b1b33 0%, #123056 48%, #0f2744 100%);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.18);
  position: relative;
  overflow: hidden;
}
.hw-spotlight::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 68%);
  animation: hw-spot-glow 8s ease-in-out infinite;
  pointer-events: none;
}
.hw-spotlight-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  color: #e8f1ff;
}
.hw-spotlight-head h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.hw-spotlight-head p {
  margin: 0;
  font-size: 12px;
  color: #b8c9e6;
}
.hw-spotlight-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: 168px 148px;
  gap: 10px;
}
.hw-spot {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 148px;
  padding: 14px 14px 12px;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  isolation: isolate;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  transform: translateZ(0);
}
.hw-spot:nth-child(1) {
  grid-row: 1 / 3;
  min-height: 326px;
}
.hw-spot-bg {
  position: absolute;
  inset: 0;
  background-color: #123056;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.04);
  transition: transform 0.55s ease;
  z-index: -2;
}
.hw-spot::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(8, 18, 36, 0.12) 0%, rgba(8, 18, 36, 0.42) 42%, rgba(8, 18, 36, 0.88) 100%);
  transition: background 0.35s ease;
}
.hw-spot::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s ease;
  z-index: 0;
  pointer-events: none;
}
.hw-spot:hover .hw-spot-bg,
.hw-spot:focus-visible .hw-spot-bg {
  transform: scale(1.12);
}
.hw-spot:hover::before,
.hw-spot:focus-visible::before {
  left: 120%;
}
.hw-spot:hover,
.hw-spot:focus-visible {
  outline: none;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32), 0 0 0 2px rgba(47, 168, 244, 0.55);
}
.hw-spot-copy {
  position: relative;
  z-index: 1;
  max-width: 100%;
}
.hw-spot-tag {
  display: inline-block;
  margin-bottom: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #dbeafe;
  background: rgba(37, 99, 235, 0.45);
  border: 1px solid rgba(191, 219, 254, 0.35);
  backdrop-filter: blur(6px);
}
.hw-spot-copy h3 {
  margin: 0 0 4px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}
.hw-spot:nth-child(1) h3 {
  font-size: 22px;
}
.hw-spot-copy p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #e2e8f0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}
@keyframes hw-spot-glow {
  0%, 100% { opacity: 0.45; transform: translate(0, 0); }
  50% { opacity: 0.85; transform: translate(-18px, 12px); }
}

html[dir="rtl"] .hw-spotlight-head,
html[dir="rtl"] .hw-spot-copy {
  text-align: right;
}
html[dir="rtl"] .hw-spot::before {
  left: auto;
  right: -60%;
  transform: skewX(18deg);
}
html[dir="rtl"] .hw-spot:hover::before,
html[dir="rtl"] .hw-spot:focus-visible::before {
  right: 120%;
  left: auto;
}

@media (max-width: 780px) {
  .hw-spotlight-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }
  .hw-spot:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 210px;
  }
  .hw-spot:nth-child(2) {
    grid-column: 1 / -1;
  }
}
@media (max-width: 560px) {
  .hw-spotlight {
    padding: 12px;
  }
  .hw-spotlight-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .hw-spotlight-grid {
    grid-template-columns: 1fr;
  }
  .hw-spot,
  .hw-spot:nth-child(1),
  .hw-spot:nth-child(2) {
    grid-column: auto;
    min-height: 168px;
  }
  .hw-spot:nth-child(1) h3 {
    font-size: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hw-spotlight::before,
  .hw-spot-bg,
  .hw-spot::before {
    animation: none;
    transition: none;
  }
}
