/* Testimonials wrapper */
#about-d .testimonials {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(250px, 1fr)
  ); /* автоматаар тохирно */
  gap: 1.5rem; /* картуудын хооронд зай */
  margin-top: 2rem;
}

/* Тестимониал карт */
#about-d .testimonials > div {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* зөөлөн сүүдэр */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#about-d .testimonials > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Гарчиг тал */
#about-d .testimonials ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem 0;
  display: flex;
  justify-content: center;
  font-weight: bold;
  color: #003366; /* corporate өнгө */
  font-size: 1.1rem;
  text-align: center;
}

/* Текст */
#about-d .testimonials p {
  border: none; /* хуучин border устгана */
  border-radius: 0;
  padding: 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: justify;
}
