/* css/depoimentos.css */

.depo-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0;
  margin: 0;
}

.depo-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  overflow: hidden;
}

.depo-card .panel-body {
  padding: 15px;
}

.depo-card h4 {
  margin-top: 0;
  font-size: 1.2em;
}

.depo-card p {
  font-size: 0.9em;
  line-height: 1.4;
}

/* responsivo: em telas < 768px, fica 1 coluna */
@media (max-width: 768px) {
  .depo-container {
    grid-template-columns: 1fr;
  }
}
