.news-page-title {
	width: 100%;
	background: url(../image/board3.jpg) no-repeat center / 100% 100%;
	position: relative;
	overflow: hidden;
	min-height: 32vh;
}

.news-page-title::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 20% 20%, rgba(45, 95, 141, 0.5), transparent),
				radial-gradient(ellipse at 80% 80%, rgba(45, 95, 141, 0.4), transparent);
	pointer-events: none;
}

.page-title-inner {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 195px 20px;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
	text-align: center;
	color: #fff;
}

.news-page-title h1 {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 15px;
	font-family: "Noto Sans KR", "Pretendard", sans-serif;
	letter-spacing: -0.02em;
	position: relative;
	z-index: 1;
}

.news-page-title p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
	position: relative;
	z-index: 1;
}

.news-register-section {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}

.news-register-btn {
	padding: 14px 32px;
	background: #7b35b5;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: "Noto Sans KR", "Pretendard", sans-serif;
}

.news-register-btn:hover {
	background: #6228a0;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(54, 8, 78, 0.3);
}

.news-modal {
	display: none;
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	align-items: center;
	justify-content: center;
	overflow-y: auto;
}

.news-modal.active {
	display: flex;
}

.news-modal-content {
	background: #fff;
	border-radius: 12px;
	padding: 40px;
	width: 90%;
	max-width: 550px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	position: relative;
	margin: 40px 0;
}

.news-modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: none;
	border: none;
	font-size: 28px;
	cursor: pointer;
	color: #999;
	transition: color 0.3s;
}

.news-modal-close:hover {
	color: #333;
}

.news-modal-content h2 {
	text-align: center;
	margin-bottom: 30px;
	font-size: 20px;
	color: #333;
	font-family: "Noto Sans KR", "Pretendard", sans-serif;
}

#news-register-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.form-group label {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	font-family: "Noto Sans KR", "Pretendard", sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 12px 14px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 14px;
	font-family: "Noto Sans KR", "Pretendard", sans-serif;
	transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #2d5f8d;
	box-shadow: 0 0 0 3px rgba(45, 95, 141, 0.1);
}

.form-group textarea {
	resize: vertical;
	font-family: "Noto Sans KR", "Pretendard", sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: #bbb;
}

.form-actions {
	display: flex;
	gap: 12px;
	margin-top: 25px;
}

.btn-submit,
.btn-cancel {
	flex: 1;
	padding: 14px 20px;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: "Noto Sans KR", "Pretendard", sans-serif;
}

.btn-submit {
	background: #7b35b5;
	color: #fff;
}

.btn-submit:hover {
	background: #6228a0;
}

.btn-cancel {
	background: #f0f0f0;
	color: #666;
	border: 1px solid #ddd;
}

.btn-cancel:hover {
	background: #e0e0e0;
}

.news-container {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	padding: 60px 20px;
	box-sizing: border-box;
}

.news-filters {
	display: flex;
	gap: 24px;
	margin: 0 auto 26px;
	width: 108%;
	max-width: 877px;
	box-sizing: border-box;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.news-filter-btn {
	padding: 12px 28px;
	border: 2px solid #d4a574;
	background: transparent;
	color: #2d5f8d;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	font-size: 15px;
	transition: all 0.3s ease;
	font-family: "Noto Sans KR", "Pretendard", sans-serif;
}

.news-filter-btn:hover,
.news-filter-btn.active {
	background: #7b35b5;
	color: #fff;
	border-color: #7b35b5;
}


.news-item {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: all 0.35s cubic-bezier(0.23, 1, 0.320, 1);
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	padding: 30px 25px;
	border-top: 4px solid #d4a574;
}

.news-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.news-icon {
	font-size: 48px;
	margin-bottom: 15px;
	text-align: center;
}

.news-content {
	flex: 1;
}

.content-title {
	font-size: 18px;
	font-weight: 700;
	color: #2d5f8d;
	text-align: center;
	margin-bottom: 20px;
	padding-bottom: 14px;
	border-bottom: 2px solid #e8e0f0;
	line-height: 1.4;
	font-family: "Noto Sans KR", "Pretendard", sans-serif;
}

.news-title {
	font-size: 18px;
	font-weight: 700;
	color: #2d5f8d;
	margin-bottom: 10px;
	line-height: 1.4;
	font-family: "Noto Sans KR", "Pretendard", sans-serif;
}

.news-desc {
	font-size: 15px;
	color: #444;
	line-height: 1.9;
	white-space: pre-line;
	word-break: break-word;
}

.news-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 50px;
}

.pagination-btn {
	min-width: 45px;
	height: 45px;
	border: 1px solid #d4a574;
	background: transparent;
	color: #2d5f8d;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
	font-family: "Noto Sans KR", "Pretendard", sans-serif;
}

.pagination-btn:hover,
.pagination-btn.active {
	background: #7b35b5;
	color: #fff;
	border-color: #7b35b5;
}

@media (max-width: 1024px) {
	.news-container {
		width: calc(100% - 40px);
	}
}

@media (max-width: 1024px) {
	.news-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 768px) {

	.news-page-title {
		min-height: 25vh;
	}

	.news-page-title h1 {
		font-size: 32px;
		margin-bottom: 10px;
	}

	.news-page-title p {
		font-size: 16px;
	}

	.page-title-inner {
		padding: 100px 20px;
	}

	.news-container {
		padding: 40px 16px;
		width: calc(100% - 32px);
		max-width: none;
	}

	.news-register-section {
		margin-bottom: 20px;
	}

	.news-register-btn {
		padding: 12px 24px;
		font-size: 14px;
		width: 100%;
	}

	.news-filters {
		gap: 10px;
		margin-bottom: 20px;
		width: 100%;
		max-width: none;
	}

	.news-filter-btn {
		padding: 10px 20px;
		font-size: 14px;
		flex: 1 1 calc(50% - 5px);
	}

	.news-list {
		display: grid !important;
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.accordion-item {
		margin-bottom: 0;
	}

	.news-item {
		padding: 20px;
	}

	.news-icon {
		font-size: 40px;
		margin-bottom: 12px;
	}

	.news-date {
		font-size: 12px;
		margin-bottom: 6px;
	}

	.news-title {
		font-size: 16px;
		margin-bottom: 8px;
	}

	.news-desc {
		font-size: 13px;
	}

	.news-pagination {
		gap: 4px;
		margin-top: 30px;
	}

	.pagination-btn {
		min-width: 40px;
		height: 40px;
		font-size: 13px;
	}

	.news-modal-content {
		width: 90%;
		padding: 30px 20px;
		max-width: 100%;
		margin: 30px 0;
	}

	.news-modal-content h2 {
		font-size: 18px;
		margin-bottom: 20px;
	}

	#news-register-form {
		gap: 12px;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.form-group {
		gap: 4px;
	}

	.form-group label {
		font-size: 13px;
	}

	.form-group input,
	.form-group select,
	.form-group textarea {
		padding: 10px 12px;
		font-size: 13px;
	}

	.form-group textarea {
		min-height: 100px;
	}

	.form-actions {
		gap: 10px;
		margin-top: 20px;
	}

	.btn-submit,
	.btn-cancel {
		padding: 12px 16px;
		font-size: 13px;
	}

	.accordion-header {
		padding: 12px 15px;
		flex-direction: column;
		align-items: flex-start;
	}

	.accordion-left {
		width: 100%;
		margin-bottom: 8px;
	}

	.accordion-toggle {
		display: none;
	}

	.accordion-title {
		font-size: 14px;
	}

	.accordion-content {
		padding: 12px 15px;
		max-height: 500px;
	}

	.image-slider {
		height: 300px;
	}

	.slider-prev,
	.slider-next {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}

	.poem-text {
		font-size: 14px;
		line-height: 1.6;
	}
}

@media (max-width: 480px) {
	.news-page-title {
		min-height: 20vh;
	}

	.news-page-title h1 {
		font-size: 24px;
		margin-bottom: 8px;
	}

	.news-page-title p {
		font-size: 14px;
	}

	.page-title-inner {
		padding: 60px 15px;
	}

	.news-container {
		padding: 30px 12px;
		width: calc(100% - 24px);
	}

	.news-register-btn {
		padding: 11px 20px;
		font-size: 13px;
	}

	.news-filters {
		gap: 8px;
		flex-direction: column;
	}

	.news-filter-btn {
		padding: 10px 16px;
		font-size: 12px;
		flex: 1 1 auto;
		width: 100%;
	}

	.news-item {
		padding: 16px;
		border-top: 3px solid #d4a574;
	}

	.news-icon {
		font-size: 36px;
		margin-bottom: 10px;
	}

	.news-date {
		font-size: 11px;
		margin-bottom: 5px;
	}

	.news-title {
		font-size: 14px;
		margin-bottom: 6px;
	}

	.news-desc {
		font-size: 12px;
	}

	.news-pagination {
		gap: 3px;
		margin-top: 20px;
	}

	.pagination-btn {
		min-width: 35px;
		height: 35px;
		font-size: 11px;
	}

	.news-modal-content {
		width: 90%;
		padding: 25px 15px;
		margin: 20px 0;
	}

	.news-modal-content h2 {
		font-size: 16px;
		margin-bottom: 15px;
	}

	.news-modal-close {
		font-size: 24px;
		top: 10px;
		right: 10px;
	}

	#news-register-form {
		gap: 10px;
	}

	.form-row {
		gap: 10px;
	}

	.form-group {
		gap: 3px;
	}

	.form-group label {
		font-size: 12px;
	}

	.form-group input,
	.form-group select,
	.form-group textarea {
		padding: 8px 10px;
		font-size: 12px;
	}

	.form-group textarea {
		min-height: 80px;
	}

	.form-actions {
		gap: 8px;
		margin-top: 15px;
	}

	.btn-submit,
	.btn-cancel {
		padding: 10px 14px;
		font-size: 12px;
	}

	.accordion-header {
		padding: 10px 12px;
	}

	.accordion-left {
		gap: 10px;
	}

	.accordion-icon {
		font-size: 20px;
		min-width: 25px;
	}

	.accordion-title {
		font-size: 13px;
	}

	.accordion-toggle {
		font-size: 20px;
	}

	.accordion-content {
		padding: 10px 12px;
		max-height: 400px;
	}

	.image-slider {
		height: 250px;
	}

	.slider-prev,
	.slider-next {
		width: 35px;
		height: 35px;
		font-size: 18px;
	}

	.slider-prev {
		left: 10px;
	}

	.slider-next {
		right: 10px;
	}

	.slider-dots {
		bottom: 10px;
		gap: 5px;
	}

	.dot {
		width: 8px;
		height: 8px;
	}

	.poem-text {
		font-size: 13px;
		line-height: 1.5;
		padding: 15px 0;
	}
}

.news-list {
	display: block !important;
}

.accordion-item {
	display: block;
	width: 100%;
	border: 1px solid #ddd;
	margin-bottom: 10px;
	border-radius: 4px;
	overflow: hidden;
}

.accordion-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background-color: #f9f9f9;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.accordion-header:hover {
	background-color: #f0f0f0;
}

.accordion-left {
	display: flex;
	align-items: center;
	gap: 15px;
	flex: 1;
}

.accordion-icon {
	font-size: 24px;
	min-width: 30px;
}

.accordion-title {
	font-size: 16px;
	font-weight: 600;
	color: #333;
}

.accordion-toggle {
	font-size: 24px;
	color: #666;
	transition: transform 0.3s ease;
}

.accordion-item.active .accordion-toggle {
	transform: rotate(45deg);
}

.accordion-content {
	display: none;
	padding: 15px 20px;
	background-color: #fff;
	border-top: 1px solid #ddd;
	max-height: 600px;
	overflow-y: auto;
	overflow-x: hidden;
}

.accordion-item.active .accordion-content {
	display: block;
}

.accordion-content::-webkit-scrollbar {
	width: 8px;
}

.accordion-content::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 10px;
}

.accordion-content::-webkit-scrollbar-thumb {
	background: #888;
	border-radius: 10px;
}

.accordion-content::-webkit-scrollbar-thumb:hover {
	background: #555;
}

.news-image-area {
	margin-bottom: 20px;
	text-align: center;
}

.news-video,
.slider-video {
	width: 100%;
	max-height: 480px;
	border-radius: 8px;
	display: block;
	background: #000;
}

.news-image-area img {
	max-width: 100%;
	border-radius: 8px;
	display: block;
	margin: 0 auto;
}

.pdf-link {
	display: inline-block;
	padding: 12px 24px;
	background: #f0f0f0;
	border-radius: 8px;
	color: #2d5f8d;
	font-weight: 600;
	text-decoration: none;
}

.pdf-link:hover {
	background: #e0e0e0;
}

.image-slider-container {
	position: relative;
	width: 100%;
	margin-bottom: 25px;
	border-radius: 8px;
	overflow: hidden;
	background: #f5f5f5;
}

.image-slider {
	position: relative;
	width: 100%;
}

.slider-item {
	display: none;
	width: 100%;
}

.slider-item.active {
	display: block;
}

.slider-item img {
	width: 100%;
	max-height: 480px;
	object-fit: contain;
	display: block;
	margin: 0 auto;
}

.slider-prev,
.slider-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(45, 95, 141, 0.7);
	color: #fff;
	border: none;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease;
	z-index: 10;
}

.slider-prev:hover,
.slider-next:hover {
	background: rgba(45, 95, 141, 0.9);
}

.slider-prev {
	left: 15px;
}

.slider-next {
	right: 15px;
}

.slider-dots {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10;
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: background 0.3s ease;
}

.dot.active {
	background: rgba(255, 255, 255, 0.9);
}

.poem-text {
	white-space: pre-wrap !important;
	word-wrap: break-word;
	line-height: 1.8;
	font-size: 15px;
	color: #444;
	font-family: "Noto Sans KR", "Pretendard", sans-serif;
	padding: 20px 0;
	text-align: center;
}

.poem-text strong {
	font-weight: 600;
	color: #2d5f8d;
}
