﻿.card-item-outer {
    max-width: 44ch;
}

.card-item-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    position: relative;
    max-width: fit-content;
    min-width: max-content;
}

.card-item-title:before {
    content: "";
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    height: 1px;
    width: 3ch;
    background-color: var(--color-soft-orange);
    transition: width .3s ease;
}

.card-item-outer:hover .card-item-title:before {
    width: calc(100% + 1ch);
}
