/* Section 4 chevaux - cartes responsive */
.section-chevaux {
  background-image: url('images/background/pattern-1.png');
  background-repeat: repeat;
  background-color: #fff;
  padding: 28px 0 28px 0;
}
.section-chevaux .container {
  max-width: 1200px;
  margin: 0 auto;
}
.chevaux-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.cheval-card {
  background: #fff;
  border-radius: 0;
  box-shadow: 0 2px 18px rgba(0,0,0,0.09);
  overflow: hidden;
  width: 250px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cheval-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 6px 28px rgba(0,0,0,0.16);
}
.cheval-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
  border-radius: 0;
}
.cheval-card-title {
  font-family: 'Barlow', sans-serif;
  font-size: 1.15rem;
  font-weight: bold;
  margin: 14px 0 14px 0;
  color: #222;
  text-align: center;
}
@media (max-width: 991.98px) {
  .chevaux-row {
    gap: 18px;
  }
  .cheval-card {
    width: 46%;
    min-width: 170px;
  }
}
@media (max-width: 600px) {
  .cheval-card {
    width: 100%;
    min-width: 0;
  }
  .cheval-card img {
    height: 170px;
  }
}
