/* =========================================================
   SUGGESTION CARDS
========================================================= */

.suggestion-title {
  margin: 8px 0 14px 60px;

  color: #4d6380;
  font-size: 15px;
  font-weight: 800;

  animation: hcbFadeUp 0.42s ease-out both;
}

.suggestion-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;

  margin-left: 60px;
  margin-bottom: 22px;
}

.suggestion-cards button {
  min-height: 92px;
  padding: 16px;

  border: 1px solid #dce8f4;
  border-radius: 22px;

  background: #ffffff;
  color: var(--hcb-text);

  display: grid;
  grid-template-columns: 48px 1fr 18px;
  align-items: center;
  gap: 12px;

  text-align: left;
  cursor: pointer;

  box-shadow: 0 10px 24px rgba(15,35,65,0.06);

  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;

  animation: hcbCardIn 0.42s ease-out both;
}

.suggestion-cards button:nth-child(1) {
  animation-delay: 0.03s;
}

.suggestion-cards button:nth-child(2) {
  animation-delay: 0.08s;
}

.suggestion-cards button:nth-child(3) {
  animation-delay: 0.13s;
}

.suggestion-cards button:nth-child(4) {
  animation-delay: 0.18s;
}

.suggestion-cards button:hover,
.suggestion-cards button:focus,
.suggestion-cards button:focus-visible {
  transform: translateY(-3px);
  border-color: #86d8ff !important;

  background:
    radial-gradient(circle at top left, rgba(31,162,255,0.10), transparent 34%),
    linear-gradient(135deg, #f2fbff 0%, #dff5ff 100%) !important;

  outline: none !important;

  box-shadow:
    0 14px 30px rgba(14, 165, 245, 0.16),
    0 0 0 2px rgba(103, 216, 255, 0.24) !important;
}

.suggestion-cards button:active {
  transform: translateY(-1px) scale(0.99);
  border-color: #6fd0ff !important;
  outline: none !important;

  box-shadow:
    0 8px 18px rgba(14, 165, 245, 0.14),
    0 0 0 2px rgba(103, 216, 255, 0.28) !important;
}


@keyframes hcbCardIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hcbFadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.suggestion-icon {
  width: 48px;
  height: 48px;

  border-radius: 999px;
  background: #eef7ff;

  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    background 0.18s ease,
    transform 0.18s ease;
}

.suggestion-icon svg {
  width: 25px;
  height: 25px;
  fill: var(--hcb-blue-700);
}

.suggestion-cards button:hover .suggestion-icon {
  background: linear-gradient(135deg, #e7f9ff 0%, #c9efff 100%);
  color: #0878c9;
  transform: scale(1.05);
}

.suggestion-cards button span:nth-child(2) {
  font-size: 14px;
  font-weight: 850;
  line-height: 1.25;
}

.suggestion-arrow {
  color: #7890aa;
  font-size: 28px;
  line-height: 1;

  transition:
    transform 0.18s ease,
    color 0.18s ease;
}

.suggestion-cards button:hover .suggestion-arrow {
  color: var(--hcb-blue-700);
  transform: translateX(3px);
}
