.news-wrapper {
    background: #ffffff;
    border-radius: 10px;
    padding: 68px;
}

.news-wrapper h3 {
    margin: 0;
    font-weight: bold;
}

.news-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	color: inherit;
}

.news_item {
    margin: 24px 0;
}

.news_meta {
    display: flex;
    align-items: center;
	padding-bottom: 12px;
	gap: 12px;
}

.news_category {
    display: flex;
	flex-wrap: wrap;
    gap: 12px;
    width: auto;
	font-size: 18px;
}

.category-tag {
    display: inline-block;
	flex: 0 0 auto;
    padding: 0 8px;
    border-radius: 2rem;
    color: #ffffff;
    text-align: center;
    min-width: 140px;
	box-sizing: content-box;
	white-space: nowrap;
}

.category_news,
.category-news-en {
    background: #66B5D2;
}

.category_notice,
.category-notice-en {
    background: #ffffff;
    border: 2px solid #66B5D2;
    color: #66B5D2;
}

.category_important,
.category-important-en {
    background: #66B5D2;
}

.news_arrow {
	display: inline-block;
	vertical-align: middle;
	color: #333;
	line-height: 1;
	position: relative;
	width: 1em;
	height: 1em;
	transform: translateX(-25%) rotate(45deg);
}

.news_arrow::before, .news_arrow::after {
	content: '';
	position: absolute;
	background: currentColor;
}

.news_arrow::before {
	top: 0;
	left: 0;
	right: 0;
	height: 0.1em;
}

.news_arrow::after {
	top: 0;
	right: 0;
	bottom: 0;
	width: 0.1em;
}

.arrow-wrapper {
    border-bottom: 2px solid #8399A8;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.arrow-wrapper:first-child {
    border-top: 2px solid #8399A8;
}

@media screen and (max-width: 767px) {
    .news-wrapper {
        padding: 24px;
        border-radius: 5px;
    }

    .news-wrapper h3 {
        font-size: 14px;
        font-weight: bold;
    }

    .news_item {
		margin: 16px 0;
	}

    .news_meta {
		flex-direction: column-reverse;
		align-items: flex-start;
		gap: 4px;
		padding-bottom: 8px;
		font-size: 12px;
		letter-spacing: 1px;
    }
	
    .news_category {
        font-size: 12px;
        gap: 4px;
    }
	
    .category-tag {
        min-width: 80px;
        padding: 0 8px;
    }

    .arrow-wrapper {
    	border-bottom: 2px solid #AFBDC7;
		padding: 0 8px;
	}

	.arrow-wrapper:first-child {
    	border-top: 2px solid #AFBDC7;
	}
}