    :root {
        --tt-blue: #0056b3; 
        --tt-text: #333333;
        --tt-border: #e0e0e0;
    }

    #news_box_tt {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
        background: #fff;
        border: 1px solid var(--tt-border);
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        min-height: 279px;
        contain: content;
    }

    #news_box_tt .tt-slider-track {
        display: flex;
        transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        will-change: transform;
    }

    #news_box_tt .tt-slide {
        flex: 0 0 100%;
        box-sizing: border-box;
        text-decoration: none !important;
        color: var(--tt-text) !important;
        display: flex;
        flex-direction: column;
        border-right: 1px solid var(--tt-border);
    }

    @media (min-width: 768px) {
        #news_box_tt .tt-slide { flex: 0 0 50%; }
    }

    @media (min-width: 1024px) {
        #news_box_tt .tt-slide { flex: 0 0 33.333%; }
    }

    #news_box_tt .tt-slide:hover .tt-slide-title {
        text-decoration: underline !important;
    }

    #news_box_tt .tt-slide:hover .tt-slide-img {
        transform: scale(1.05);
    }

    #news_box_tt .tt-slide-img-wrapper {
        width: 100%;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        background-color: #eee;
        transform: translateZ(0);
    }

    #news_box_tt .tt-slide-img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Adaptado para suportar tags de imagem e melhorar SEO/Performance */
        transition: transform 0.4s ease;
        display: block; /* Remove margem fantasma inferior */
    }

    #news_box_tt .tt-slide-content {
        padding: 15px !important;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        justify-content: space-between;
    }

    #news_box_tt .tt-slide-title {
        font-size: 16px !important;
        font-weight: 600 !important;
        color: var(--tt-blue) !important;
        margin: 0 0 15px 0 !important;
        line-height: 1.4 !important;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-transform: none !important;
    }

    #news_box_tt .tt-slide-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #news_box_tt .tt-slide-date {
        font-size: 12px !important;
        font-weight: normal !important;
        color: #666 !important;
        background-color: #f9f9f9 !important;
        border: 1px solid #eee !important;
        padding: 4px 8px !important;
        border-radius: 4px !important;
        margin: 0 !important;
    }

    #news_box_tt .tt-nav-btn {
        position: absolute;
        top: 35%;
        transform: translateY(-50%);
        background-color: rgba(255, 255, 255, 0.9) !important;
        color: var(--tt-text) !important;
        border: 1px solid var(--tt-border) !important;
        box-shadow: 0 2px 5px rgba(0,0,0,0.15) !important;
        cursor: pointer;
        padding: 12px 15px !important;
        font-size: 18px !important;
        z-index: 10;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50% !important;
        width: 45px !important;
        height: 45px !important;
        opacity: 0;
    }

    @media (hover: hover) {
        #news_box_tt:hover .tt-nav-btn {
            opacity: 1;
        }
    }

    #news_box_tt .tt-nav-btn:hover {
        background-color: var(--tt-blue) !important;
        color: #fff !important;
        border-color: var(--tt-blue) !important;
    }

    #news_box_tt #tt_btn_prev { left: 15px; }
    #news_box_tt #tt_btn_next { right: 15px; }

    #news_box_tt .tt-loading {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        text-align: center;
        color: #666 !important;
        font-size: 14px !important;
        font-weight: 600 !important;
    }