.zoneNews{
  & .gradient-black-bottom-50 {
    background: linear-gradient(
      to bottom,
      transparent,
      75%,
      rgba(0, 0, 0, 0.5)
      );
    transition: background 0.3s;
  }
  
  & .gradient-black-bottom-50:hover {
    background: 
      rgba(0, 0, 0, 0);
    transition: background 0.3s;
  }
  
  & .fade-black-25 {
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s;
  }
  
  & .fade-black-25:hover {
    background: rgba(0, 0, 0, 0.25);
    transition: background 0.3s;
  }
  
  .btn-primary {
    background-color: transparent;
    border-color: var(--color-white);
    border-radius: var(--border-radius-4);
  }
}

.fn-link-footer a{
  color: white;
  text-decoration: none;
}

.fn-link-footer a:hover{
  color: #AA0F1F;
  text-decoration: none;
}

.search-section{
  min-height: 600px;
}

