.brand-card {
    height: 200px;
    border: 2px solid rgb(205, 203, 203);
    padding: 5px 10px;
    margin: 10px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .brand-date {
    color: #cc9966;
    margin-bottom: 8px;
  }
  
  .brand-link {
    color: black;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }
  
  .brand-link:hover {
    color: #cc9966;
  }
  
  .no-data {
    text-align: center;
    margin: 20px 10px;
    color: #555;
    font-size: 1.1rem;
  }
  