.GPU-mask {
    display: flex;
    align-items: center; /* Centers content vertically */
    justify-content: flex-start; /* Ensures image and text are horizontally aligned */
    max-width: 100%;
    background: linear-gradient(90deg, #353535, #191919, #000000);
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    transition: 0.3s ease, box-shadow 0.3s ease;
    }

.GPU-mask:hover {
    background: linear-gradient(90deg, #505050, #242424, #111111);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
  
.GPU-mask img {
    width: clamp(100px, 15vw, 175px);
    height: auto;
    margin-right: 2.75vw;
    margin-left: 1.75vw;
    }
  
    .GPU-mask > .button-content {
    flex: 1;
    flex-direction: column;
    display: flex;
    
    text-align: right;
    font-family: "Wavefont", system-ui;
    font-variation-settings: "ROND" 0, "YELA" -15;

    gap: 0.2em; /* Space between title and subtitle */
    padding-bottom: 2.5vh;
    }
  
    .GPU-mask > .button-content h2 {
      margin: 0;
      font-size: clamp(4px, 6vw, 95px);
      font-weight: 400;

      letter-spacing: 20%;
      line-height: 1; /* Reduce spacing between lines */
    }
    
    .GPU-mask > .button-content h3 {
    margin: 0;
    font-family: "Lexend", sans-serif;
    font-size: clamp(2px, 2.5vw, 35px);
    font-weight: 400;
    line-height: 1; /* Keep consistent spacing */
    }

    .GPU > .content {
    background: linear-gradient(90deg, #141212, #1a1a1a, #0a0a0a);
    border-radius: 0 0 12px 12px;
    }

    .GPU > .content > img {
    width: 47.5%;
    height: 47.5%;
    object-fit: contain;
    margin: 1%; 
    } 

    .GPU > .content.show {
    padding: 2% 2% 2% 2%;
    }

    .GPU > .content p {
    font-family: "Lexend", sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #ffffff;
    text-align: justify;
    letter-spacing: -1px;
    }
