   .artwork-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .artwork-card {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      width: 100%;
      max-width: 300px;
      flex: 1 1 250px;
      display: flex;
      flex-direction: column;
    }

    .artwork-card img {
      width: 100%;
      height: auto;
      object-fit: contain; /* Not strictly necessary with height:auto, but safe */
      display: block;
    }

    .artwork-info {
      padding: 12px;
    }

    .artwork-info h3 {
      margin: 0 0 10px;
      font-size: 1.1em;
      color: #333;
    }

    .artwork-info p {
      margin: 0;
      font-weight: thin;
      color: black;
    }