.truth-section {
  padding: 88px 0;
  background: var(--bg2);
}

.truth-section__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.truth-section__intro {
  max-width: 570px;
  margin: -20px 0 32px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text2);
}

.truth-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.truth-card {
  background: linear-gradient(180deg, var(--bg2), var(--bg3));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.truth-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-border);
  box-shadow: 0 10px 28px var(--blue-dim);
}

.truth-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-dim);
  color: var(--blue);
  margin-bottom: 14px;
}

.truth-icon .material-symbols-rounded {
  font-size: 20px;
}

[data-theme="dark"] .truth-icon {
  color: var(--blue-xl);
}

.truth-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.35;
}

.truth-text {
  font-size: .84rem;
  line-height: 1.7;
  color: var(--text2);
}

@media (max-width: 980px) {
  .truth-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .truth-section {
    padding: 72px 0;
  }

  .truth-section__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .truth-section__intro {
    margin: -18px 0 24px;
    font-size: .9rem;
  }
}

@media (max-width: 560px) {
  .truth-grid {
    grid-template-columns: 1fr;
  }
}