:root{
    --brand-color:#0168C1;
    --brand-hover-color:#017CE6;
    --link-color:#2575FC;
    --light-blue:#11B7D9;
    --darkest-blue:#00063F;
    --dark-blue: #071C2F;
    --ddc-red:#C80000;
    --darker-red:#D30000;
    --light-grey:#F8F8F8;
    --light-grey-2:#F2F2F2;
    --grey-1:#D4D4D4;
    --grey-2:#949494;
    --grey-3:#27282C;
    --border-grey:#E9E9E9;
    --darkest-grey: #1A1A1A;
    --ddc-espectaculos: #E40556;
    --ddc-deportes:#0F825A;
    --ddc-yellow: #FFCA05;
    --ddc-suplemento-verde: #B2C769;
    --ddc-black: #0C0C0C;
    --extra-light-blue: #E5EFF9;
    --ddc-purprle: #8F1E4F;
}
*{
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    padding: 0;
    margin: 0;
}
body {
    font-family: Arial, sans-serif;
}
#siteHeader{
    height: 56px;
    padding: 0 20px 0 15px;
    background: #fff;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 5%);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    transform-origin: top;
}
#siteHeader h1{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#siteHeader .headerLogo{
    width: auto;
    height: 28px;
    position: relative;
    top: 3px;
}
main{
    max-width: 1330px;
    padding: 50px 20px;
    margin: 0 auto;
}
h2{
    font-size: 22px;
    line-height: 1;
    color: var(--brand-color);
    margin-bottom: 20px;
}
a{text-decoration:none;color:inherit;}
a:not(.go-to-index){
    font-size: 19px;
    color: var(--grey-3);
    text-decoration: underline;
    text-decoration-color: var(--brand-color);
    text-decoration-thickness: 2px;
}
ul,ol{list-style:none}
li{
    border-bottom: 1px solid var(--border-grey);
    padding: 20px 0;
}
.go-to-index{
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-color);
    margin-top: 50px;
}
@media (min-width: 1024px){
    #siteHeader {
        height: 90px;
        padding: 0;
        box-shadow: unset;
        border-bottom: 4px solid var(--light-grey);
    }
    #siteHeader .headerLogo {
        width: auto;
        height: 50px;
        top: 6px;
    }
    a:not(.go-to-index):hover{
        text-decoration: none;
    }
    .go-to-index:hover{
        text-decoration: underline;
    }
}