/*tarjetas debajo de los carruseles*/

.extra-cards-section {
  max-width: 1500px;
  margin: 5px auto;
  padding: 30px 20px;
}

.cards-row.bottom-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card-products {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.card-products a {
  flex: 1 1 45%;
  text-align: center;
  text-decoration: none;
}

.card-products a img {
  width: 100%;
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.card-products a p {
  font-size: 0.9rem;
  color: #111;
  margin-top: 5px;
}

.card-button {
  display: block;
  text-align: left;
  margin-top: 15px;
  color: #007185;
  font-weight: bold;
  text-decoration: none;
}

.card-products.one-img {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.card-products.one-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.card.last-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  padding: 20px;
}

.card.last-card .card-products.one-img {
  flex-grow: 1;
}

.card.last-card .card-products.one-img img {
  height: 100%;
  max-height: 250px;
  object-fit: cover;
}