
.news-list .row {
	row-gap: 32px;
}
.row div a{text-decoration: none;}
.news-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0,0,0,.08);
	transition: all .35s ease;
}

.news-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 25px 60px rgba(0,0,0,.15);
}

.news-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	flex-shrink: 0;
}

.news-card .content {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 22px 22px 26px;
}

.news-card h3 {
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.4;
	margin: 10px 0 12px;
}

.news-card p {
	flex-grow: 1;
	font-size: 0.95rem;
	color: #666;
	line-height: 1.6;
}

.news-card .meta {
	font-size: 0.8rem;
	color: #aaa;
	margin-top: 14px;
}

/* ===== News Category Badge (공통) ===== */
.news-tag {
	display: inline-flex;
	justify-content: center;
	width:100px;	
	height: 28px;              /* 고정 높이 */
	padding: 0 14px;

	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: .08em;

	border-radius: 14px;
	border: 1px solid;
	white-space: nowrap;

	margin-bottom: 14px;
}

.news-tag.tech {
	color: #1a73e8;
	background: rgba(26,115,232,.08);
	border-color: rgba(26,115,232,.35);
}

.news-tag.press {
	color: #7b4de0;
	background: rgba(123,77,224,.08);
	border-color: rgba(123,77,224,.35);
}

.news-tag.ir {
	color: #1e8e3e;
	background: rgba(30,142,62,.08);
	border-color: rgba(30,142,62,.35);
}

.news-tag.esg {
	color: #ef6c00;
	background: rgba(239,108,0,.08);
	border-color: rgba(239,108,0,.35);
}

/* seq detail*/
/* ===== News View ===== */
.news-view {
	padding: 80px 0 120px;
}

.news-view-header {
	max-width: 900px;
	margin: 0 auto 50px;
	text-align: center;
}

.news-view-header .tag {
	display: inline-block;
	padding: 6px 14px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: .08em;
	color: #1a73e8;
	border: 1px solid rgba(26,115,232,.3);
	border-radius: 20px;
	margin-bottom: 16px;
}

.news-view-header h1 {
	font-size: 2.4rem;
	font-weight: 800;
	line-height: 1.3;
	margin-bottom: 18px;
}

.news-view-header .meta {
	font-size: 0.85rem;
	color: #999;
}

/* ===== Content ===== */
.news-view-content {
	max-width: 900px;
	margin: 0 auto;
	font-size: 1.05rem;
	line-height: 1.9;
	color: #333;
}

.news-view-content img {
	width: 100%;
	border-radius: 16px;
	margin: 40px 0;
}

.news-view-content p {
	margin-bottom: 28px;
}

/* 강조 인용 */
.news-quote {
	margin: 60px 0;
	padding: 32px 40px;
	background: #f5f7fa;
	border-left: 4px solid #1a73e8;
	font-size: 1.05rem;
	font-weight: 500;
	color: #222;
}

/* ===== Navigation ===== */
.news-view-nav {
	max-width: 900px;
	margin: 90px auto 0;
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.news-view-nav a {
	flex: 1;
	padding: 26px;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	text-decoration: none;
	transition: all .3s ease;
}

.news-view-nav a:hover {
	border-color: #1a73e8;
	transform: translateY(-3px);
}

.news-view-nav span {
	display: block;
	font-size: 0.75rem;
	color: #999;
	margin-bottom: 8px;
}

.news-view-nav strong {
	font-size: 0.95rem;
	font-weight: 700;
	color: #111;
}

.news-back {
	text-align: center;
	margin-top: 60px;
}

.news-back a {
	font-size: 0.9rem;
	color: #555;
	text-decoration: underline;
}
