/* ============================================
   미디어 페이지 CSS
   보도자료, 공지사항, 소셜미디어 페이지 스타일
   ============================================ */

/* Sub Header */
.sub_header.media-pc {
	position: fixed;
	left: 0;
	width: 100%;
	height: 60px;
	background-color: #fff;
	border-bottom: 1px solid #e0e0e0;
	z-index: 99;
	transition: top 0.3s ease;
}

.sub_header.media-pc .sub_header_container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 152px;
	height: 100%;
	display: flex;
	align-items: center;
}

.sub_header.media-pc .sub_nav_list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 40px;
}

.sub_header.media-pc .sub_nav_list li {
	margin: 0;
	padding: 0;
}

.sub_header.media-pc .sub_nav_list li a {
	font-size: 16px;
	font-weight: 500;
	color: #666;
	text-decoration: none;
	padding: 10px 0;
	display: block;
	position: relative;
	transition: color 0.3s ease;
}

.sub_header.media-pc .sub_nav_list li a:hover {
	color: #1e1e1e;
}

.sub_header.media-pc .sub_nav_list li.active a {
	color: #03c75a;
	font-weight: 600;
}

.sub_header.media-pc .sub_nav_list li.active a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #03c75a;
}

/* Main Content */
.media_main {
	padding-top: 150px;
	min-height: calc(100vh - 150px);
	background-color: #fff;
}



.media_container {
	max-width: 1300px;
	/* margin: 0 auto; */
	padding: 60px 152px 100px;
	width: 100%;
}

/* 페이지 제목 */
.page_title {
	font-size: 36px;
	font-weight: 700;
	color: #1e1e1e;
	text-align: center;
	margin: 0 0 60px 0;
	padding: 0;
}


/* Media Section */
.media_section {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 3rem;
	padding: 10px 80px;
	padding-top: 160px;
	box-sizing: border-box;
	align-items: center;
}

/* Media Container in media_section */
.media_section .media_container {
	padding: 60px 80px 100px;
	box-sizing: border-box;
}

/* News Grid */
.news_grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 30px;
	margin-bottom: 60px;
}

/* News Item */
.news_item {
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

.news_item:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.news_item .news_image {
	width: 100%;
	height: 240px;
	overflow: hidden;
	background-color: #f5f5f5;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.news_item .news_image img {
	object-fit: cover;
	transition: transform 0.3s ease;
	padding: 5px;
}

.news_item:hover .news_image img {
	transform: scale(1.05);
}

.news_item .news_image_placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	color: #03c75a;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	padding: 20px;
	box-sizing: border-box;
}

.news_item .news_image_placeholder_blue {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	position: relative;
}

.news_item .news_image_placeholder_blue::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 50%, rgba(138, 43, 226, 0.3) 0%, transparent 50%),
		radial-gradient(circle at 70% 50%, rgba(0, 191, 255, 0.3) 0%, transparent 50%);
	pointer-events: none;
}

.news_item .news_image_placeholder_pink {
	background: linear-gradient(135deg, #ff6b9d 0%, #c44569 50%, #8b2f97 100%);
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	position: relative;
}

.news_item .news_image_placeholder_pink::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
		radial-gradient(circle at 70% 50%, rgba(255, 192, 203, 0.3) 0%, transparent 50%);
	pointer-events: none;
}

.news_item .news_content {
	padding: 24px 20px;
}

.news_item .news_title {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.6;
	color: #1e1e1e;
	margin: 0 0 12px 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.news_item .news_date {
	font-size: 14px;
	color: #999;
	display: block;
}

/* 숨겨진 뉴스 아이템 */
.news_item_hidden {
	display: none;
}

/* 보도자료 없음 메시지 */
.no_news_message {
	grid-column: 1 / -1;
	text-align: center;
	padding: 60px 20px;
	color: #999;
	font-size: 16px;
}

.no_news_message p {
	margin: 0;
}

/* 공지사항 없음 메시지 */
.no_notice_message {
	text-align: center;
	padding: 60px 20px;
	color: #999;
	font-size: 16px;
}

.no_notice_message p {
	margin: 0;
}

/* 공지사항 리스트형 스타일 */
.notice_list {
	width: 100%;
	margin-bottom: 60px;
	border-top: 1px solid #1e1e1e;
}

.notice_list_item {
	background-color: #fff;
	border-bottom: 1px solid #e0e0e0;
	transition: background-color 0.3s ease;
}

.notice_list_item:hover {
	background-color: #f9f9f9;
}

.notice_list_link {
	display: block;
	text-decoration: none;
	color: inherit;
	padding: 20px 0;
}

.notice_list_content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.notice_list_num {
	font-size: 14px;
	font-weight: 500;
	color: #1e1e1e;
	margin: 0;
	width: 10%;
	text-align: center;
}

.notice_list_title {
	font-size: 14px;
	font-weight: 500;
	color: #1e1e1e;
	margin-left: 20px;
	width: 75%;
	text-align: left;
	white-space: normal;
	word-break: break-all;
}


.notice_list_date {
	font-size: 14px;
	color: #999;
	white-space: nowrap;
	width: 15%;
	text-align: center;
}

.notice_header{
	font-size: 16px;
	font-weight: bold;
	color: #1e1e1e;
	margin: 0;
	text-align: center;
}

/* 숨겨진 공지사항 아이템 */
.notice_item_hidden {
	display: none;
}

/* 빈 공지사항 아이템 스타일 */
.notice_list_item_empty {
	opacity: 0.3;
	cursor: default;
	padding: 20px 0;
}

.notice_list_item_empty:hover {
	background-color: #fff;
}

.notice_list_title_empty,
.notice_list_date_empty {
	color: #ccc;
}

/* 보도자료 상세 페이지 */
.pressrelease_detail_wrapper {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

.detail_header {
	margin-bottom: 30px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.detail_header_right {
	display: flex;
	align-items: center;
	gap: 10px;
}

.admin_actions {
	display: flex;
	gap: 10px;
	align-items: center;
}

.admin_actions_header {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-bottom: 30px;
}

.btn_write,
.btn_edit {
	display: inline-block;
	padding: 10px 20px;
	background-color: #4a90e2;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	transition: background-color 0.3s ease;
	font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.btn_write:hover,
.btn_edit:hover {
	background-color: #357abd;
}

.btn_delete {
	padding: 10px 20px;
	background-color: #e74c3c;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.3s ease;
	font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.btn_delete:hover {
	background-color: #c0392b;
}

/* 삭제 확인 모달 */
.delete_confirm_modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	background-color: rgba(0, 0, 0, 0.5);
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}

.delete_confirm_modal.active {
	display: flex;
}

.delete_confirm_modal_content {
	background-color: #fff;
	border-radius: 12px;
	max-width: 400px;
	width: 100%;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.delete_confirm_modal_header {
	padding: 24px 24px 20px;
	border-bottom: 1px solid #eee;
}

.delete_confirm_modal_title {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	color: #1e1e1e;
	font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.delete_confirm_modal_body {
	padding: 24px;
}

.delete_confirm_modal_message {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.delete_confirm_modal_footer {
	padding: 20px 24px 24px;
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	border-top: 1px solid #eee;
}

.delete_confirm_btn {
	padding: 10px 24px;
	font-size: 14px;
	font-weight: 600;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.delete_confirm_btn_cancel {
	background-color: #f5f5f5;
	color: #333;
}

.delete_confirm_btn_cancel:hover {
	background-color: #e0e0e0;
}

.delete_confirm_btn_delete {
	background-color: #e74c3c;
	color: #fff;
}

.delete_confirm_btn_delete:hover {
	background-color: #c0392b;
}

/* 모바일 반응형 */
@media only screen and (max-width: 767px) {

	.notice_list_num{
		width: 10%;
	}
	/* 모바일 버전에서 자동 줄바꿈 처리 */
	.notice_list_title{
		width: 60%;
	}
	.notice_list_date{
		width: 30%;
	}

	.delete_confirm_modal_content {
		max-width: 90%;
		margin: 20px;
	}

	.delete_confirm_modal_header {
		padding: 20px 20px 16px;
	}

	.delete_confirm_modal_title {
		font-size: 18px;
	}

	.delete_confirm_modal_body {
		padding: 20px;
	}

	.delete_confirm_modal_message {
		font-size: 15px;
	}

	.delete_confirm_modal_footer {
		padding: 16px 20px 20px;
		flex-direction: column-reverse;
	}

	.delete_confirm_btn {
		width: 100%;
		padding: 12px 24px;
	}
}

.btn_logout {
	display: inline-block;
	padding: 10px 20px;
	background-color: #95a5a6;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	transition: background-color 0.3s ease;
	font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.btn_logout:hover {
	background-color: #7f8c8d;
}

.detail_footer {
	margin-bottom: 30px;
}

.detail_footer {
	margin-top: 60px;
	margin-bottom: 0;
	text-align: center;
}

.btn_back {
	display: inline-block;
	padding: 10px 20px;
	background-color: #f5f5f5;
	color: #333;
	text-decoration: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	transition: background-color 0.3s ease;
	font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.btn_back:hover {
	background-color: #e0e0e0;
}

.detail_title_section {
	margin-bottom: 40px;
	padding-bottom: 30px;
	border-bottom: 2px solid #e0e0e0;
}

.detail_title {
	font-size: 36px;
	font-weight: 700;
	color: #1e1e1e;
	margin: 0 0 20px 0;
	line-height: 1.4;
	font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.detail_date {
	font-size: 16px;
	color: #666;
	font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.detail_thumbnail {
	margin-bottom: 40px;
	width: 100%;
}

.detail_thumbnail img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	display: block;
}

.detail_content {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.detail_content p {
	margin: 0 0 20px 0;
}

.detail_content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 20px 0;
}

.detail_content h1,
.detail_content h2,
.detail_content h3,
.detail_content h4,
.detail_content h5,
.detail_content h6 {
	margin: 30px 0 15px 0;
	font-weight: 600;
	color: #1e1e1e;
	font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.detail_content h1 {
	font-size: 32px;
}

.detail_content h2 {
	font-size: 28px;
}

.detail_content h3 {
	font-size: 24px;
}

.detail_content ul,
.detail_content ol {
	margin: 20px 0;
	padding-left: 30px;
	list-style: revert;
}

.detail_content ul {
	list-style-type: disc;
}

.detail_content ol {
	list-style-type: decimal;
}

.detail_content li {
	margin: 10px 0;
	list-style: inherit;
}

.detail_content blockquote {
	border-left: 4px solid #4a90e2;
	padding-left: 20px;
	margin: 20px 0;
	color: #666;
	font-style: italic;
}

.detail_content a {
	color: #4a90e2;
	text-decoration: none;
}

.detail_content a:hover {
	text-decoration: underline;
}

/* 상세 페이지 네비게이션 (이전/다음) */
.detail_navigation {
	display: flex;
	gap: 20px;
	margin-top: 60px;
	margin-bottom: 40px;
	padding-top: 40px;
	border-top: 1px solid #e0e0e0;
}

.nav_link {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 20px;
	background-color: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	text-decoration: none;
	color: #1e1e1e;
	transition: all 0.3s ease;
	flex: 1;
}

.nav_link:hover {
	background-color: #fff;
	border-color: #bc481f;
	box-shadow: 0 2px 8px rgba(74, 144, 226, 0.1);
}

.nav_link.nav_prev {
	text-align: left;
}

.nav_link.nav_next {
	text-align: right;
	flex-direction: row;
}

.nav_disabled {
	opacity: 0.5;
	cursor: not-allowed;
	background-color: #f5f5f5;
}

.nav_disabled:hover {
	background-color: #f5f5f5;
	border-color: #e0e0e0;
	box-shadow: none;
}

.nav_arrow {
	font-size: 30px;
	font-weight: 600;
	color: #bc481f;
	flex-shrink: 0;
}

.nav_disabled .nav_arrow {
	color: #999;
}

.nav_content {
	display: flex;
	flex-direction: column;
	gap: 5px;
	flex: 1;
	overflow: hidden;
}

.nav_label {
	font-size: 12px;
	color: #999;
	font-weight: 500;
	text-transform: uppercase;
}

.nav_title {
	font-size: 14px;
	font-weight: 500;
	color: #1e1e1e;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.nav_disabled .nav_title {
	color: #999;
}

/* 첨부파일 스타일 */
.detail_attachments {
	margin-bottom: 30px;
	padding: 20px;
	background-color: #f9f9f9;
	border-radius: 8px;
}

.attachments_title {
	font-size: 18px;
	font-weight: 600;
	color: #1e1e1e;
	margin: 0 0 15px 0;
}

.attachments_list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.attachment_item {
	margin-bottom: 10px;
}

.attachment_item:last-child {
	margin-bottom: 0;
}

.attachment_link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	background-color: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	text-decoration: none;
	color: #1e1e1e;
	transition: all 0.3s ease;
}

.attachment_link:hover {
	background-color: #f5f5f5;
	border-color: #4a90e2;
}

.attachment_icon {
	display: inline-block;
	width: 18px;
	height: 18px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l9.19-9.19a4 4 0 0 1 5.66 5.66l-9.2 9.19a2 2 0 0 1-2.83-2.83l8.49-8.48'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
}

.attachment_name {
	flex: 1;
	font-size: 14px;
	font-weight: 500;
}

.attachment_size {
	font-size: 12px;
	color: #999;
}

/* 첨부파일 미리보기 (작성/수정 페이지) */
.attachment_preview_list {
	margin-top: 10px;
}

.attachment_preview_item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 15px;
	background-color: #f5f5f5;
	border-radius: 6px;
	margin-bottom: 8px;
	font-size: 14px;
	color: #1e1e1e;
}

.attachment_preview_item:last-child {
	margin-bottom: 0;
}

/* 기존 첨부파일 목록 (수정 페이지) */
.existing_attachments_list {
	margin-bottom: 15px;
}

.existing_attachment_item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	background-color: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	margin-bottom: 10px;
}

.existing_attachment_item:last-child {
	margin-bottom: 0;
}

.btn_delete_attachment {
	padding: 6px 12px;
	background-color: #e74c3c;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.3s ease;
	margin-left: auto;
}

.btn_delete_attachment:hover {
	background-color: #c0392b;
}

/* 뉴스 아이템 링크 스타일 */
.news_item_link {
	display: block;
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news_item_link:hover {
	transform: translateY(-2px);
}

.news_item_link:hover .news_item {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}




/* 더보기 버튼 */
.load_more_wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 60px;
}

.load_more_btn {
	padding: 14px 40px;
	font-size: 16px;
	font-weight: 600;
	color: #000000;
	background-color: #fff;
	border: 2px solid #000000;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 200px;
}

.load_more_btn:hover {
	color: #fff;
	background-color: #bc481f;
	transform: translateY(-2px);
	border: 2px solid #bc481f;
	box-shadow: 0 4px 12px #bc481f;
}

.load_more_btn:active {
	transform: translateY(0);
}



/* 태블릿 반응형 (1280px 미만) */
@media only screen and (max-width: 1280px) {
	.pressrelease_detail_wrapper {
		padding: 30px 0px;
	}

	.detail_title {
		font-size: 28px;
	}

	.sub_header.media-pc .sub_header_container {
		padding: 0 80px;
	}

	.media_container {
		padding: 60px 80px 100px;
	}

	.media_section {
		padding: 100px 80px;
	}

	.media_section .media_container {
		padding: 130px 0px 100px;
	}

	.news_grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px 24px;
	}

	.news_item .news_image {
		height: 200px;
	}

	.news_item .news_title {
		font-size: 16px;
	}
}



/* 모바일 반응형 (767px 미만) */
@media only screen and (max-width: 767px) {
	.load_more_wrapper {
		margin-top: 40px;
	}

	.load_more_btn {
		padding: 12px 32px;
		font-size: 14px;
	}

	.sub_header.media-pc .sub_nav_list {
		gap: 16px;
	}

	.sub_header.media-pc .sub_nav_list li a {
		font-size: 13px;
		padding: 8px 0;
	}

	.media_container {
		padding: 30px 16px 50px;
	}

	.media_section .media_container {
		padding: 30px 16px 50px;
	}

	.page_title {
		font-size: 24px;
		margin-bottom: 30px;
	}

	.page_title {
		font-size: 24px;
		margin-bottom: 30px;
	}

	.news_grid {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-bottom: 40px;
	}

	.news_item_link {
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		gap: 16px;
	}

	.news_item {
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		gap: 16px;
		border-radius: 8px;
		padding: 0;
		background-color: #fff;
		width: 100%;
	}

	.news_item .news_image {
		width: 120px;
		height: 120px;
		min-width: 120px;
		flex-shrink: 0;
		border-radius: 8px;
		overflow: hidden;
	}

	.news_item .news_image img {
		width: 100%;
	}

	.news_item .news_image_placeholder {
		font-size: 14px;
		padding: 10px;
	}

	.news_item .news_image_placeholder_blue,
	.news_item .news_image_placeholder_pink {
		font-size: 12px;
		padding: 10px;
	}

	.news_item .news_content {
		flex: 1;
		padding: 0;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		min-width: 0;
	}

	.news_item .news_title {
		font-size: 15px;
		font-weight: 600;
		line-height: 1.5;
		color: #1e1e1e;
		margin: 0 0 8px 0;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.news_item .news_date {
		font-size: 13px;
		color: #999;
		display: block;
		margin-top: 0;
	}

	.news_item_link:hover {
		transform: none;
	}

	.news_item_link:hover .news_item {
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
		transform: none;
	}

	.load_more_wrapper {
		margin-top: 40px;
	}

	.load_more_btn {
		padding: 12px 32px;
		font-size: 14px;
		min-width: 100px;
	}

	.media_section {
		padding: 100px 10px 0px;
	}

	.pressrelease_detail_wrapper {
		padding: 20px 15px;
	}

	.detail_title {
		font-size: 24px;
		margin-bottom: 15px;
	}

	.detail_date {
		font-size: 14px;
	}

	.detail_title_section {
		margin-bottom: 30px;
		padding-bottom: 20px;
	}

	.detail_thumbnail {
		margin-bottom: 30px;
	}

	.detail_content {
		font-size: 15px;
		line-height: 1.7;
	}

	.detail_content h1 {
		font-size: 24px;
	}

	.detail_content h2 {
		font-size: 22px;
	}

	.detail_content h3 {
		font-size: 20px;
	}

	.detail_footer {
		margin-top: 40px;
	}

	.detail_navigation {
		flex-direction: column;
		gap: 15px;
		margin-top: 40px;
		padding-top: 30px;
	}

	.nav_link {
		padding: 15px;
	}

	.nav_arrow {
		font-size: 18px;
	}

	.nav_title {
		font-size: 13px;
	}

	.detail_header {
		justify-content: flex-end;
	}

	.detail_header_right {
		flex-direction: column-reverse;
		gap: 15px;
		align-items: flex-end;
		width: 100%;
	}

	.admin_actions {
		gap: 10px;
		width: auto;
	}

	.admin_actions_header {
		flex-direction: column;
		width: 100%;
	}

	.btn_write,
	.btn_edit,
	.btn_delete,
	.btn_logout {
		text-align: center;
	}

}