// AGENDA
.agenda{
    margin-top: 1.5rem;
}

.agenda__entry{
    position: relative;
    margin-top: 0.75rem;
    padding: 1.5rem;
    padding-left: 9rem;
    background: $grey--light;

    @include desktop{
        @include transition(background);

        // border
        &:before{
            pointer-events: none;
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 1px solid $grey--medium;
            // hide
            opacity: 0;
            @include transition(opacity);
        }

        &:hover{
            background: transparent;
        }
        &:hover:before{
            opacity: 1;
        }
        &:hover .agenda__title{
            color: $secondary;
        }
    }
}

.agenda__hours{
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: block;
    line-height: $font-leading;
    font-size: 0.875rem;
    font-weight: 700;
    color: $main;
}

.agenda__title{
    margin-top: 0;

    @include desktop{
        @include transition(color);
    }
}

.agenda__description{
    margin-top: 0;
}
