/* ========================================
   Show More
   ======================================== */

.show-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #316EA9;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    position: relative;
}

.show-more::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #316EA9;
    transition: width 0.3s ease-out;
}

.show-more:hover {
    text-decoration: none;
    color: #316EA9;
}

.show-more:hover::after {
    width: 100%;
}

.show-more--icon {
    display: inline-flex;
    align-items: center;
}

.show-more--icon svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}
