.guidelines__links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 25%;
}

.column-table td .guidelines__links a {
    margin-left: unset;
    text-align: left;
}

.guidelines__links a {
    padding-left: 28px;
    display: flex;
    align-items: center;
    position: relative;
    font-size: 16px;
    color: #2c2c2c;
    transition: 0.2s;

}

.guidelines__links a::before {
    content: "";
    width: 28px;
    height: 28px;
    position: absolute;
    left: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><g transform="translate(0 10) rotate(-90)"><path fill="%23002751" d="M200.1,134.579l-3.349,3.349,3.349,3.349-1.651,1.651-5-5,5-5Z" transform="translate(-192.128 -132.928)"/></g></svg>');
    background-size: 10px 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px 12px;
    transform: rotate(-90deg);
    transition: .2s
}

@media (min-width:961px) {
    .guidelines__links a:hover {
        color: #1e89ef
    }

    .guidelines__links a:hover::before {
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><g transform="translate(0 10) rotate(-90)"><path fill="%231e89ef" d="M200.1,134.579l-3.349,3.349,3.349,3.349-1.651,1.651-5-5,5-5Z" transform="translate(-192.128 -132.928)"/></g></svg>');
        background-size: 10px 10px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 12px 12px
    }
}

/* 
.guidelines__links {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.guidelines__links a {
    text-decoration: underline;
    transition: opacity .3s;
}

@media (min-width: 961px) {
    .guidelines__links a:hover {
        opacity: .7;
    }
} */