/*
|---------------------------------------------------------------
| qinc2026-futureshop-features.css
|---------------------------------------------------------------
*/

.futureshop-features {
  position: relative;
  background: #00418f;
  padding: clamp(64px, 8vw, 120px) 0;
  overflow: hidden;
  color: #ffffff;
}

.futureshop-features__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: min(50%, 560px);
  pointer-events: none;
}

.futureshop-features__bg-img {
  display: block;
  width: 100%;
  height: auto;
}

.futureshop-features__inner {
  position: relative;
  z-index: 1;
}

.futureshop-features__icons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px min(24px, 3vw);
  margin: 0 0 clamp(48px, 7vw, 80px);
  padding: 0;
  list-style: none;
}

.futureshop-features__icon-item {
  text-align: center;
}

.futureshop-features__icon-img {
  display: block;
  width: 100%;
  max-width: 172px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.futureshop-features__icon-text {
  margin: 0;
  font-size: clamp(10px, 2vw, 13px);
  line-height: 1.5;
  color: #ffffff;
}

.futureshop-features__recommend {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 56px);
}

.futureshop-features__recommend-title {
  margin: 0 0 20px;
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
}

.futureshop-features__recommend-line {
  position: relative;
  height: 1px;
  margin: 0 auto;
  background: #ffffff;
}

.futureshop-features__recommend-triangle {
  position: absolute;
  left: 50%;
  top: 0;
  width: 24px;
  height: 24px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  transform: translate(-50%, -45%) rotate(45deg) skew(-3deg, -3deg);
  background: #00418f;
}

.futureshop-features__site-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.futureshop-features__site-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  color: #343434;
}

.futureshop-features__site-head {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-bottom: 20px;
}

.futureshop-features__site-label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 48px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1;
  color: #1e2c63;
}

.futureshop-features__site-titles {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.futureshop-features__site-title {
  font-size: clamp(21px, 3vw, 34px);
  font-weight: 900;
  color: #1e2c63;
  line-height: 1.2;
  font-feature-settings: "palt";
}

.futureshop-features__site-subtitle {
  margin: 0;
  font-size: clamp(12px, 2vw, 14px);
  color: #1e2c63;
  font-weight: 900;
}

.futureshop-features__site-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.futureshop-features__site-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #1e2c63;
}

.futureshop-features__site-item:last-child {
  border-bottom: 0;
}

.futureshop-features__site-item-icon {
  flex: 0 0 40px;
  width: 100%;
  max-width: 66px;
  max-height: 66px;
  object-fit: contain;
}

.futureshop-features__site-item-title {
  margin: 0 0 4px;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 700;
  color: #020441;
}

.futureshop-features__site-item-text {
  margin: 0;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  line-height: 1.6;
  color: #343434;
}

@media (max-width: 1024px) {
  .futureshop-features__icons {
    grid-template-columns: repeat(2, 1fr);
  }

  .futureshop-features__icon-text {
    font-size: 12px;
  }

  .futureshop-features__site-cards {
    grid-template-columns: 1fr;
  }
}
