.news_item {
    margin: 24px 0;
}

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

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

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

.category-tag {
    display: inline-block;
    padding: 0 8px;
    border-radius: 2rem;
    color: #ffffff;
    text-align: center;
    min-width: 140px;
}

.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-top: 2px solid #8399A8;
  border-bottom: 2px solid #8399A8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.arrow-wrapper + .arrow-wrapper {
  border-top: none;
}

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

    .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;
        font-size: 12px;
		padding-bottom: 8px;
    }
    .news_category {
        font-size: 12px;
		letter-spacing: 1px;
        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;
	}
}