:root {
  --cube-gap: 8px;
}

.cta-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: var(--cube-gap) !important;
  margin-bottom: 12px !important;
}

.big-action {
  width: 100% !important;
  min-height: 0 !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 14px !important;
  padding: 8px 6px !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
}

.big-action > div {
  width: 100%;
  display: grid;
  place-items: center;
}

.big-action .icon-premium {
  width: 44px !important;
  height: 44px !important;
  border-radius: 14px !important;
  margin: 0 auto 8px !important;
}

.big-action .he-icon {
  width: 24px !important;
  height: 24px !important;
}

.big-action strong {
  font-size: 13px !important;
  line-height: 1.05 !important;
  white-space: nowrap !important;
}

.big-action span {
  font-size: 11px !important;
  line-height: 1.05 !important;
  margin-top: 4px !important;
  white-space: nowrap !important;
}

.big-action:hover {
  transform: translateY(-3px) scale(1.015) !important;
}

@media (max-width: 360px) {
  .cta-grid {
    gap: 7px !important;
  }

  .big-action {
    border-radius: 13px !important;
    padding: 7px 4px !important;
  }

  .big-action .icon-premium {
    width: 38px !important;
    height: 38px !important;
    border-radius: 13px !important;
    margin-bottom: 7px !important;
  }

  .big-action .he-icon {
    width: 21px !important;
    height: 21px !important;
  }

  .big-action strong {
    font-size: 12px !important;
  }

  .big-action span {
    font-size: 10px !important;
  }
}

@media (min-width: 760px) {
  .cta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .big-action {
    aspect-ratio: 2.6 / 1 !important;
    min-height: 96px !important;
  }
}
