.c-new-img {
  position: relative;
  width: 100%;
  margin-top: 10rem;
}

.new-img {
  width: 100%;
  height: auto;
  min-height: 250px; /* asegura que no quede tan chiquita */
  object-fit: cover; /* mantiene proporción sin deformar */
  display: block;
}

.btn-overlay {
  position: absolute;
  top: 65%;
  left: 60%;
  transform: translate(-50%, -50%);
  background-color: #F90B2C;
  padding: 12px 28px;
  text-decoration: none;
  color: #fff;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
}

.btn-overlay:hover {
  transition: background-color 0.5s;
  background-color: #990014;
}

/* Media queries */
@media(max-width: 800px){
  .c-new-img{ 
    margin-top: 6rem; 
  }
  .btn-overlay{
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media(max-width: 450px){
  .btn-overlay{
    font-size: 12px;
    padding: 8px 16px;
  }
}


.filas{
    margin-top: 0;
}