.news-detail-big {
	word-wrap: break-word;
	position: relative;
	height: 100%;
	display: flex;
}


.news-big-detail-name {
	position: absolute;
	top: 41%;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;

}

.news-big-detail-title {
	color: var(--tone-day-1000);
	font-size: 64px;
	font-style: normal;
	font-weight: 300;
	line-height: 68px;
	letter-spacing: -1.28px;
	text-transform: uppercase;
	text-align: center;
}

.news-detail-big-info {
	color: var(--tone-night-300);
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}

.news-big-detail-link {
	display: flex;
	width: 100px;
	height: 40px;
	padding: 8px 12px;
	justify-content: center;
	align-items: center;
	background-color: var(--tone-day-1000);
	margin-top: 4px; 
	transition: all 0.3s;
	border: 1px solid transparent;
}
.news-big-detail-link:hover{
	background-color: var(--tone-day-900);
	transition: all 0.3s;
	border-color: var(--tone-day-1000);
	color: var(--tone-day-1000);
}
.main-banner-two-shadow {
	background-color: rgba(34, 34, 34, 0.40);
	position: absolute;
	width: 100%;
	height: 100%;
}

@media(max-width:480px) {

	.news-big-detail-title {
		font-size: 40px; 
		font-weight: 300;
		line-height: 48px; 
		letter-spacing: -1.6px;
	}
	 
}