/* Frontend CSS for the Recap shortcode */
.recap-section {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 1em; /* Adjust as needed */
    padding-bottom: 5px;
    display: flex;
    align-items: center; /* Vertically align items */
}

.recap-section .recap-label {
    color: #333; /* Darker color for 'RECAP |' */
    margin-right: 5px;
    text-transform: uppercase;
}

.recap-section .recap-link {
    color: #0073aa;
    border: 0 none;
    text-decoration: none;
    background-image: linear-gradient(120deg, #def3ff 0%, #90d6ff 100%);
    background-repeat: no-repeat;
    background-size: 100% 4px;
    background-position: 0 100%;
    transition: background-size .25s ease-in;
}
.recap-section .recap-link:hover {
    background-size: 100% 100%;
}