.tiiga-flash-container {
    border: 1px solid #ddd;
    padding: 10px;
    background: transparent; /* garder fond transparent */
    max-width: 100%;
    overflow: hidden;
    font-family: Arial, sans-serif;
    height: 240px; /* hauteur fixe du bloc */
    position: relative;
}

/*.tiiga-flash-title {
    background: #c00;
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}*/

.tiiga-flash-ticker {
    position: absolute;
    top: 40px; /* commence après le titre */
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: scrollUp 30s linear infinite;
}

.tiiga-flash-item {
    font-size: 14px;
    line-height: 20px;
}

.tiiga-flash-date {
    font-weight: bold;
    margin-right: 5px;
    color: #000;
}

.tiiga-flash-item a {
    text-decoration: none;
    color: green;
}

.tiiga-flash-item a:hover {
    text-decoration: underline;
}

/* Animation de défilement vertical */
@keyframes scrollUp {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); } /* défile moitié (car doublé en JS) */
}
