/* RSSFectrans - Estilos Completos */
.rssfectrans-container {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.rssfectrans-wrapper {
    position: relative;
    width: 100%;
}

/* VERTICAL */
.rssfectrans-vertical {
    overflow: hidden;
}

.rssfectrans-vertical .rssfectrans-wrapper {
    display: flex;
    flex-direction: column;
}

.rssfectrans-vertical .rssfectrans-item {
    border-bottom: 1px solid #f0f0f0;
    min-height: 24px;
    display: flex;
    align-items: center;
}

.rssfectrans-vertical .rssfectrans-item:last-child {
    border-bottom: none;
}

/* HORIZONTAL - TÍTULOS COMPLETOS */
.rssfectrans-horizontal {
    overflow: hidden;
    width: 100%;
}

.rssfectrans-horizontal .rssfectrans-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    animation-play-state: running;
}

.rssfectrans-horizontal .rssfectrans-item {
    flex: 0 0 auto;
    min-width: 400px;
    max-width: 500px;
    border-right: 1px solid #e0e0e0;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: flex;
    align-items: center;
    min-height: 40px;
}

.rssfectrans-horizontal .rssfectrans-item:last-child {
    border-right: none;
}

.rssfectrans-horizontal .rssfectrans-link {
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    padding: 8px 12px;
    line-height: 1.4;
    display: block;
}

/* PAUSA */
.rssfectrans-pausavel:hover .rssfectrans-wrapper {
    animation-play-state: paused !important;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .rssfectrans-horizontal .rssfectrans-item {
        min-width: 300px;
    }
}

@media (max-width: 480px) {
    .rssfectrans-horizontal .rssfectrans-item {
        min-width: 250px;
    }
}