.ts-help-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.ts-help-card {
  background: #ffffff;
  color: #011641;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 14px rgba(1, 22, 65, 0.08);
  border: 1px solid rgba(78, 177, 162, 0.25);
}

.ts-card-top {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.ts-card-top img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  flex: 0 0 70px;
}

.ts-help-card h3 {
  margin: 0;
  color: #011641;
  font-size: 1.45rem;
  line-height: 1.15;
  font-weight: 600;
}

.ts-help-card p {
  margin: 0 0 1.4rem;
  color: #011641;
  font-size: 1.02rem;
  line-height: 1.55;
}

.ts-help-card a {
  color: #4EB1A2;
  text-decoration: none;
  font-weight: 700;
}

.ts-help-card a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .ts-help-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .ts-help-cards {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .ts-help-card {
    padding: 24px;
  }

  .ts-card-top img {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .ts-help-card h3 {
    font-size: 1.3rem;
  }
}