/* CA Testimonios — diseño coherente con la paleta de cocinasalemanas */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

.ca-test-grid {
  display: grid;
  gap: 20px;
  font-family: 'DM Sans', sans-serif;
}
.ca-test-cols-1 { grid-template-columns: 1fr; }
.ca-test-cols-2 { grid-template-columns: repeat(2, 1fr); }
.ca-test-cols-3 { grid-template-columns: repeat(3, 1fr); }
.ca-test-cols-4 { grid-template-columns: repeat(4, 1fr); }

.ca-test-card {
  background: #FFFFFF;
  border: 1px solid rgba(28,28,26,0.1);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.ca-test-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(28,28,26,0.08);
}

.ca-test-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.ca-test-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  filter: brightness(.92);
}
.ca-test-card:hover .ca-test-img img {
  transform: scale(1.04);
  filter: brightness(1);
}

.ca-test-body {
  padding: 22px 24px 24px;
}

.ca-test-stars {
  font-size: 15px;
  color: #B8935A;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.ca-test-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: #1C1C1A;
  margin: 0 0 16px;
  padding: 0;
  border: none;
  position: relative;
}
.ca-test-quote::before {
  content: '\201C';
  font-size: 48px;
  color: rgba(184,147,90,0.2);
  position: absolute;
  top: -10px; left: -8px;
  font-style: normal;
  line-height: 1;
}

.ca-test-author {
  font-size: 12px;
  line-height: 1.6;
  color: #9A9490;
  border-top: 1px solid rgba(28,28,26,0.08);
  padding-top: 12px;
}
.ca-test-author strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #1C1C1A;
  margin-bottom: 2px;
}
.ca-test-inst {
  display: block;
  font-size: 11px;
  color: #B8935A;
  letter-spacing: .04em;
}
.ca-test-date {
  display: block;
  font-size: 11px;
  color: #ccc;
  margin-top: 2px;
  letter-spacing: .04em;
}

/* Responsive */
@media (max-width: 900px) {
  .ca-test-cols-3,
  .ca-test-cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ca-test-cols-2,
  .ca-test-cols-3,
  .ca-test-cols-4 { grid-template-columns: 1fr; }
}
