.caso-exito-box {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.25s cubic-bezier(.4,1.4,.6,1), box-shadow 0.25s cubic-bezier(.4,1.4,.6,1);
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.caso-exito-box h4 {
  margin: 15px 0 10px 0;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  min-height: 45px;
  display: flex;
  align-items: center;
}

.caso-exito-box p {
  flex: 1;
  font-size: 16px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 10px;
}

.caso-exito-box small {
  margin-top: auto;
  font-size: 14px;
  line-height: 1.4;
  padding-top: 10px;
}

.caso-exito-box:hover {
  transform: scale(1.045) translateY(-6px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.16);
  z-index: 2;
}

/* Asegurar que las columnas tengan la misma altura */
#casos-exito .row {
  display: flex;
  flex-wrap: wrap;
}

#casos-exito .col-md-4 {
  display: flex;
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .caso-exito-box {
    height: auto;
    min-height: 320px;
  }
}
