.links_section{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* --- Link card --- */

.link_card{
    width: 100%;
    height: 100px;
    box-sizing: border-box;
    padding-left: 30px;
    padding-right: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    border-radius: 10px;
    background: var(--component);
    text-decoration: none;
    transition: 0.3s;
    position: relative;
}

.link_card:hover{
    cursor: pointer;
    background: white;
}

/* link icon */

.link_icon{
    width: 30px;
    height: 30px;
    opacity: 0.7;
}

/* arrow */

.arrow{
    width: 20px;
    height: 20px;
    margin-left: auto;
    transform: rotate(135deg);
    opacity: 0.5;
}

/* --- Link info --- */

.link_info{
    width: fit-content;
    height: fit-content;
}

/* title */

.link_info p:first-of-type{
    font-size: 14px;
    color: var(--text1);
}

/* text */

.link_info p:last-of-type{
    margin-top: 5px;
    font-size: 13px;
    color: var(--text2);
}

/* --- Media --- */

@media screen and (max-width: 700px) {
    
    .link_card{
        height: 120px;
    }

    /* arrow */

    .arrow{
        width: 14px;
        height: 14px;
        position: absolute;
        top: 15px;
        right: 15px;
    }

    /* text */

    .link_card p:last-of-type{
        width: 250px;
    }
}

@media screen and (max-width: 400px) {

    .link_card{
        padding-left: 20px;
        gap: 20px;
    }

    /* text */
    
    .link_card p:last-of-type{
        width: 200px;
    }
}