h1 {
    color: red !important;
    font-size: 2rem !important;
    font-weight: bold !important;
    margin: 20px 0px !important;
    margin-bottom: 5px !important;
}

h2,
h3,
h4,
h5,
h6 {
    color: #1F2937 !important;
    font-size: 1.5rem !important;
    margin: 20px 0px !important;
}


h3 {
    font-size: 1.2rem !important;
}

p {
    margin: 20px 0px !important;
}

.listado-posts,
#articulo {
    list-style-type: disc !important;
    list-style-position: inside !important;

    h2 {
        margin-bottom: -20px !important;
        margin-top: 20px !important;
    }

    a {
        color: #ff0000 !important;

        &:hover {
            text-decoration: underline !important;
        }
    }
}

.ticker {
    background-color: #333;
    margin-top: 0px;
    text-align: right;
    min-height: unset;
    padding: 0px 10px;
    width: 100%;

    p {
        margin-bottom: -2px !important;
        font-weight: 600 !important;
        color: #666 !important;

        a {
            color: #666 !important;
            text-decoration: underline !important;
        }
    }

    a {
        color: #fff !important;

        &:hover {
            text-decoration: underline;
        }
    }
}

.vertical-ticker {
    --item-height: 2.2em;
    --items: 15;
    /* NÚMERO DE ITEMS */
    --duration: 82s;

    height: var(--item-height);
    overflow: hidden;
    position: relative;
}

.vertical-ticker__list {
    list-style: none;
    padding: 0;
    margin: 0;
    animation: ticker-scroll var(--duration) infinite;
}

.vertical-ticker__list li {
    height: var(--item-height);
    display: flex;
    align-items: center;
    justify-content: right;
}

.vertical-ticker__list a {
    text-decoration: none;
    font-weight: 100;
    font-size: 12px;
    white-space: nowrap;
}

@keyframes ticker-scroll {
    0% {
        transform: translateY(0);
    }

    6.25% {
        transform: translateY(0);
    }

    6.67% {
        transform: translateY(calc(-1 * var(--item-height)));
    }

    13.25% {
        transform: translateY(calc(-1 * var(--item-height)));
    }

    13.33% {
        transform: translateY(calc(-2 * var(--item-height)));
    }

    20% {
        transform: translateY(calc(-2 * var(--item-height)));
    }

    20.67% {
        transform: translateY(calc(-3 * var(--item-height)));
    }

    26.88% {
        transform: translateY(calc(-3 * var(--item-height)));
    }

    27.5% {
        transform: translateY(calc(-4 * var(--item-height)));
    }

    33.75% {
        transform: translateY(calc(-4 * var(--item-height)));
    }

    34.33% {
        transform: translateY(calc(-5 * var(--item-height)));
    }

    40.63% {
        transform: translateY(calc(-5 * var(--item-height)));
    }

    41.17% {
        transform: translateY(calc(-6 * var(--item-height)));
    }

    47.5% {
        transform: translateY(calc(-6 * var(--item-height)));
    }

    48% {
        transform: translateY(calc(-7 * var(--item-height)));
    }

    54.38% {
        transform: translateY(calc(-7 * var(--item-height)));
    }

    54.83% {
        transform: translateY(calc(-8 * var(--item-height)));
    }

    61.25% {
        transform: translateY(calc(-8 * var(--item-height)));
    }

    61.67% {
        transform: translateY(calc(-9 * var(--item-height)));
    }

    68.13% {
        transform: translateY(calc(-9 * var(--item-height)));
    }

    68.5% {
        transform: translateY(calc(-10 * var(--item-height)));
    }

    75% {
        transform: translateY(calc(-10 * var(--item-height)));
    }

    75.33% {
        transform: translateY(calc(-11 * var(--item-height)));
    }

    81.88% {
        transform: translateY(calc(-11 * var(--item-height)));
    }

    82.17% {
        transform: translateY(calc(-12 * var(--item-height)));
    }

    88.75% {
        transform: translateY(calc(-12 * var(--item-height)));
    }

    89% {
        transform: translateY(calc(-13 * var(--item-height)));
    }

    95.63% {
        transform: translateY(calc(-13 * var(--item-height)));
    }

    100% {
        transform: translateY(0);
    }
}