/*
|---------------------------------------------------------------
| qinc2026-futureshop-link-buttons.css
|---------------------------------------------------------------
*/

.futureshop-link-buttons {
  padding: clamp(30px, 6vw, 50px) 0;
}

.futureshop-link-buttons--blue {
  background: #00418f;
}

.futureshop-link-buttons--deep {
  background: #180241;
}

.futureshop-link-buttons__row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.futureshop-link-buttons__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 280px;
  max-width: 420px;
}

.futureshop-link-buttons__deco {
  margin: 0 0 12px;
  text-align: center;
  font-size: clamp(14px, 4vw, 20px);
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.06em;
}

.futureshop-link-buttons__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-width: 240px;
  padding: 18px 28px;
  border-radius: 999px;
  font-size: clamp(16px, 5vw, 22px);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.futureshop-link-buttons__btn:hover {
  opacity: 0.88;
}

.futureshop-link-buttons__btn-text {
  text-align: center;
  margin-inline: auto;
}

.futureshop-link-buttons__arrow {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.futureshop-link-buttons__btn--outline {
  background: #ffffff;
  color: #f24b08;
  border: 2px solid #fff;
}

.futureshop-link-buttons__btn--fill {
  background: #f24b08;
  color: #ffffff;
  border: 2px solid #f24b08;
}

@media (max-width: 768px) {
  .futureshop-link-buttons__row {
    flex-direction: column;
    align-items: stretch;
  }

  .futureshop-link-buttons__item {
    flex: 1 1 auto;
    max-width: none;
  }

  .futureshop-link-buttons__btn {
    min-width: 0;
  }
}
