.Grid5 {
    display: grid;
    grid-template-columns: repeat(5, auto);
    /* 3 buttons per row */
    gap: 1vh 1vw;
    padding: 2vw;
    padding-top: 0;
}

.Grid6 {
    display: grid;
    grid-template-columns: repeat(6, auto);
    gap: 1vh 1vw;
    padding: 2vw;
    padding-top: 0;
}

.button-link {
    width: 100% !important;
    height: 16vh;
    padding: 1vh 1vw;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    font-size: 16pt;
    font-weight: 500;
    border: none;
    border-radius: 20px;
    background-image: linear-gradient(180deg, #3653EA 0%, #8210F4 100%);
    color: #FFFFFF;
    box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #2B1BBB 0 -3px 0 inset;
}

.button-link:hover {
    background-image: linear-gradient(144deg, #5c4fd5, #8d83d2 50%, #63d9e1);
    transform: translateY(-0.3vw);
}

.full-width {
    width: 100%;
    grid-column: span 2;
}

.link-text {
    text-align: center;
    padding: 3vh 0;
}


@media (max-width: 1400px) {

    .button-link {
        font-size: 10pt !important;
        line-height: 16pt;
    }
}

@media (max-width: 768px) {

    .Grid6,
    .Grid4 {
        grid-template-columns: repeat(3, auto);
    }

    .button-link {
        height: 10vh;
        font-size: 12pt;
    }

    .full-width {
        grid-column: span 3;
        width: 100%;
    }
}

@media (max-width: 500px) {

    .Grid6,
    .Grid4 {
        grid-template-columns: repeat(2, auto);
    }

    .button-link {
        font-size: 10pt;
        height: 10vh;
    }

    .full-width {
        grid-column: span 2;
        width: 100%;

    }
}