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

.news-single-wrapper h3 {
    text-align: center;
}

.news_meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
	gap: 8px;
	padding-bottom: 0;
	box-sizing: content-box;
}

.news_category {
	display: none;
    display: flex;
    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 {
    background: #66B5D2;
}

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

.category_important {
    background: #66B5D2;
}

.news-single-text {
    padding: 0 60px;
    border-top: 2px solid var(--background-sub);
    padding-top: 32px;
	letter-spacing: 0.08em;
}

.news-single-text p {
    margin: 0;
	letter-spacing: 0.08em;
}


@media screen and (max-width: 767px) {
    .news-single-section {
		margin: 108px 0 48px; 
	}

    .news-single-wrapper {
        padding: 24px;
        border-radius: 5px;
    }

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

    .news_meta {
        flex-direction: column;
		align-items: flex-start;
        gap: 4px;
        font-size: 12px;
    }

    .category-tag{
        padding: 0 8px;
        min-width: 80px;
        font-size: 12px;
		letter-spacing: 1px;
    }

    .news_category {
        gap: 8px;
    }

    .news-single-text {
        padding: 0;
    	padding-top: 16px;
    	font-size: 12px;
    }
}