@import url(./normal.css);
@import url(./header.css);
@import url(./footer.css);
@import url(./side.css);

[v-cloak] {
    display: none;
}

.content-wrapper-side-ad {
    position: sticky;
    top: 60px;
    padding-top: 20px;
}

.ad-wrapper {
    width: 100%;
    text-align: center;
    max-width: 650px;
}

.ad-wrapper>div {
    display: flex;
    justify-content: center;
    align-items: center;
}


:root {
    --main-color: #f45b69;
    --blue: #4a90e2;
    --black: #02020b;
    --gray: #757575;
    --red: #cf0000;
    --border-color: #ced4da;
}

.container,
.content {
    width: 100%;
    max-width: 1140px;
    padding-right: 5px;
    padding-left: 5px;
    margin: 0 auto;
}

.content-wrapper {
    display: flex;
    padding: 10px 0;
}

.content-wrapper-main {
    width: 75%;
    padding-right: 30px;
}

.content-wrapper-side {
    width: 25%;
}

.top-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 40px 20px;
    padding-bottom: 40px;
}

.col-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px 20px;
    padding-bottom: 40px;
}

.col {
    border-top: 3px solid var(--main-color);
    padding-top: 40px;
}

.col-news {
    position: relative;
    display: block;
    cursor: pointer;
}

.col-news:last-child::after {
    display: none;
}

.col-news::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background-color: #ddd;
}

.col-news_poster {
    width: 100%;
    height: 165px;
    object-fit: cover;
}

.col-news_title {
    font-size: 16px;
    margin-bottom: 0;
    padding: 18px 0;
}

.news.big {
    grid-column: span 6;
}

.news {
    grid-column: span 2;
}

.news a {
    display: flex;
    flex-direction: column;
}

.news.big {
    position: relative;
    border: 1px solid #ddd;
}

.news.big .news-poster {
    height: 450px;
}

.news.big a>div {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background-color: #fff;
    opacity: .9;
    padding: 10px 15px;
}

.news.big a>div .news-title {
    font-size: 30px;
    -webkit-line-clamp: 4;
    margin-bottom: 10px;
}

.news.big a>div .news-sub {
    color: var(--gray);
    font-size: 13px;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
    word-break: break-all;
    box-sizing: border-box;
}

.news.second {
    grid-column: span 3;
}

.news-inset-side {
    display: flex;
    flex-direction: row !important;
    margin-bottom: 15px;
}

.news-inset-side:last-child {
    margin-bottom: 0;
}

.news-inset-side_img {
    width: 105px;
    height: 65px;
    object-fit: cover;
    margin-right: 10px;
}

.news-inset-side_title {
    flex: 1;
    font-size: 14px;
    margin-bottom: 9;
}

.news-poster {
    width: 100%;
    height: 165px;
    object-fit: cover;
}

.news-poster.inset {
    height: 200px;
}

.news-type {
    display: block;
    color: var(--main-color);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
    padding: 8px 0;
}

.news-title {
    padding-top: 5px;
    font-size: 18px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    word-break: break-all;
    box-sizing: border-box;
}

.bread {
    display: flex;
    align-items: center;
    height: 38px;
}

.bread a {
    font-size: 12px;
    font-weight: lighter;
    color: #5d5d5d;
    text-transform: capitalize;
}

.bread-home {
    position: relative;
    padding-right: 30px;
}

.bread-home::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 14px;
    width: 7px;
    height: 7px;
    border-top: 1px solid #111827;
    border-right: 1px solid #111827;
    transform: translateY(-50%) rotate(45deg);
}

main {
    position: relative;
    min-height: 70vh;
}

.load {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 640px) {
    .content-wrapper {
        flex-direction: column;
    }

    .top-wrapper {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 25px 10px;
    }

    .content-wrapper-main {
        width: 100%;
        padding-right: 0;
    }

    .content-wrapper-side {
        width: 100%;
    }

    .news {
        grid-column: span 1;
    }

    .news.big, .news.second {
        grid-column: span 2;
    }

    .news.big .news-poster {
        height: 213px;
    }

    .news.big a>div {
        position: static;
        width: 100%;
    }

    .col {
        padding-top: 20px;
    }

    .col-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}