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

.futureshop-mainfunctions {
  background: #ffffff;
  padding: clamp(64px, 8vw, 120px) 0;
}

.futureshop-mainfunctions__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.futureshop-mainfunctions__card__wrap {
  display: flex;
  flex-direction: column;
}

.futureshop-mainfunctions__card__issue {
  position: relative;
  background: #eeeeee;
  border-radius: 50px;
  padding: 16px 10px;
  text-align: center;
  color: #00418f;
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 700;
  margin-bottom: 76px;
}

.futureshop-mainfunctions__card__issue::after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  position: absolute;
  left: 50%;
  bottom: -42px;
  transform: translateX(-50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M16 6V22M16 22L9 15M16 22L23 15' stroke='%2300418f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

@media screen and (max-width:1024px){
  .futureshop-mainfunctions__card__issue {
    margin-bottom: 46px;
  }

}

.futureshop-mainfunctions__card {
  flex: 1;
  background: #1e2c63;
  border-radius: 16px;
  padding: 28px 24px;
  color: #ffffff;
  box-sizing: border-box;
}

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

.futureshop-mainfunctions__card-title {
  margin: 0 0 12px;
  font-size: clamp(18px, 2vw, 19px);
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
}

.futureshop-mainfunctions__card-title .is-accent {
  color: #ffc75d;
}

.futureshop-mainfunctions__card-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

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