  .cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .card {
    position: relative;
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: width 0.3s ease, height 0.3s ease;
  }

  .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .card-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #ff642e;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 10px;
    text-align: center;
  }

  .card:hover .card-overlay {
    opacity: 1;
  }

  /* Medium screen */
  @media (min-width: 600px) and (max-width: 999px) {
    .card {
      width: 200px;
      height: 200px;
    }
  }

  /* Large screen */
  @media (min-width: 1000px) {
    .card {
      width: 300px;
      height: 300px;
    }
  }