@charset "UTF-8";

/* ============================================================
   SOVAC Original List Pages (Mobile)
   Impact Daily, SOVAC Monthly, IR Room, Contents List
   ============================================================ */

/* ── Page Container ── */
/*
 * #sv_wrap (contents) = padding-top:55px 이미 있음
 * #sv_wrap.type01 (program) = padding-top:0 → 여기서 보정
 */
.original-list-page {
	background-color: #fff;
	padding-bottom: 80px;
	height: calc(100vh - 75px);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

/* ── Intro Banner (Salon 스타일 검정 배경) ── */
.original-intro-banner {
	display: flex;
	align-items: center;
	padding: 16px 20px;
	background-color: #1c1c1c;
	box-sizing: border-box;
}
.original-intro-banner-desc {
	font-family: 'Pretendard', sans-serif;
	font-weight: 600;
	font-size: 13px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

/* ── Top Tab Navigation (피그마 기준: 텍스트 크기 차등) ── */
.original-tab-nav {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 20px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.original-tab-nav::-webkit-scrollbar {
	display: none;
}
.original-tab-nav a {
	flex-shrink: 0;
	font-family: 'Pretendard', sans-serif;
	font-weight: 700;
	font-size: 14px;
	line-height: 1;
	color: #d3d4d8;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s, font-size 0.2s;
}
.original-tab-nav a.active {
	font-size: 22px;
	color: #18191d;
}

/* ── Content Area ── */
.original-list-content {
	padding: 0 15px;
}

/* ── Tab-Header Divider (진한 #18191D) ── */
.original-tab-divider {
	height: 1px;
	background-color: #18191d;
	margin: 0 20px;
}

/* ── Header ── */
.original-list-header {
	padding: 16px 0 0;
}
.original-list-header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.original-list-title {
	display: none;
}
.original-list-subtitle {
	font-family: 'Pretendard', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 21px;
	color: #3d3e44;
	margin: 0;
}

/* ── Header-List Divider (진한 #18191D) ── */
.original-list-divider {
	display: none;
}

/* ── Item Divider (연한 #E4E5E8) ── */
.original-list-item-divider {
	height: 1px;
	background-color: #e4e5e8;
}

/* ── List Items ── */
.original-list-items {
	padding: 0;
}
.original-list-item {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 16px 0;
	text-decoration: none;
}
.original-list-item-thumb {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 6px;
	overflow: hidden;
	background-color: #f5f5f5;
}

.original-list-item-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* IR Briefing: contain only, no blur */
.irbriefing-list .original-list-item-thumb img {
	object-fit: contain;
}

/* SOVAC Archive / IR Room: match svp_web 339x254 ratio, contain */
.subsovac-list .original-list-item-thumb {
	aspect-ratio: 339 / 254;
}
.subsovac-list .original-list-item-thumb img {
	object-fit: contain;
}
.original-list-item-thumb-default {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #f3e9fb 0%, #e8d5f5 100%);
}
.original-list-item-thumb-default span {
	font-family: 'Pretendard', sans-serif;
	font-weight: 600;
	font-size: 13px;
	color: #460082;
	opacity: 0.6;
}
.original-list-item-info {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.original-list-item-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.original-list-item-category {
	display: inline-flex;
	align-items: center;
	padding: 3px 8px;
	background-color: #f3e9fb;
	border-radius: 2px;
	font-family: 'Pretendard', sans-serif;
	font-weight: 600;
	font-size: 11px;
	line-height: 17px;
	color: #460082;
}
.original-list-item-title {
	font-family: 'Pretendard', sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.4;
	color: #18191d;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.original-list-item-desc {
	font-family: 'Pretendard', sans-serif;
	font-weight: 400;
	font-size: 13px;
	line-height: 1.5;
	color: #3d3e44;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.original-list-item-date {
	font-family: 'Pretendard', sans-serif;
	font-weight: 400;
	font-size: 12px;
	line-height: 18px;
	color: #a0a1a7;
}

/* ── Status (IR Room) ── */
.original-list-item-meta {
	display: flex;
	align-items: center;
	gap: 8px;
}
.original-list-item-status {
	font-family: 'Pretendard', sans-serif;
	font-weight: 600;
	font-size: 11px;
	line-height: 17px;
	color: #460082;
	padding: 2px 8px;
	background-color: #f3e9fb;
	border-radius: 2px;
}
.original-list-item-status.ing {
	color: #fff;
	background-color: #460082;
}

/* ── Chip/Button ── */
.original-list-chip {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 5px 10px;
	border: 1px solid #460082;
	border-radius: 2px;
	background: #fff;
	text-decoration: none;
	flex-shrink: 0;
}
.original-list-chip span {
	font-family: 'Pretendard', sans-serif;
	font-weight: 600;
	font-size: 12px;
	line-height: 19px;
	color: #460082;
}

/* ── SOVAC Official Badge ── */
.original-list-item-official {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 3px 8px;
	background-color: #f3e9fb;
	border-radius: 2px;
	font-family: 'Pretendard', sans-serif;
	font-weight: 600;
	font-size: 11px;
	line-height: 17px;
	color: #460082;
}

/* ── Empty State ── */
.original-list-empty {
	padding: 60px 20px;
	text-align: center;
}
.original-list-empty p {
	font-family: 'Pretendard', sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: #a0a1a7;
}

/* ── Pagination ── */
.original-list-paging {
	display: flex;
	gap: 4px;
	align-items: center;
	justify-content: center;
	padding: 16px 0;
}
.original-list-paging a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 30px;
	height: 30px;
	border-radius: 4px;
	font-family: 'Pretendard', sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: #d3d4d8;
	text-decoration: none;
}
.original-list-paging a.on {
	font-weight: 500;
	color: #460082;
	background-color: #f3e9fb;
}
.original-list-paging a.prev,
.original-list-paging a.next {
	font-size: 0;
	width: 16px;
	height: 16px;
	position: relative;
}
.original-list-paging a.prev::before,
.original-list-paging a.next::before {
	content: '';
	display: block;
	width: 7px;
	height: 7px;
	border-right: 1.5px solid #3d3e44;
	border-bottom: 1.5px solid #3d3e44;
}
.original-list-paging a.prev::before {
	transform: rotate(135deg);
	margin-left: 2px;
}
.original-list-paging a.next::before {
	transform: rotate(-45deg);
	margin-right: 2px;
}

/* ============================================================
   Contents List Filter
   ============================================================ */

.contents-header-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 20px 0 0;
}
.contents-list-filter {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	padding-top: 4px;
}
.contents-filter-sort {
	display: inline-block;
	font-family: 'Pretendard', sans-serif;
	font-weight: 600;
	font-size: 13px;
	color: #d3d4d8;
	text-decoration: none;
	white-space: nowrap;
}
.contents-filter-sort.active {
	color: #18191d;
}
.contents-type-select {
	font-family: 'Pretendard', sans-serif;
	font-size: 13px;
	color: #18191d;
	padding: 5px 24px 5px 8px;
	border: 1px solid #d3d4d8;
	border-radius: 6px;
	background: #fff url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%2318191d' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 8px center;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	outline: none;
}

/* ── Contents Hashtags ── */
.contents-list-hashtags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.contents-list-hashtags span {
	font-family: 'Pretendard', sans-serif;
	font-weight: 400;
	font-size: 11px;
	color: #460082;
}

/* ============================================================
   Weekly Report Detail (Impact Daily View)
   ============================================================ */

.weekly-report-view .original-list-content {
	padding: 0 20px;
}

.weekly-report-nav {
	padding: 16px 0;
}

.weekly-report-nav-link {
	font-family: 'Pretendard', sans-serif;
	font-size: 13px;
	color: #460082;
	text-decoration: none;
}

.weekly-report-cover {
	margin-bottom: 20px;
}

.weekly-report-cover img {
	width: 100%;
	max-height: 240px;
	object-fit: cover;
	border-radius: 6px;
}

.weekly-report-header {
	margin-bottom: 24px;
}

.weekly-report-title {
	font-family: 'Pretendard', sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #18191d;
	margin: 0 0 6px 0;
	line-height: 1.3;
}

.weekly-report-hashtags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 10px;
}

.weekly-report-hashtag {
	display: inline-block;
	padding: 4px 10px;
	background: #f3e9fb;
	color: #460082;
	border-radius: 14px;
	font-family: 'Pretendard', sans-serif;
	font-size: 13px;
	font-weight: 500;
}

.weekly-report-date {
	font-family: 'Pretendard', sans-serif;
	font-size: 12px;
	color: #a0a1a7;
	margin-bottom: 12px;
}

.weekly-report-summary {
	margin-bottom: 28px;
	padding: 16px;
	background: #f9f8fb;
	border-radius: 6px;
	line-height: 1.7;
	font-family: 'Pretendard', sans-serif;
	font-size: 14px;
	color: #333;
	white-space: pre-wrap;
}

.weekly-report-articles {
	margin-bottom: 28px;
}

.weekly-report-articles-title {
	font-family: 'Pretendard', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #18191d;
	margin: 0 0 16px 0;
}

.weekly-report-article {
	display: block;
	padding: 16px;
	margin-bottom: 10px;
	background: #fff;
	border: 1px solid #e4e5e8;
	border-radius: 6px;
	text-decoration: none;
}

.weekly-report-article-meta {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 6px;
}

.weekly-report-article-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	background: #460082;
	color: #fff;
	border-radius: 50%;
	font-family: 'Pretendard', sans-serif;
	font-size: 11px;
	font-weight: 700;
	flex-shrink: 0;
}

.weekly-report-article-source {
	font-family: 'Pretendard', sans-serif;
	font-size: 12px;
	color: #a0a1a7;
}

.weekly-report-article-title {
	font-family: 'Pretendard', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #18191d;
	margin: 0 0 6px 0;
	line-height: 1.4;
}

.weekly-report-article-desc {
	font-family: 'Pretendard', sans-serif;
	font-size: 13px;
	color: #707178;
	margin: 0;
	line-height: 1.6;
}

.weekly-report-back {
	text-align: center;
	padding: 16px 0 24px;
}

.weekly-report-back-btn {
	display: inline-block;
	padding: 10px 28px;
	border: 1px solid #460082;
	color: #460082;
	border-radius: 20px;
	text-decoration: none;
	font-family: 'Pretendard', sans-serif;
	font-size: 14px;
	font-weight: 600;
}
