.lux-area-section,
.lux-area-section * {
  box-sizing: border-box;
}

.lux-area-section {
  width: 100%;
  padding: 20px 24px;
  background: #ffffff;
  font-family: "AvantGarde", "Inter", Arial, sans-serif;
}

.lux-area-shell {
  width: min(100%, 1600px);
  margin: 0 auto;
}

.lux-area-panel {
  width: 100%;
  padding: 34px 28px 30px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);

  overflow: hidden;
}

.lux-area-eyebrow {
  margin: 0 0 26px;
  text-align: center;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fc4c10;
}

.lux-area-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  width: 100%;
}

.lux-area-item {
  min-width: 0;
  min-height: 88px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.lux-area-item:first-child {
  border-left: none;
}

.lux-area-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 0;
}

.lux-area-icon img {
  width: 30px;
  height: 30px;
  display: block;
}

.lux-area-item h3 {
  margin: 0;
  font-size: clamp(12px, 0.9vw, 15px);
  line-height: 1.2;
  font-weight: 900;
  color: #111111;
  overflow-wrap: anywhere;
}

@media (max-width: 1200px) {
  .lux-area-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .lux-area-item:nth-child(6) {
    border-left: none;
  }

  .lux-area-item:nth-child(n + 6) {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }
}

@media (max-width: 767px) {
  .lux-area-section {
    padding: 40px 16px;
  }

  .lux-area-panel {
    padding: 28px 16px 22px;
    border-radius: 24px;
  }

  .lux-area-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lux-area-item {
    min-height: 92px;
    padding: 12px 8px;
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .lux-area-item:nth-child(1),
  .lux-area-item:nth-child(2),
  .lux-area-item:nth-child(3) {
    border-top: none;
  }

  .lux-area-item:nth-child(3n + 2),
  .lux-area-item:nth-child(3n + 3) {
    border-left: 1px solid rgba(0, 0, 0, 0.08);
  }

  .lux-area-icon {
    width: 30px;
    height: 30px;
  }

  .lux-area-icon img {
    width: 26px;
    height: 26px;
  }

  .lux-area-item h3 {
    font-size: 13px;
  }
}