/* 1. Ajuste do Card Pai: Removemos o padding para o banner colar na borda */
#card-noticias {
    padding: 0 !important;
    overflow: hidden;
    border: none;
}

/* 2. Reset do Ticker-Container: Ele agora vira o palco do Banner */
#ticker-container {
    width: 100%;       /* Ocupa tudo agora */
    margin: 0;         /* Sem margem lateral */
    min-height: 100px; /* Mesma altura dos cards do Vitória */
    padding: 0;        /* Padding agora é interno do banner */
    background: #ffffff; 
    border-radius: 0;  /* O arredondamento vem do #card-noticias */
}

#ticker-text {
    width: 100%;
    height: 100%;
}

/* 3. O Banner em si */
.banner-noticia {
    position: relative;
    width: 100%;
    min-height: 132px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    box-sizing: border-box;
    text-align: left; /* Ticker era center, banner é left */
}

.banner-overlay-news {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.banner-content-news {
    position: relative;
    z-index: 2;
    width: 100%;
}

.banner-tag {
    color: #ffcc00; /* Amarelo Vitória */
    font-size: 0.7rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.banner-titulo-link {
    text-decoration: none;
    color: white !important;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 10px;
    /* Configuração para cortar o texto em 3 linhas */
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Prefixo para Chrome/Safari/Edge */
    line-clamp: 3;         /* Propriedade padrão (resolve o aviso) */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
