.acccompatibles-front {
  margin-top: 2.5rem;
}

.acccompatibles-front h3 {
  color: #02559F;
  font-weight: 500;
  font-size: 16px;
  padding-bottom: 20px;
}

.acccompatibles-front-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.acccompatibles-front-card {
  border: 2px solid #e8e8e8;
  border-radius: 4px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.acccompatibles-front-card:hover {
  border-color: #02559F;
}

.acccompatibles-front-media {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 90px;
}

.acccompatibles-front-media img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.acccompatibles-front-content {
  flex: 1 1 auto;
  min-width: 0;
}

.acccompatibles-front-name {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.2;
  color: #333333;
  font-weight: 400;
}

.acccompatibles-front-description {
  margin: 0;
  color: #707070;
  font-size: 15px;
}

.acccompatibles-front-button {
  border: 1px solid #02559F;
  border-radius: 4px;
  color: #02559F !important;
  font-weight: 400;
  text-decoration: none;
  min-width: 82px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  flex: 0 0 auto;
  margin-right: 30px;
}

@media (min-width: 768px) {
    .col-md-5.col-product-image {
      position: sticky;
      top: 90px; 
      align-self: flex-start;
    }
}


.acccompatibles-front-card:hover .acccompatibles-front-button {
  background: #02559F;
  color: white !important;
}

@media (max-width: 768px) {
  .acccompatibles-front-button {
    margin-right: 0;
  }

  .acccompatibles-front-name{
    font-size: 14px;
  }
}