.trust-section {
  padding: 4rem 0;
}

.trust-section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.trust-section__heading {
  font-family: var(--font-heading);
  /* color, font-size, margin-bottom set inline */
}

.trust-section__subheading {
  /* color, font-weight, font-size, margin-top set inline */
}

.trust-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.trust-section__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.trust-section__card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius);
}

.trust-section__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background: rgba(214, 225, 232, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--dark);
}

.trust-section__card-title {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--dark);
}

.trust-section__card-desc {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.125rem;
}

.trust-section__endorsement {
  display: flex;
  justify-content: center;
  width: 100%;
}

.trust-section__endorsement-card {
  position: relative;
  max-width: 55%;
}

.trust-section__endorsement-img {
  width: 100%;
  border-radius: var(--radius);
}

.trust-section__endorsement-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
}

.trust-section__endorsement-name {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
}

.trust-section__endorsement-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}

/* Card Shadow Variations */
.trust-section--shadow-light .trust-section__card {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.trust-section--shadow-medium .trust-section__card {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.trust-section--shadow-heavy .trust-section__card {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.trust-section--shadow-heavy .trust-section__endorsement-img {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.trust-section--shadow-light .trust-section__endorsement-img {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.trust-section--shadow-medium .trust-section__endorsement-img {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Tablet Columns */
@media (min-width: 768px) {
  .trust-section--tablet-col1 .trust-section__cards { grid-template-columns: 1fr; }
  .trust-section--tablet-col2 .trust-section__cards { grid-template-columns: repeat(2, 1fr); }
  .trust-section--tablet-col3 .trust-section__cards { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile Columns */
@media (max-width: 639px) {
  .trust-section--mobile-col1 .trust-section__cards { grid-template-columns: 1fr; }
  .trust-section--mobile-col2 .trust-section__cards { grid-template-columns: repeat(2, 1fr); }
  .trust-section__endorsement-card {
    max-width: 100% !important;
}