/* ==========================================================================
   History Channel Media Strip
   ========================================================================== */

.wow-history-strip{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
}

.wow-history-logo{
    flex:0 0 auto;
}

.wow-history-logo img{
    display:block;
    height:28px;
    width:auto;
}

.wow-history-content{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:6px;
    line-height:1.5;
}

.gold-divider,
.gold-pipe{
    color:var(--wow-secondary);
}

/* Tablet */

@media (max-width:1024px){

    .wow-history-strip{
        gap:10px;
    }

}

/* Mobile */

@media (max-width:767px){

    .wow-history-strip{

        justify-content:center;
        text-align:center;
        gap:8px;

    }

    .wow-history-content{

        justify-content:center;

    }

}