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

.futureshop-problem {
  position: relative;
  background: #e0ebf9;
  padding: clamp(48px, 8vw, 100px) 0 calc(clamp(64px, 8vw, 120px) + 48px);
  overflow: hidden;
  clip-path: polygon(100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
}

@media screen and (max-width:1024px) {
  .futureshop-problem {
    clip-path: polygon(100% 0, 100% 95%, 50% 100%, 0 95%, 0 0);
  }
}

.futureshop-problem__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 3vw, 40px);
}

.futureshop-problem__card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-sizing: border-box;
}

.futureshop-problem__card-img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}

.futureshop-problem__card-text {
  margin: 0;
  font-size: clamp(14px, 3vw, 20px);
  line-height: 1.7;
  color: #343434;
  text-align: center;
  font-weight: 900;
}

.futureshop-problem__footer-text {
  position: relative;
  margin: clamp(32px, 5vw, 48px) 0 0;
  text-align: center;
  font-size: clamp(18px, 3vw, 40px);
  font-weight: 900;
  color: #343434;
  line-height: 1.6;
}

.futureshop-problem__footer-text::before,
.futureshop-problem__footer-text::after {
  content: "";
  display: block;
  width: 5vw;
  height: 5vw;
  max-width: 40px;
  max-height: 40px;
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  margin: auto;
  border-right: solid 1px var(--fs-orange);
  border-bottom: solid 1px var(--fs-orange);
  transform: translateY(100%) rotate(45deg) skew(-15deg, -20deg);
}

.futureshop-problem__footer-text::after {
  bottom: -22px;
}

.futureshop-problem__footer-text .is-accent {
  color: var(--fs-orange, #f24b08);
}

.futureshop-problem__shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -48px;
  height: 48px;
  background: #e0ebf9;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

@media (max-width: 1024px) {
  .futureshop-problem__cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}