/* widget */

.widget-title-cus {
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 3.8rem;
    margin-bottom: 1rem;
    color: #000000;
}

.post-re-box {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
    width: 100%;
}

.post-re-box:last-child {
    margin-bottom: 0;
}

.post-re-img {
    width: 15rem;
    border-radius: 1.5rem;
    overflow: hidden;
}

.post-re-img img {
    width: 100%;
    height: 10.4rem;
    object-fit: cover;
}

.post-re-text {
    width: calc(100% - 15rem);
    padding-left: 2rem;
}

.post-re-date {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 2.5rem;
    color: #666666;
}

.post-re-title {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 2.5rem;
    color: #332828;
    margin-bottom: 2rem;
    transition: all 0.3s ease-in-out;
}

.post-re-box:hover .post-re-title {
    color: var(--primary-color);
}

.post-new {
    padding: 0 2.5rem 3rem;
    border-radius: 3rem;
    overflow: hidden;
    box-shadow: 0 .4rem 3.6rem 0 #0000001A;
}

.blog-wrapper>.row>.col {
    padding: 0 1.5rem 3rem !important;
}

.blog-wrapper>.row.row-large {
    max-width: 132rem;
}

.box-widget {
    margin-bottom: 22px !important;
    margin-top: 22px !important;
}

.box-widget .box-text {
    padding: 0 4rem !important;
    text-shadow: unset !important;
}

.box-widget .box-image img {
    border-radius: 3rem;
}

.box-widget-desc * {
    font-weight: bold;
    font-size: 2.4rem;
}

.widget-line * {
    color: transparent !important;
    background: linear-gradient(90deg, #FFC400 0%, #00E6FF 100%);
    font-style: normal;
    background-clip: text;
    font-size: 2.8rem;
    position: relative;
}

.widget-line *::after {
    content: "";
    width: 0%;
    height: .6rem;
    display: inline-block;
    background: url(../images/line-title.png) center / contain no-repeat;
    position: absolute;
    bottom: .6rem;
    left: 0;
}

.widget-line *::after {
    width: 100%;
}

.dark .widget-line *::after {
    background: url(../images/line-title-white.png) center / contain no-repeat;
    height: 1.3rem;
    bottom: -.8rem;
}

.box-widget-desc * {
    font-weight: bold;
    font-size: 2.4rem;
}

@media screen and (min-width: 850px) {

    .post-new .post-re-box:first-child {
        flex-direction: column;
        margin: 0 -2.5rem;
        width: auto;
    }

    .post-new .post-re-box:first-child .post-re-img {
        border-radius: 0;
        width: 100%;
    }

    .post-new .post-re-box:first-child .post-re-img img {
        height: 25rem;
        border-radius: 0;
    }

    .post-new .post-re-box:first-child .post-re-text {
        width: 100%;
        padding: 2rem 2.5rem 0;
        margin-bottom: 2rem;
    }

    .post-new .post-re-box:first-child .post-re-text::after {
        border-bottom: .1rem solid #D9D9D9;
        content: "";
        display: block;
        width: 100%;
        margin-top: 1.5rem;
    }

    .post-new .post-re-box:first-child .post-re-title {
        font-size: 1.8rem;
        -webkit-line-clamp: 3;
    }

    .blog-wrapper>.row>.col.large-9 {
        flex-basis: 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .blog-wrapper>.row>.col.large-3 {
        flex-basis: 33.3333333333%;
        max-width: 33.3333333333%;
    }

}