.wrap_latest_news-wrap {
    border-top: 1px solid var(--Text-Secondary);
    border-bottom: 1px solid var(--Text-Secondary);
    background: var(--Background-Light);
    color: var(--Text-Light);
}
.wrap_latest_news-content {
    margin-bottom: 3rem;
    position: relative;
}
.wrap_latest_news-title {
    color: var(--Background-Primary);
}

.wrap_latest_news {
    margin: 0 -1rem;
}
.latest-item-wrap {
    padding: 0 1rem;
}
.blog-item {
    display:block;
    height: 100%;
    position: relative;
    padding-bottom:7rem;
    transition: border-color .5s
}
.light-theme .blog-item {
    border: 1px solid var(--Text-Secondary);
    background: var(--Background-Light2);
}
.dark-theme .blog-item {
    border: 1px solid var(--Stroke-Primary);
    background: var(--Background-Secondary);
}
.light-theme .blog-item:hover {
    border-color: var(--Stroke-onHover2);
}
.dark-theme .blog-item:hover {
    border-color: var(--Stroke-onHover);
}
.blog-item-content {
    padding: 2rem 2.5rem 0;
}
.light-theme .blog-item-title {
    color: var(--Background-Primary);
}
.dark-theme .blog-item-title {
    color: #fff;
}
.news-item-info {
    max-height: 12rem;
    padding: 0;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    display: -webkit-box;
}
.light-theme .news-item-info {
    color: var(--Text-Light);
}
.dark-theme .news-item-info {
    color: var(--Text-Secondary);
}
.blog-item-date {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: 0.175rem;
    text-transform: uppercase;
    margin-bottom: .25rem
}
.light-theme .blog-item-date {
    color: var(--Text-Tertiary2);
}
.dark-theme .blog-item-date {
    color: var(--Text-Tertiary);
}
.blog-item-button {
    position: absolute;
    bottom:0;
    left:0;
    height: 3.5rem;
    width: 100%;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    transition: all .5s
}
.light-theme .blog-item-button {
    border-top: 1px solid var(--Text-Secondary);
    color: var(--Background-Primary);
}
.dark-theme .blog-item-button {
    border-top: 1px solid var(--Stroke-Primary);
    color: #fff;
}
.light-theme .blog-item:hover .blog-item-button {
    color: var(--Text-Tertiary2);
    border-color: var(--Stroke-onHover2);
}
.dark-theme .blog-item:hover .blog-item-button {
    color: var(--Text-Tertiary);
    border-color: var(--Stroke-onHover);
}

.blog-item-img {
    width: 100%;
    aspect-ratio: 1.817;
	position:relative;
}
.blog-item-img img {
	position: absolute;
    left:0; top:0;
    height: 100% !important;
    object-fit: cover;
    -moz-object-fit: cover;
    -webkit-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    width: 100% !important;
    transition: opacity .5s;
}
@media (min-width:768px) {
    .wrap_latest_news-title-supp-text {
        max-width: 45rem;
        flex-basis: 100%;
        padding-right: 2rem
    }
	.latest-item-wrap {
        flex-basis: 33.333%
    }
}
@media (max-width: 991px){
    .wrap_latest_news-wrap {
        padding: 5rem 0;
    }
    .blog-item {
        padding-bottom: 5rem;
    }
    .blog-item-title {
        margin-bottom: 1rem
    }
    .blog-item-date {
        font-size: 0.75rem;
    }
    .blog-item-title, .blog-item-content {
        word-break: break-word;
        hyphens: auto;
    }

}
@media (max-width: 991px)  and (min-width: 768px){
    .blog-item-content {
        padding: 1.25rem 1.25rem 0;
    }
    .blog-item-button {
        padding: 0 1.25rem
    }
}

@media (max-width:767px) {
    .wrap_latest_news-wrap {
        padding: 2.5rem 0 1rem;
    }
    .wrap_latest_news-content {
        margin-bottom: 2rem;
    }
    .wrap_latest_news-title-supp-text {
        margin-bottom: 1.5rem
    }
    .wrap_latest_news-content .button {
        position: relative;
        margin: 0 auto;

    }
    .latest-item-wrap {
        flex-basis: 100%;
        margin-bottom: 2rem;
    }
    .blog-item-content {
        padding: 1.25rem 1.5rem 0;
    }
    .blog-item-button {
        padding: 0 1.5rem
    }

}
@media (min-width: 992px) {
    .wrap_latest_news-wrap {
        padding: 7rem 0;
    }
}
