/* Purpose: Two-up ticked card grid, plus the shared circular tick used by other blocks. */

.tick {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-text);
  display: grid;
  place-items: center;
  font-weight: var(--weight-black);
  font-size: var(--fs-14);
  margin-top: var(--space-2);
  transition: transform var(--duration-base) var(--ease-spring);
}

.checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-22);
}

.discover__cta {
  margin-top: var(--space-48);
}

.checklist__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-26) var(--space-28);
  display: flex;
  gap: var(--space-18);
  align-items: flex-start;
  box-shadow: var(--shadow-card);
  transition: transform var(--duration-base) var(--ease-smooth), box-shadow var(--duration-base) ease, border-color var(--duration-base) ease;
}

.checklist__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-primary);
}

.checklist__item:hover .tick {
  transform: scale(1.15) rotate(8deg);
}

.checklist__text {
  margin: 0;
  font-size: var(--fs-16-5);
  line-height: var(--leading-card);
  color: var(--color-text);
}

.checklist__text b {
  color: var(--color-navy);
  font-weight: var(--weight-extra);
}

@media (min-width: 821px) {
  .checklist {
    grid-template-columns: 1fr 1fr;
  }

  .checklist__item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}
