/* ------------------------------------------------------------- *
 * Lineup text
/* ------------------------------------------------------------- */

/* Overlay menu list links (master parent) */
.tt-ol-lineup-list {
 display: inline-block;
}

.tt-ol-lineup-list > li > a {
    /* font-size: clamp(34px, 4vw, 68px);*/
    font-size: clamp(24px, 3vw, 55px);
    font-weight: bold;
    font-weight: 600;
    line-height: 1.1;
    padding-right: 25px;

}

.tt-ol-lineup-list > li:nth-child(odd) > a {
    transition: color 0.2s, transform 0.2s ease-in-out;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
    -webkit-text-fill-color: transparent;
}


/* Overlay menu list hover/active (master parent). */
.tt-ol-lineup-list > li > a:hover {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
    color: #fe0226;
    background-image: linear-gradient(315deg, #fe0226 0%, #fd5f3d 50%);
    background-clip: text;
    font-style: italic !important; 
}

.tt-ol-lineup-list > li:nth-child(odd) > a:hover {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
    color: #fe0226;
    background-image: linear-gradient(135deg, #fe0226 0%, #fd5f3d 50%);
    background-clip: text;
    font-style: italic !important; 

}

/* ------------------------------------------------------------- *
 * upscale
/* ------------------------------------------------------------- */

@media (max-width: 576px) {
    .upscale {
        width: 150%;
    }
}
@media (max-width: 768px) {
    .upscale {
        width: 125%;
    }
}
@media (max-width: 992px) {
    .upscale {
        width: 100%;
        
    } 
}
@media (min-width: 1025px) {
    .upscale {
        width: 70%;
    }
}
@media (min-width: 1400px) {
    .upscale {
        width: 50%;
    }    
}
