a {
    color: inherit;
    text-decoration: none;
}

a.learn-more {
    border-bottom: 1px solid;
    border-bottom-color: currentColor;
    display: block;
    width: fit-content;

    transition: font-size 0.5s;
}

/* a.learn-more::after {
    content: "";
    display: inline-block;
    background: url(../assets/arrow_right.svg) no-repeat;
    background-size: auto;
    background-size: 15px 15px;
    width: 15px;
    height: 15px;
    margin-left: 5px;
    position: relative;
    top: 1px;

    transition: all 0.5s;
} */

a.learn-more.white-arrow::after {
    /* make white */
    filter: invert(100%) sepia(30%) saturate(0%) hue-rotate(233deg) brightness(106%) contrast(100%);
}

a.learn-more:hover {
    font-size: 1.5rem;
}
a.learn-more:hover::after {
    background-size: 16px 16px;
    width: 16px;
    height: 16px;
}

.slight-expand {
    transition: transform 0.2s;
}
.slight-expand:hover {
    transform: scale(1.25);
}