.hot-news {
    width: 100%;
    max-width: 600px;
}

.hot-news-inner {
    background-color: #ffffff;
    padding: 30px;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.75);
    display: grid;
    grid-template: 1fr / 1fr;
}

.hot-article {
    opacity: 0;
    pointer-events: none;
    grid-row: 1 / 1;
    grid-column: 1 / 1;
    transition: opacity 0.3s ease;
}

.hot-article.active {
    opacity: 1;
    pointer-events: auto;
}

.hot-img {
    width: 100%;
}

.hot-new-body {
    padding: 2.5em 0 1.2em 0;
    position: relative;
}

.hot-new-body:before {
    display: block;
    content: " ";
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 64px;
    background-image: url("../../../img/meta-symbol-v.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.hot-new-body:after {
    display: block;
    content: " ";
    position: absolute;
    top: -80px;
    left: 24px;
    width: 216px;
    height: 56px;
    background-image: url("../../../img/joy-text-cs.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.lang-en .hot-new-body:after {
    background-image: url("../../../img/joy-text-en.svg");
}

.hotnews-title {
    font-size: 1.25em; /* 25 */
    font-weight: 300;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
}

.hot-news .dots {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    margin-top: 50px;
}

.hot-news .dots a {
    position: relative;
    width: 13px;
    height: 13px;
    border-radius: 1000px;
    margin-right: 15px;
    background-color: var(--red);
    transition: background-color 0.3s ease;
}

.hot-news .dots a:last-of-type { margin-right: 0; }

.hot-news .dots a, .hot-news .dots a:hover { text-decoration: none; }

.hot-news .dots a.active { background-color: #000000; }

@media screen and (max-width: 660px) {
    .hot-new-body:after {
        top: -12.12vw;
        left: 3.63vw;
        width: 32.72vw;
        height: 8.4848vw;
    }
}

@media screen and (max-width: 480px) {
    .hot-new-body:after {
        top: -10vw;
        left: 2vw;
        width: 24vw;
    }
}
