/**
* Widget Próximos Eventos
* @version	0.0.1
*/
.gg-events-title-link{
    color: inherit !important;
    text-decoration: none;
}

.gg-events{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gg-event{
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    min-height: 80px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    background-position: center center;
    background-size: cover;
    background-blend-mode: multiply;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease;
}

.gg-event:hover{
    transform: translateY(-2px);
}

.gg-event__date{
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 48px;
    padding: 6px 0;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.15);
    color: #FFF;
    line-height: 1.1;
}

.gg-event__day{
    font-size: 20px;
    font-weight: 700;
}

.gg-event__month{
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.gg-event__details{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gg-event__title{
    margin-bottom: 5px;
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

.gg-event__time{
    color: #FFF;
    font-size: 12px;
    line-height: 1.2;
}

.gg-events-empty{
    color: #FFF;
    font-size: 12px;
}

.gg-events-tz{
    margin: 8px 0 0;
    font-size: 11px;
    opacity: .7;
}
