/* Custom styles for Giorgia Vecchini's website */


/* Add more custom styles as needed */

#header a {
    color: #f6edf5;
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

/* Special link style inside .box */
.box a {
    position: relative;
    text-decoration: none;
    color: inherit; /* Keeps the original text color */
}

.box a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(
        to right,
        #8E44AD,
        #9B59B6,
        #AF7AC5,
        #D2B4DE,
        #ffffff
    );
    background-size: 200% 100%;
    animation: moveGradient 10s linear infinite;
}

@keyframes moveGradient {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}

/* Styles for the future events section */
.post.featured h3 {
    margin-bottom: 0.5em;
    color: #3c3b3b;
}

.post.featured .box {
    margin-bottom: 2em;
}

.post.featured .box:last-of-type {
    margin-bottom: 0;
}
