@charset "UTF-8";

/* [서비스 수정 2026-08-05] 공지 도메인 클래스 notice→news 전역 리네임
   (.notice-*→.news-*, .support-notice-page→.support-news-page, .chip.notice→.chip.news,
    .notice-badge.is-notice→.news-badge.is-news, 미사용 .notice-hero 포함) —
   서비스 명명(DB tz_news·admin News*) 통일 — 퍼블리셔 안내 완료(2026-08-05), 이후 퍼블리싱 수정은 이 브랜치에서 직접.
   ⚠ 이때 메인 새소식 위젯 .news-table(div 가짜 테이블)과 공지 목록 <table> 클래스가 충돌해
   위젯 쪽을 .news-feed 로 리네임함(컨테이너 + .tr/.chip/.subject/.date 하위 셀렉터, 데스크톱·모바일 2블록). */

/* =========================================================
   에듀뱅크 메인 퍼블리싱 - style.css
   Figma: 에듀뱅크 UX/UI (B_Main)

   목차
   1. Design Tokens
   2. Reset
   3. Layout & Shared Components
   4. Header
   5. Main Page
   6. Search / List / Sub Pages
   7. Use Case
   8. Board / Support
   9. Footer
   10. Quickmenu
   11. Assets
   12. Responsive
   ========================================================= */

/* ---- Pretendard 웹폰트 ---- */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css");

/* =========================================================
   1. Design Tokens
   ========================================================= */
:root {
	/* Primary */
	--color-primary: #ff5500; /* Primary_EduBank */
	--color-coral: #ff6759;
	--color-dark-primary: #DC4900; /* Primary_EduBank */
	--color-white-primary: #ffebe2;
	--color-white-primary02: #FFF8F5;

	/* Text */
	--txt-dark: #222222;
	--txt-basic: #333333;
	--txt-normal: #666666;
	--txt-light: #999999;
	--txt-white: #ffffff;

	/* Line / BG */
	--line-light: #dfdfdf;
	--black-10: rgba(0, 0, 0, 0.1);
	--bg-soft: #FAF5F3; /* 미디어자료 섹션 배경(코랄 계열 연한톤) */

	/* Layout */
	--container: 1200px;

	/* Font */
	--font-base: "Pretendard", "Pretendard Variable", -apple-system, BlinkMacSystemFont,
		"Malgun Gothic", "맑은 고딕", sans-serif;
}

/* =========================================================
   2. Reset
   ========================================================= */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html,
body {
	width: 100%;
}
body {
	font-family: var(--font-base);
	color: var(--txt-basic);
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: -0.04em; /* 전역 자간 : 개별 지정 없이 이 값 하나로 통일 */
	-webkit-font-smoothing: antialiased;
	background: #ffffff;
}
ul,
ol,
li {
	list-style: none;
}
a {
	color: inherit;
	text-decoration: none;
}
img {
	display: block;
	max-width: 100%;
}
button,
input,
textarea,
select {
	font-family: inherit;
	font-size: inherit;
	letter-spacing: inherit;
	color: inherit;
}
button {
	cursor: pointer;
	border: 0;
	background: none;
}
em,
address {
	font-style: normal;
}

main {
	margin-top: -35px;
}

/* =========================================================
   3. Layout & Shared Components
   ========================================================= */
.inner {
	width: var(--container);
	margin: 0 auto;
}

/* Material Symbols 공통 */
.material-symbols-outlined {
	font-family: "Material Symbols Outlined";
	font-weight: normal;
	font-style: normal;
	line-height: 1;
	letter-spacing: normal;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-feature-settings: "liga";
	font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
	user-select: none;
}

/* 공통 버튼 컴포넌트 */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	border: 1px solid transparent;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn .material-symbols-outlined {
	flex-shrink: 0;
	font-size: 20px;
}
.btn.btn-sm {
	height: 38px;
	padding: 0 14px;
	font-size: 14px;
}
.btn.btn-md {
	height: 42px;
	padding: 0 18px;
}
.btn.btn-lg {
	height: 52px;
	padding: 0 24px;
	border-radius: 10px;
	font-size: 18px;
}
.btn.btn-pill {
	border-radius: 200px;
}
.btn.btn-primary {
	background: var(--color-primary);
	color: #fff;
}
.btn.btn-primary:hover {
	background-color: var(--color-dark-primary);
}
.btn.btn-primary .material-symbols-outlined {
	color: #fff;
}
.btn.btn-secondary {
	border-color: #d8d8d8;
	background: #eeeeee;
	color: var(--txt-basic);
}
.btn.btn-secondary:hover {
	background-color: #dddddd;
}
.btn.btn-secondary .material-symbols-outlined {
	color: var(--txt-basic);
}
.btn.btn-white {
	border-color: #dcdcdc;
	background: #fff;
	color: var(--txt-basic);
}
.btn.btn-white:hover {
	border-color: #cfcfcf;
	background: #f7f7f7;
}
.btn.btn-outline-primary {
	border-color: var(--color-primary);
	background: #fff;
	color: var(--color-primary);
}
.btn.btn-outline-primary:hover {
	background-color: var(--color-white-primary);
}
.btn.btn-outline-primary .material-symbols-outlined {
	color: var(--color-primary);
}
.btn.btn-outline-dark {
	border-color: #777777;
	background: #fff;
	color: var(--txt-basic);
}
.btn.btn-outline-dark:hover {
	border-color: var(--txt-basic);
	background: #f7f7f7;
}
.btn.btn-gray {
	background: #999999;
	color: #fff;
}
.btn.btn-gray:hover {
	background: #777777;
}
.btn.btn-gray .material-symbols-outlined {
	color: #fff;
}
.btn:disabled,
.btn.is-disabled {
	opacity: 0.5;
	cursor: default;
	pointer-events: none;
}

/* 공통 "더보기 +" 버튼 (btn) */
.btn-more {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	height: 38px;
	padding: 0 18px;
	border: 1px solid var(--line-light);
	border-radius: 200px;
	font-size: 14px;
	font-weight: 500;
	color: var(--txt-normal);
	white-space: nowrap;
}
.btn-more .material-symbols-outlined {
	font-size: 16px;
	color: var(--txt-normal);
	font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 20;
}
.btn-more:hover {
	transition: all 0.3s ease;
	border-color: var(--color-primary);
	color: var(--color-primary);
}
.btn-more:hover .material-symbols-outlined {
	color: var(--color-primary);
}

/* 공통 섹션 타이틀 (page_title_01) */
.sec-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--txt-dark);
}
.sec-title .point {
	color: var(--color-primary);
}

/* =========================================================
   4. Header  (ui / top)
   ========================================================= */
.header {
	width: 100%;
	position: relative;
	z-index: 10; /* Swiper 가 슬라이더에 z-index 를 넣으므로 헤더를 그 위로 */
}

/* 4-1. 상단 유틸 바 */
.util-bar {
	border-bottom: 1px solid var(--line-light);
}
.util-bar .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 34px;
}
.util-menu {
	display: flex;
	align-items: center;
}
.util-menu li {
	display: flex;
}
.util-menu a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 18px;
	padding: 0 12px;
	border-right: 1px solid var(--line-light);
	font-size: 12px;
	font-weight: 600;
	color: var(--txt-light);
	white-space: nowrap;
}
/* [서비스 수정 2026-08-13] 직계 한정(>) — 자손 셀렉터라 중첩된 더보기 드롭다운(.util-more-list)의
   첫 항목(issamGPT)까지 padding-left:0 이 새어 들던 것 수정 */
.util-menu > li:first-child > a {
	padding-left: 0;
}
.util-menu li.is-edubank a {
	color: var(--color-primary);
}

.user-menu {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	color: var(--txt-normal);
}
.user-menu .dot {
	width: 2px;
	height: 2px;
	border-radius: 50%;
	background: var(--txt-light);
}
.user-menu .name b {
	font-weight: 700;
}

/* 4-2. 로고 + GNB */
/* 직계 자식만 : 전체메뉴 패널 안쪽 .inner 까지 잡히지 않도록 */
.gnb-bar > .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100px;
}
.gnb-left {
	display: flex;
	align-items: center;
	gap: 80px;
}
.logo {
	width: auto;
	height: 40px;
}
.logo img {
	width: 100%;
	height: 100%;
}
.gnb {
	display: flex;
	align-items: center;
	gap: 48px;
}
.gnb a {
	font-size: 24px;
	font-weight: 700;
	color: var(--txt-dark);
	white-space: nowrap;
}
.gnb a:hover {
	transition: all 0.3s ease;
	color: var(--color-primary);
}
.gnb a.is-active {
	color: var(--color-primary);
}
/* 햄버거(전체메뉴) */
.gnb-bar {
	position: relative;
	background: var(--txt-white);
}

/* 스크롤 후 상단 고정 메뉴 */
.header.is-sticky .gnb-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
	opacity: 1;
	transform: translateY(0);
	transition: transform 0.35s ease, opacity 0.35s ease;
	will-change: transform, opacity;
}
.header.is-sticky.is-sticky-hidden .gnb-bar {
	opacity: 0;
	transform: translateY(-100%);
	pointer-events: none;
}
.header.is-sticky .gnb-bar > .inner {
	height: 60px;
}
.header.is-sticky .logo {
	width: 95px;
	height: auto;
}
.header.is-sticky .gnb-left {
	gap: 110px;
}
.header.is-sticky .gnb {
	gap: 74px;
}
.header.is-sticky .gnb a {
	font-size: 18px;
}
.header.is-sticky .btn-allmenu {
	width: 24px;
	height: 18px;
}
.header.is-sticky .btn-allmenu span {
	height: 3px;
}
.header.is-sticky .search-bar {
	display: none;
}
.btn-allmenu {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 24px;
	height: 19px;
	padding: 0;
	border: 0;
	background: transparent;
	appearance: none;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}
.btn-allmenu:focus {
	outline: none;
}
.btn-allmenu span {
	display: block;
	height: 3px;
	background: var(--color-primary);
	transition: width 0.3s ease, margin 0.3s ease, opacity 0.2s ease, transform 0.3s ease;
}
.btn-allmenu span:nth-child(1) {
	width: 24px;
}
.btn-allmenu span:nth-child(2) {
	width: 17px;
	margin-left: 7px;
}
.btn-allmenu span:nth-child(3) {
	width: 24px;
}
/* 열린 상태 : X 자로 변형 */
.btn-allmenu.is-open span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}
.btn-allmenu.is-open span:nth-child(2) {
	width: 24px;
	margin-left: 0;
	opacity: 0;
}
.btn-allmenu.is-open span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* 전체메뉴 드롭다운 패널 */
.allmenu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1;
	width: 100%;
	max-height: 0;
	overflow: hidden;
	background: var(--txt-white);
	border-top: 1px solid var(--line-light);
	opacity: 0;
	visibility: hidden;
	transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0.4s;
}
.allmenu.is-open {
	max-height: 600px;
	opacity: 1;
	visibility: visible;
}
.allmenu-row {
	display: flex;
	align-items: flex-start;
	gap: 60px;
	padding: 22px 0;
	border-bottom: 1px solid var(--line-light);
}
.allmenu-row:last-child {
	border-bottom: 0;
}
.allmenu-row dt {
	flex: 0 0 120px;
	font-size: 18px;
	font-weight: 700;
	color: var(--txt-dark);
}
.allmenu-row dd {
	flex: 1 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 34px;
}
.allmenu-row dd a {
	font-size: 16px;
	color: var(--txt-normal);
	white-space: nowrap;
	transition: color 0.2s ease;
}
.allmenu-row dd a:hover,
.allmenu-row dd a.is-active {
	color: var(--color-primary);
	text-decoration: underline;
	text-underline-offset: 4px;
}

/* 4-3. 검색바 */
.search-bar {
	/* padding-bottom: 20px; */
}
.search-box {
	display: flex;
	align-items: center;
	gap: 50px;
	height: 64px;
	padding: 0 20px 0 30px;
	background: var(--color-primary);
	border-radius: 200px;
}
.search-left {
	flex: 1 0 0;
	display: flex;
	align-items: center;
	gap: 30px;
	min-width: 0;
}
.search-cate {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-width: 90px;
	font-size: 18px;
	font-weight: 700;
	color: var(--txt-white);
	white-space: nowrap;
}
.search-cate .material-symbols-outlined {
	font-size: 24px;
	color: var(--txt-white);
	transition: transform 0.2s ease;
}
/* 카테고리 드롭다운 */
.search-cate-wrap {
	position: relative;
	flex: 0 0 auto;
}
.search-cate-wrap.is-open .search-cate .material-symbols-outlined {
	transform: rotate(180deg);
}
.search-cate-list {
	display: none;
	position: absolute;
	top: calc(100% + 18px);
	left: -14px;
	z-index: 20;
	min-width: 148px;
	padding: 6px 0;
	background: var(--txt-white);
	border: 1px solid var(--line-light);
	border-radius: 12px;
	box-shadow: 0 6px 16px var(--black-10);
}
.search-cate-wrap.is-open .search-cate-list {
	display: block;
}
.search-cate-list li {
	padding: 10px 18px;
	font-size: 16px;
	color: var(--txt-basic);
	white-space: nowrap;
	cursor: pointer;
}
.search-cate-list li:hover {
	background: var(--bg-soft);
}
.search-cate-list li.is-selected {
	color: var(--color-primary);
	font-weight: 700;
}
.search-input {
	flex: 1 0 0;
	display: flex;
	align-items: center;
	gap: 18px;
	min-width: 0;
}
.search-input input {
	flex: 1;
	border: 0;
	background: transparent;
	font-size: 20px;
	color: var(--txt-white);
	outline: none;
}
.search-input input::placeholder {
	color: rgba(255, 255, 255, 0.6);
}
.btn-search-clear {
	position: relative;
	display: none;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	background-color: var(--txt-white);
	border-radius: 6px;
}
.search-input.has-value .btn-search-clear {
	display: flex;
	align-items: center;
	justify-content: center;
}
.btn-search-clear span {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 16px;
	height: 2px;
	margin-left: -8px;
	margin-top: -1px;
	border-radius: 2px;
	background: var(--color-primary);
}
.btn-search-clear span:first-child {
	transform: rotate(45deg);
}
.btn-search-clear span:last-child {
	transform: rotate(-45deg);
}
.btn-search {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.btn-search .material-symbols-outlined {
	font-size: 24px;
	color: var(--txt-white);
}
.search-hot {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-shrink: 0;
	width: 430px;
	min-width: 0;
}
.search-hot .label {
	flex: 0 0 auto;
	font-size: 16px;
	font-weight: 700;
	color: var(--txt-white);
	white-space: nowrap;
}
.hot-keywords {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
	height: 38px;
	overflow: hidden;
}
.hot-keywords-track {
	display: flex;
	flex-direction: column;
	width: 100%;
	transition: transform 0.45s ease;
	will-change: transform;
}
.hot-keywords-track.is-resetting {
	transition: none;
}
.hot-keywords-set {
	flex: 0 0 38px;
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	height: 38px;
	overflow: hidden;
	flex-wrap: nowrap;
}
.hot-keywords a {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	max-width: 120px;
	padding: 4px 12px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	background: rgba(255, 255, 255, 0.1);
	border-radius: 200px;
	font-size: 14px;
	color: var(--txt-white);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.hot-keywords a:hover {
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.3);
}

/* =========================================================
   5. 학급운영자료 추천 큐레이션 (thumbnail_01 list)
   ========================================================= */
.sec-curation {
	padding-top: 80px;
}
.sec-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 38px;
}
.curation-list {
	margin-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}
/* 6열 그리드 : 카드 너비는 브라우저가 나눠 계산 (고정 183px 제거) */
.thumb-row {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
}

/* thumbnail_01 카드 */
.thumb-card {
	display: flex;
	flex-direction: column;
	gap: 15px;
	min-width: 0; /* 그리드 칸이 제목 길이에 밀려 넓어지지 않도록 */
}
/* 상세페이지로 이동하는 링크 카드 */
.thumb-card:hover .thumb-title {
	color: var(--color-primary);
	transition: all 0.3s ease;
}
.thumb-card:focus-visible {
	outline: 2px solid var(--color-primary);
	outline-offset: 4px;
	border-radius: 12px;
}
.thumb-card .thumb-img {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1; /* 카드 폭이 변해도 항상 정사각 */
	border-radius: 12px;
	background: #fafafa no-repeat center / contain; /* 이미지 자리 */
	overflow: hidden;
}
/* [서비스 수정 2026-08-19] 썸네일 로딩 자리 표시 — 배경이미지 로드 완료까지만 회색.
   클래스 부착·제거는 common.js v2WatchThumbLoad(로드 완료 시 제거 → 기본 #fafafa 복귀).
   ※ 아래 ::after 상시 오버레이(5% 검정) 위에서 보이므로 #f2f2f2 급은 기본값과 식별 불가 — #e8e8e8 이상 필요 */
.thumb-card .thumb-img.is-thumb-loading {
	background-color: #e8e8e8;
}

/* [서비스 수정 2026-08-19] 시정표 아침활동/점심시간 구획 — 목업 부재 구획 서비스 복원(v1 데이터 보존,
   info 국면). 네이티브 time input 최소 스타일 — 정식 디자인은 퍼블리셔 확인 별건 */
.bell-fixed-table {
	margin: 12px 0;
}
.bell-fixed-table input[type="time"] {
	width: 100%;
	height: 40px;
	padding: 0 12px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 15px;
	background: #fff;
}
.bell-fixed-table .bell-fixed-gap {
	width: 120px;
}

/* [서비스 수정 2026-08-19] 모둠 수 선택 탭(4버튼) — seat-tabs(2버튼 그리드) 재사용 시 2x2 로 깨져 4열 보정(info 국면).
   .group-list 는 display:flex 라 [hidden] 이 무력(author 규칙이 UA 를 덮는 함정 — 검색 국면 .btn 건과 동계열) → 명시 보정 */
.seat-tabs.group-tabs {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	width: 760px;
}
.group-list[hidden] {
	display: none !important;
}
.thumb-card .thumb-img::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.05);
	border-radius: 12px;
}

/* [서비스 수정 2026-08-26] hover 시 썸네일 살짝 확대 — 기존 제목 색상 변화에 이미지 줌인을 추가.
   배경이미지는 템플릿에서 인라인 style 로 .thumb-img 에 붙으므로, ::before 가 background:inherit 로
   배경 일습(이미지+색+size+position)을 통째로 물려받아 그 레이어만 scale 한다.
   - 부모를 직접 scale 하면 라운드 프레임·뱃지까지 커지고 그리드 칸을 넘는다.
   - inherit 라서 .search-result-grid 의 cover, is-thumb-loading 회색 등 기존 override 를 자동으로 따라간다.
   - 불투명 배경색째 물려받아 부모 배경을 완전히 덮으므로 두 겹 겹침(알파 중복)이 생기지 않는다.
   - 확대는 부모의 overflow:hidden 으로 잘리고, ::after(5% 오버레이)와 뱃지는 확대 대상이 아니다. */
.thumb-card .thumb-img::before {
	content: "";
	position: absolute;
	inset: 0;
	background: inherit;
	transform: scale(1);
	transition: transform 0.35s ease;
}
.thumb-card:hover .thumb-img::before,
.thumb-card:focus-visible .thumb-img::before {
	transform: scale(1.06);
}
/* 보관/삭제/이동 선택 모드는 hover 가 inset 테두리로 '선택 대상'을 표시하는 국면이라 줌인 억제 */
.class-list-page.is-archive-mode .thumb-card:hover .thumb-img::before,
.mypage-storage-page.is-delete-mode .thumb-card:hover .thumb-img::before,
.mypage-storage-page.is-move-mode .thumb-card:hover .thumb-img::before,
.liked-storage-page.is-delete-mode .thumb-card:hover .thumb-img::before {
	transform: scale(1);
}
/* NEW 뱃지 (좌상단 아님, 우상단) */
.thumb-img .badge-new,
.event-thumb .badge-new {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--color-primary);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}
.badge-ai {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 22px;
	padding: 0 8px;
	border-radius: 12px;
	background: #5b6cff;
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
	box-shadow: 0 4px 10px rgba(91, 108, 255, 0.24);
}
/* 좋아요 뱃지 (우하단) */
.badge-like {
	position: absolute;
	right: 10px;
	bottom: 10px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	height: 26px;
	padding: 0 9px 0 6px;
	border: 1px solid rgba(255, 255, 255, 0.9);
	background: rgba(0, 0, 0, 0.42);
	border-radius: 30px;
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
	-webkit-tap-highlight-color: transparent;
}
.badge-like:hover,
.badge-like:focus-visible {
	background: rgba(0, 0, 0, 0.58);
	outline: none;
}
.badge-like.is-liked {
	border-color: transparent;
	background: var(--color-coral);
}
.badge-like.is-liked:hover,
.badge-like.is-liked:focus-visible {
	background: var(--color-coral);
}
.badge-like:active {
	transform: scale(0.96);
}
.badge-like .ico-heart {
	font-size: 16px;
	color: #fff;
	font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 20;
}
/* 텍스트 영역 */
.thumb-card .thumb-txt {
	display: flex;
	flex-direction: column;
	gap: 10px;
	word-break: keep-all;
}
.thumb-card .thumb-title {
	height: 48px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--txt-dark);
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.thumb-card .thumb-author {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	align-self: flex-start;
	padding: 3px 13px 3px 3px;
	border: 1px solid #ddd;
	border-radius: 50px;
}
.thumb-card .thumb-author .avatar {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #eaeaea no-repeat center / cover;
	flex-shrink: 0;
}
.thumb-card .thumb-author .name {
	font-size: 14px;
	font-weight: 500;
	color: var(--txt-normal);
	white-space: nowrap;
}

/* =========================================================
   5-1. 메인 배너 (Banner)
   ========================================================= */
.sec-banner {
	/* padding-top: 10px; */
}
.banner {
	position: relative;
	width: 1340px;
	height: 420px;
	margin: 0 auto;
	border-radius: 40px;
	background: linear-gradient(135deg, #cfe9f5, #eaf6fb);
	overflow: hidden;
}
.banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* 좌우 화살표 */
.banner-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
}
.banner-nav.prev {
	left: 24px;
}
.banner-nav.next {
	right: 24px;
}
.banner-nav .material-symbols-outlined {
	font-size: 28px;
	color: #fff;
}
/* 슬라이드 */
.banner-swiper,
.banner-swiper .swiper-slide {
	width: 100%;
	height: 100%;
}
.banner-swiper picture {
	display: block;
	width: 100%;
	height: 100%;
}
.banner-swiper .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 하단 컨트롤 (이전 / 01|06 / 재생·정지 / 다음) */
.banner-ctrl {
	position: absolute;
	left: 40px;
	bottom: 30px;
	z-index: 5;
	display: flex;
	align-items: center;
	gap: 8px;
}
.banner-ctrl .ctrl-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.2);
}
.banner-ctrl .ctrl-arrow .material-symbols-outlined {
	font-size: 24px;
	color: #fff;
}
.ctrl-pill {
	display: flex;
	align-items: center;
	gap: 12px;
	height: 34px;
	padding: 0 5px 0 18px;
	background: rgba(0, 0, 0, 0.35);
	border-radius: 200px;
}
.ctrl-count {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 0.5px;
}
.ctrl-count .current {
	font-style: normal;
	color: var(--txt-white);
}
.ctrl-count .bar {
	width: 1px;
	height: 12px;
	background: rgba(255, 255, 255, 0.4);
}
.ctrl-play {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--txt-white);
}
.ctrl-play .material-symbols-outlined {
	font-size: 16px;
	color: var(--txt-dark);
	font-variation-settings: "FILL" 1;
}
/* 재생 중이면 정지(pause) 아이콘, 멈춰 있으면 재생(play) 아이콘 */
.ctrl-play .ico-play {
	display: none;
}
.ctrl-play.is-paused .ico-pause {
	display: none;
}
.ctrl-play.is-paused .ico-play {
	display: block;
}

/* =========================================================
   6. 미디어자료 섹션 (full-width bg)
   ========================================================= */
.sec-media {
	margin-top: 80px;
	background: var(--bg-soft);
}
.sec-media .inner {
	display: flex;
	justify-content: space-between;
	height: auto;
	padding: 100px 0;
}
/* 좌측 */
.media-left {
	display: flex;
	flex-direction: column;
	flex: 0 0 440px; /* 좌측 텍스트 영역은 고정, 우측 그리드가 나머지를 차지 */
}
.media-left .media-tit {
	font-size: 24px;
	font-weight: 400;
	color: var(--txt-normal);
	line-height: 1.4;
}
.media-left .media-tit strong {
	display: block;
	margin-top: 8px;
	font-size: 24px;
	font-weight: 700;
	color: var(--txt-dark);
}
.media-left .media-tit strong .point {
	color: var(--color-primary);
}
.media-tabs {
	margin-top: 50px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 180px;
}
.media-tabs a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 48px;
	padding: 0 24px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 500;
	color: var(--txt-normal);
	border: 1px solid rgba(0, 0, 0, 0.2);
}
.media-tabs a:hover {
	transition: all 0.3s ease;
	background-color: #fff;
}
.media-tabs a .material-symbols-outlined {
	font-size: 20px;
	color: var(--txt-light);
}
.media-tabs a.is-active .material-symbols-outlined {
	color: var(--color-primary);
}
.media-tabs a.is-active {
	background: #fff;
	color: var(--color-primary);
	font-weight: 700;
	box-shadow: 0 4px 16px rgba(255, 85, 0, 0.20);
	border-color: var(--color-primary);
}
.media-left .btn-more {
	margin-top: auto;
	align-self: flex-start;
	background: #fff;
}

/* 우측 이미지 그리드 (3열 × 2행, 240px) */
/* 3열 그리드 : 칸 너비는 브라우저가 나눠 계산 (고정 240px 제거) */
.media-grid {
	flex: 1 0 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	opacity: 1;
	transition: opacity 0.22s ease;
}
.media-grid.is-fading {
	opacity: 0;
}
.media-cell {
	min-width: 0;
	aspect-ratio: 1 / 1; /* 칸 폭이 변해도 항상 정사각 */
	border-radius: 16px;
	background: #eee no-repeat center / cover;
	overflow: hidden;
	transition: background-image 0.22s ease;
}
.media-cell.is-empty {
	background: none;
}
/* 상세페이지로 이동하는 링크 칸 */
a.media-cell {
	display: block;
	position: relative;
}
.media-grid .media-more-cell {
	display: none;
}
/* hover : 그라디언트 오버레이 + 제목 */
a.media-cell:not(.media-more-cell)::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(34, 34, 34, 0.55) 0%, rgba(255, 85, 0, 0.75) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}
a.media-cell:not(.media-more-cell):hover::after,
a.media-cell:not(.media-more-cell):focus-visible::after {
	opacity: 1;
}
.mc-title {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 28px;
	color: var(--txt-white);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	word-break: keep-all;
	opacity: 0;
	transition: opacity 0.3s ease;
}
a.media-cell:hover .mc-title,
a.media-cell:focus-visible .mc-title {
	opacity: 1;
}

/* =========================================================
   6-1. 검색 결과 전체
   ========================================================= */
.search-page {
	padding-bottom: 80px;
}
.search-hero {
	padding-top: 52px;
}
.search-title-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--line-light);
}
.search-title {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 28px;
	font-weight: 800;
	color: var(--txt-dark);
}
.search-title .material-symbols-outlined {
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	background: #f2f2f2;
	font-size: 24px;
	color: #9b9b9b;
}
.search-breadcrumb {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 14px;
	color: var(--txt-light);
}
.search-breadcrumb a,
.search-breadcrumb strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.search-breadcrumb .material-symbols-outlined {
	font-size: 20px;
	color: #b7b7b7;
}
.search-breadcrumb strong {
	min-width: 40px;
	height: 24px;
	border-radius: 20px;
	background: var(--color-primary);
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	padding: 0 10px;
}
.search-result-wrap {
	padding-top: 62px;
}
.search-result-section + .search-result-section {
	margin-top: 86px;
}
.search-result-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 24px;
}
.search-result-head h3 {
	font-size: 24px;
	font-weight: 800;
	color: var(--txt-dark);
}
.search-result-head p {
	margin-top: 28px;
	font-size: 16px;
	font-weight: 500;
	color: var(--txt-normal);
}
.search-result-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 40px 20px;
}
.search-result-grid .thumb-card {
	gap: 14px;
}
.search-result-grid .thumb-card .thumb-img {
	border-radius: 8px;
	background-size: cover;
}
.search-result-section.is-class-data .thumb-card .thumb-img {
	background-color: #f2f2f2;
	background-size: contain;
}
.search-result-grid .thumb-card .thumb-title {
	height: 44px;
	font-size: 16px;
	line-height: 1.45;
}
.search-result-grid .badge-new {
	top: 8px;
	right: 8px;
}
.search-result-grid .badge-like {
	right: 8px;
	bottom: 8px;
}

/* =========================================================
   6-1-1. 세부 리스트
   ========================================================= */
.class-list-page {
	padding: 52px 0 90px;
}
.detail-head {
	border-bottom: 1px solid var(--line-light);
}
.detail-title-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 72px;
}
.detail-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 28px;
	font-weight: 800;
	color: var(--txt-dark);
}
.detail-title .material-symbols-outlined {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 4px;
	background: #f2f2f2;
	font-size: 24px;
	color: #8f8f8f;
}
.detail-breadcrumb a:not(:first-child) {
	font-size: 14px;
	font-weight: 600;
	color: var(--txt-light);
}
/* [서비스 수정 2026-08-13] 미디어 하위분류 탭 — LNB 아코디언을 걷어내고 콘텐츠 상단으로 옮긴 것.
   칩 자체는 기존 .btn(btn-primary=활성 / btn-white=비활성) 재사용이라 여기선 배치만 잡는다. */
.detail-sub-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 40px;
}
.media-list-page .detail-sub-tabs a + a {
	position: relative;
}
.media-list-page .detail-sub-tabs a + a::before {
	content: "";
	position: absolute;
	left: -6px;
	top: 50%;
	width: 1px;
	height: 18px;
	background: #ddd;
	transform: translateY(-50%);
	pointer-events: none;
}
.detail-sub-tabs + .detail-list-section {
	margin-top: 40px;
}
.detail-list-section {
	margin-top: 72px;
}
.detail-list-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}
.detail-list-meta {
	display: flex;
	align-items: center;
	gap: 20px;
}
.detail-list-meta strong {
	font-size: 20px;
	font-weight: 800;
	color: var(--txt-dark);
}
.detail-list-meta button {
	font-size: 16px;
	font-weight: 700;
	color: #b6b6b6;
}
.detail-list-meta button:first-child {
	padding-right:10px;
	margin-right:10px;
	border-right:1px solid #ddd;
}
.detail-list-meta button.is-active {
	color: var(--color-primary);
}
.archive-toolbar-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}
.btn-archive {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-width: 118px;
	height: 42px;
	padding: 0 18px;
	border-radius: 6px;
	background: var(--color-primary);
	font-size: 16px;
	font-weight: 800;
	color: #fff;
}
.btn-archive .material-symbols-outlined {
	font-size: 20px;
	color: #fff;
}
.btn-archive:hover {
	transition: all 0.3s ease;
	background-color: var(--color-dark-primary);
}
.btn-archive-save,
.btn-archive-cancel {
	display: none;
	align-items: center;
	justify-content: center;
	height: 42px;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 800;
}
.btn-archive-save {
	gap: 6px;
	min-width: 118px;
	padding: 0 18px;
	background: var(--color-primary);
	color: #fff;
}
.btn-archive-save .material-symbols-outlined {
	font-size: 20px;
	color: #fff;
}
.btn-archive-cancel {
	min-width: 70px;
	padding: 0 18px;
	background: #eeeeee;
	color: var(--txt-basic);
}
.class-list-page.is-archive-mode .btn-archive {
	display: none;
}
.class-list-page.is-archive-mode .btn-archive-save,
.class-list-page.is-archive-mode .btn-archive-cancel {
	display: inline-flex;
}
.detail-card-grid {
	margin-top: 0;
}
.detail-card-grid .thumb-card {
	position: relative;
}
.class-list-page.is-archive-mode .thumb-card {
	cursor: pointer;
	outline: 0;
	-webkit-tap-highlight-color: transparent;
}
.class-list-page.is-archive-mode .thumb-card:focus,
.class-list-page.is-archive-mode .thumb-card:focus-visible,
.class-list-page.is-archive-mode .thumb-card:active {
	outline: 0;
	box-shadow: none;
}
.class-list-page.is-archive-mode .thumb-card .thumb-img {
	box-shadow: inset 0 0 0 4px transparent;
	transition: box-shadow 0.18s ease;
}
.class-list-page.is-archive-mode .thumb-card:hover .thumb-img,
.class-list-page.is-archive-mode .thumb-card.is-selected-for-archive .thumb-img {
	box-shadow: inset 0 0 0 4px var(--color-primary);
}
.class-list-page.is-archive-mode .thumb-card.is-selected-for-archive .thumb-title {
	color: var(--color-primary);
}
.archive-check {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 6;
	display: none;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: 2px solid var(--color-primary);
	border-radius: 7px;
	background: #fff;
	color: transparent;
	transition: background-color 0.18s ease, color 0.18s ease;
}
.class-list-page.is-archive-mode .archive-check {
	display: inline-flex;
}
.archive-check .material-symbols-outlined {
	font-size: 22px;
	font-weight: 800;
}
.thumb-card.is-selected-for-archive .archive-check {
	background: var(--color-primary);
	color: #fff;
}
.thumb-card.is-selected-for-archive .archive-check .material-symbols-outlined {
	color: #fff;
}
.archive-modal {
	position: fixed;
	inset: 0;
	z-index: 700;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}
.archive-modal.is-open {
	display: flex;
}
.archive-dim {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}
.archive-dialog {
	position: relative;
	z-index: 1;
	width: 680px;
	max-width: 100%;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
	overflow: hidden;
}
.archive-dialog-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 78px;
	padding: 0 28px;
	border-bottom: 1px solid var(--line-light);
}
.archive-dialog-head h2 {
	font-size: 24px;
	font-weight: 800;
	color: var(--txt-dark);
}
.archive-close {
	position: relative;
	width: 28px;
	height: 28px;
}
.archive-close span {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 28px;
	height: 3px;
	margin-left: -14px;
	margin-top: -1px;
	border-radius: 3px;
	background: var(--txt-basic);
}
.archive-close span:first-child {
	transform: rotate(45deg);
}
.archive-close span:last-child {
	transform: rotate(-45deg);
}
.archive-dialog-body {
	padding: 30px 30px 0;
}
.archive-dialog-guide {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 20px;
}
.archive-dialog-guide p {
	font-size: 16px;
	font-weight: 700;
	color: var(--color-primary);
}
.btn-folder-new {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	height: 46px;
	padding: 0 18px;
	border: 1px solid #d7d7d7;
	border-radius: 12px;
	background: #eeeeee;
	font-size: 16px;
	font-weight: 800;
	color: var(--txt-basic);
}
.btn-folder-new .material-symbols-outlined {
	font-size: 20px;
	color: var(--txt-basic);
}
.btn-folder-new:disabled {
	color: #bdbdbd;
	cursor: default;
}
.btn-folder-new:disabled .material-symbols-outlined {
	color: #bdbdbd;
}
.folder-list {
	max-height: 214px;
	padding: 20px;
	border: 1px solid #d9d9d9;
	border-radius: 12px;
	background: #f5f5f5;
	overflow-y: auto;
	scrollbar-gutter: stable;
}
.folder-list::-webkit-scrollbar {
	width: 10px;
}
.folder-list::-webkit-scrollbar-track {
	border: 2px solid transparent;
	background-clip: content-box;
}
.folder-list::-webkit-scrollbar-thumb {
	border: 2px solid transparent;
	border-radius: 6px;
	background: #c2c2c2;
	background-clip: content-box;
}
.folder-row,
.folder-create-row {
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 68px;
	padding: 0 18px;
	border: 1px solid #dddddd;
	border-radius: 6px;
	background: #fff;
	font-size: 20px;
	color: var(--txt-basic);
}
.folder-row + .folder-row,
.folder-create-row + .folder-row,
.folder-row + .folder-create-row {
	margin-top: 10px;
}
.folder-row {
	cursor: pointer;
}
.folder-row input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.folder-row.is-selected {
	border-color: var(--color-primary);
	background: #fff3ed;
}
.folder-radio {
	position: relative;
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	border: 1px solid var(--color-primary);
	border-radius: 50%;
	background: #fff;
}
.folder-row.is-selected .folder-radio::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--color-primary);
	transform: translate(-50%, -50%);
}
.folder-ico,
.folder-create-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: #f4f4f4;
}
.folder-row.is-selected .folder-ico {
	background: #ffdfd0;
}
.folder-ico .material-symbols-outlined {
	font-size: 28px;
	font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 24;
	color: var(--color-primary);
}
.folder-name {
	min-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.folder-create-row {
	border: 2px solid var(--color-primary);
}
.folder-create-ico .material-symbols-outlined {
	font-size: 24px;
	color: var(--color-primary);
}
.folder-create-row input {
	flex: 1;
	min-width: 0;
	border: 0;
	background: transparent;
	font-size: 20px;
	font-weight: 700;
	color: var(--txt-basic);
	outline: 0;
}
.folder-create-row input::placeholder {
	color: #b8b8b8;
}
.folder-create-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}
.folder-create-actions button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 72px;
	height: 40px;
	padding: 0 18px;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 800;
}
.folder-create-cancel {
	border: 1px solid #dcdcdc;
	background: #fff;
	color: var(--txt-basic);
}
.folder-create-submit {
	background: var(--color-primary);
	color: #fff;
}
.archive-dialog-foot {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 30px;
}
.btn-modal-cancel,
.btn-modal-save {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 96px;
	height: 46px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 800;
}
.btn-modal-cancel {
	border: 1px solid #dcdcdc;
	background: #fff;
	color: var(--txt-basic);
}
.btn-modal-save {
	background: var(--color-primary);
	color: #fff;
}
body.is-archive-modal-open {
	overflow: hidden;
}

/* =========================================================
   6-1-2. 미디어 상세 팝업
   ========================================================= */
.media-detail-modal {
	position: fixed;
	inset: 0;
	z-index: 560;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}
.media-detail-modal.is-open {
	display: flex;
}
.media-detail-dim {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.62);
}
.media-detail-dialog {
	position: relative;
	z-index: 1;
	width: 900px;
	max-width: 100%;
	border-radius: 16px;
	background: #fff;
	overflow: hidden;
}
.media-detail-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
	padding: 0 28px;
	border-bottom: 1px solid var(--line-light);
}
.media-detail-head h2 {
	min-width: 0;
	font-size: 24px;
	font-weight: 800;
	color: var(--txt-dark);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.media-detail-close {
	position: relative;
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
}
.media-detail-close span {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 26px;
	height: 3px;
	margin-left: -13px;
	margin-top: -1px;
	border-radius: 3px;
	background: var(--txt-basic);
}
.media-detail-close span:first-child {
	transform: rotate(45deg);
}
.media-detail-close span:last-child {
	transform: rotate(-45deg);
}
.media-detail-body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 296px;
	gap: 28px;
	padding: 36px;
}
.media-detail-preview {
	min-width: 0;
}
.media-detail-image-box {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	border-radius: 12px;
	background: #f2f2f2;
	overflow: hidden;
}
.media-detail-image-box img {
	display: block;
	width: 94%;
	height: 94%;
	object-fit: contain;
}
/* [서비스 수정 2026-08-13] 동영상(10002) 상세 — 1:1 고정 박스 안에 비율 유지 letterbox(이미지와 동일 원리).
   display 는 common.js 가 img 와 상호 토글(인라인) */
.media-detail-image-box video {
	width: 100%;
	max-height: 100%;
}
.media-detail-preview p {
	margin-top: 12px;
	text-align: right;
	font-size: 14px;
	font-weight: 800;
	color: var(--txt-dark);
}
.media-detail-info {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding-left: 28px;
	border-left: 1px solid var(--line-light);
}
.media-detail-author {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 40px;
	padding: 0 14px;
	border: 1px solid #dddddd;
	border-radius: 9px;
	font-size: 14px;
	font-weight: 800;
	color: var(--txt-basic);
}
.media-detail-author .avatar {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 1px solid #dddddd;
	background: url("../images/avatar_01.png") no-repeat center / cover;
}
.media-detail-meta {
	display: flex;
	flex-direction: column;
	gap: 28px;
	margin-top: 28px;
}
.media-detail-meta dt {
	margin-bottom: 12px;
	font-size: 16px;
	font-weight: 800;
	color: var(--txt-dark);
}
.media-detail-meta dd {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 16px;
	border-radius: 9px;
	background: #f5f5f5;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
	color: var(--txt-basic);
	word-break: keep-all;
}
.media-detail-meta dd span {
	display: inline-flex;
	align-items: center;
	height: 26px;
	padding: 0 10px;
	border-radius: 6px;
	background: #fff;
	font-size: 14px;
	font-weight: 800;
	color: var(--txt-normal);
}
.media-normal-meta[hidden],
.media-ai-meta[hidden] {
	display: none !important;
}
.media-detail-tags {
	margin-top: 28px;
}
.media-detail-tags h3 {
	margin-bottom: 14px;
	font-size: 16px;
	font-weight: 800;
	color: var(--txt-dark);
}
.media-tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.media-tag-list span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 13px;
	border-radius: 9px;
	background: #f3f3f3;
	font-size: 14px;
	font-weight: 800;
	color: var(--txt-normal);
}
.media-detail-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 30px;
}
.media-download-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	height: 48px;
	margin-top: auto;
	border-radius: 9px;
	background: var(--color-primary);
	font-size: 16px;
	font-weight: 800;
	color: #fff;
}
.media-download-btn .material-symbols-outlined {
	font-size: 20px;
	color: #fff;
}
body.is-media-modal-open {
	overflow: hidden;
}

/* =========================================================
   6-1-3. 학급 정보
   ========================================================= */
.class-info-page {
	padding: 52px 0 90px;
}
.info-form-section {
	margin-top: 56px;
}
.info-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 24px;
}
.info-section-head h3 {
	font-size: 24px;
	font-weight: 800;
	color: var(--txt-dark);
}
.info-section-head p {
	margin-top: 6px;
	font-size: 14px;
	font-weight: 500;
	color: var(--txt-light);
}
.btn-info-save,
.btn-import,
.btn-class-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 42px;
	padding: 0 18px;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 800;
	white-space: nowrap;
}
.btn-info-save,
.btn-import {
	background: var(--color-primary);
	color: #fff;
}
.btn-info-save:hover,
.btn-import:hover {
	background-color: var(--color-dark-primary);
}
.btn-class-link {
	border: 1px solid #d8d8d8;
	background: #eeeeee;
	color: var(--txt-basic);
}
.btn-class-link:hover {
	background-color: #dddddd;
}
.btn-info-save .material-symbols-outlined,
.btn-import .material-symbols-outlined {
	font-size: 19px;
	color: #fff;
}
.btn-class-link .material-symbols-outlined {
	font-size: 19px;
	color: var(--txt-basic);
}
.class-info-card {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px 20px;
	padding: 24px;
	border-radius: 12px;
	background: #f8f8f8;
}
.info-field {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
}
.info-field > span {
	font-size: 16px;
	font-weight: 800;
	color: var(--txt-dark);
}
.field-control {
	position: relative;
}
.field-control input {
	width: 100%;
	height: 48px;
	padding: 0 72px 0 16px;
	border: 1px solid #dddddd;
	border-radius: 6px;
	background: #fff;
	font-size: 16px;
	font-weight: 700;
	color: var(--txt-basic);
}
.field-control input::placeholder {
	color: #b8b8b8;
}
.field-control em {
	position: absolute;
	right: 16px;
	top: 50%;
	font-size: 16px;
	font-weight: 800;
	color: var(--txt-normal);
	transform: translateY(-50%);
}
.student-info-section {
	margin-top: 70px;
}
.student-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

/* =========================================================
   6-1-3-1. 마이페이지
   ========================================================= */
body[data-lnb-section="mypage"]:not(.is-allmenu-open):not(.is-archive-modal-open):not(.is-class-import-open):not(.is-media-modal-open):not(.is-storage-delete-open):not(.is-storage-move-open) {
	height: auto;
	min-height: 100%;
	overflow-y: auto;
}
.mypage-info-page {
	display: block;
	overflow: visible;
	min-height: 100vh;
	padding: 52px 0 220px;
}
.mypage-account-section {
	margin-top: 56px;
}
.mypage-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 24px;
	border-bottom: 1px solid #dddddd;
}
.mypage-section-head h3 {
	font-size: 24px;
	font-weight: 800;
	color: var(--txt-dark);
}
.mypage-profile-form {
	display: flex;
	flex-direction: column;
	gap: 30px;
	width: 1000px;
	max-width: 100%;
	margin-top: 44px;
}
.mypage-profile-row {
	display: grid;
	grid-template-columns: 160px minmax(0, 1fr);
	align-items: center;
	gap: 34px;
}
.mypage-profile-label {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	font-weight: 700;
	color: var(--txt-normal);
}
.mypage-profile-label .material-symbols-outlined {
	font-size: 20px;
	color: var(--txt-dark);
}
.mypage-profile-control {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 12px;
	min-width: 0;
}
/* [서비스 수정 2026-08-26] 버튼 개수가 모드에 따라 바뀌므로(보기=변경 1개 / 편집=저장·취소 2개)
   고정 2칸이면 3번째 아이템인 취소가 둘째 줄로 밀린다. 첫 칸만 명시하고 나머지는 자동 칸으로 흘려
   버튼이 몇 개든 한 줄에 세운다. display:none 인 버튼은 그리드 아이템이 아니라 칸을 먹지 않는다. */
.mypage-profile-control.has-action {
	grid-template-columns: minmax(0, 1fr);
	grid-auto-flow: column;
	grid-auto-columns: 140px;
}
.mypage-profile-control input {
	width: 100%;
	height: 58px;
	padding: 0 18px;
	border: 1px solid #dddddd;
	border-radius: 6px;
	background: #f4f4f4;
	font-size: 16px;
	font-weight: 600;
	color: var(--txt-basic);
	outline: 0;
}
.mypage-profile-row:first-child .mypage-profile-control input {
	background: #fff;
}
/* [서비스 수정 2026-08-26] 저장/취소는 btn-class-link 가 아니라 기본 42px 이라 input(58px)보다 낮았다.
   has-action 안의 버튼은 종류와 무관하게 입력칸 높이에 맞춘다 */
.mypage-profile-control.has-action .btn {
	height: 58px;
	padding: 0 18px;
}

.mypage-storage-page,
.mypage-storage-empty-page,
.liked-storage-page {
	display: block;
	overflow: visible;
	min-height: 100vh;
	padding: 52px 0 220px;
}
.storage-section {
	margin-top: 48px;
}
.storage-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 24px;
}
.storage-section-title {
	font-size: 24px;
	font-weight: 800;
	color: var(--txt-dark);
}
.storage-folder-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}
.storage-folder-card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 15px;
	min-width: 0;
	min-height: 62px;
	padding: 0 48px 0 6px;
	border: 1px solid #dddddd;
	border-radius: 14px;
	background: #fff;
	color: var(--txt-basic);
	text-align: left;
	cursor: pointer;
}
.storage-folder-card:hover,
.storage-folder-card.is-active {
	border-color: var(--color-primary);
	color: var(--color-primary);
	background-color: var(--color-white-primary02);
}
.storage-folder-card:hover .storage-folder-icon,
.storage-folder-card.is-active .storage-folder-icon{
	background-color: #FFE9DF;
}
.storage-folder-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: #f4f4f4;
}
.storage-folder-icon .material-symbols-outlined {
	font-size: 30px;
	color: var(--color-primary);
	font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 24;
}
.storage-folder-icon.is-all .material-symbols-outlined {
	color: #444444;
	font-variation-settings: "FILL" 0, "wght" 700, "GRAD" 0, "opsz" 24;
}
.storage-folder-name {
	min-width: 0;
	font-size: 16px;
	font-weight: 800;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.storage-folder-more {
	position: absolute;
	right: 12px;
	top: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 32px;
	border-radius: 6px;
	color: var(--txt-normal);
	transform: translateY(-50%);
}
.storage-folder-more .material-symbols-outlined {
	font-size: 22px;
}
.storage-folder-more:hover {
	background: #ffe9e3;
	color: var(--color-primary);
}
.storage-folder-menu {
	position: absolute;
	right: -18px;
	top: calc(100% - 12px);
	z-index: 30;
	display: none;
	min-width: 120px;
	padding: 8px 0;
	border: 1px solid #eeeeee;
	border-radius: 6px;
	background: #fff;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}
.storage-folder-card.is-menu-open .storage-folder-menu {
	display: block;
}
.storage-folder-menu button {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	height: 42px;
	padding: 0 16px;
	font-size: 14px;
	font-weight: 700;
	color: var(--txt-normal);
	text-align: left;
}
.storage-folder-menu button:hover {
	background: #fff7f2;
	color: var(--color-primary);
}
.storage-folder-menu .material-symbols-outlined {
	font-size: 18px;
}
.storage-folder-add {
	justify-content: center;
	padding: 14px 16px;
	background: #fbfbfb;
}
.storage-folder-add[hidden] {
	display: none;
}
.storage-folder-add .material-symbols-outlined {
	font-size: 22px;
	color: var(--txt-basic);
}
.storage-folder-create {
	display: grid;
	grid-template-columns: 62px minmax(0, 1fr) 70px;
	grid-column: span 1;
	align-items: stretch;
	min-height: 62px;
	border: 1px solid #dddddd;
	border-radius: 14px;
	background: #fff;
	overflow: hidden;
}
.storage-folder-create .storage-folder-icon {
	align-self: center;
	justify-self: center;
	width: 48px;
	height: 48px;
	border-radius: 10px;
	margin-right:5px;
}
.storage-folder-create input {
	min-width: 0;
	border: 0;
	background: transparent;
	font-size: 16px;
	font-weight: 800;
	color: var(--txt-basic);
	outline: 0;
	padding-right:15px;
}
.storage-folder-create input::placeholder {
	color: #888888;
}
.storage-folder-create-actions {
	display: grid;
	grid-template-rows: 1fr 1fr;
	border-left: 1px solid #dddddd;
}
.storage-folder-create-actions button {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
}
.storage-folder-confirm {
	background: var(--color-primary);
	color: var(--txt-white);
}
.storage-folder-cancel {
	border-top: 1px solid #dddddd;
	background: #fff;
	color: var(--txt-normal);
}
.storage-delete-modal {
	position: fixed;
	inset: 0;
	z-index: 500;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}
.storage-delete-modal.is-open {
	display: flex;
}
.storage-delete-dim {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
}
.storage-delete-dialog {
	position: relative;
	z-index: 1;
	width: 400px; /* [서비스 수정 2026-08-18] 520→400 — 확인형 모달 폭 통일 규칙 */
	max-width: 100%;
	padding: 42px 36px 38px;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
	text-align: center;
}
.storage-delete-dialog h2 {
	font-size: 20px;
	font-weight: 800;
	color: var(--txt-dark);
	line-height: 1.4;
}
.storage-delete-dialog p {
	margin-top: 12px;
	font-size: 16px;
	font-weight: 600;
	color: #999999;
}
.storage-delete-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 32px;
}
.storage-delete-actions .btn {
	min-width: 96px;
}
body.is-storage-delete-open {
	overflow: hidden;
}
.storage-divider {
	margin: 44px 0 34px;
	border: 0;
	border-top: 1px solid #dddddd;
}
.storage-list-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 22px;
}
.storage-list-title {
	display: flex;
	align-items: baseline;
	gap: 15px;
	font-size: 24px;
	font-weight: 800;
	color: var(--txt-dark);
}
.storage-list-title span {
	font-size: 16px;
	font-weight: 700;
	color: var(--txt-normal);
}
.storage-list-title span:first-child {
	font-size:20px;
}
.storage-list-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}
.storage-delete-save,
.storage-delete-cancel,
.storage-move-save,
.storage-move-cancel {
	display: none;
}
.mypage-storage-page.is-delete-mode .js-storage-move,
.mypage-storage-page.is-delete-mode .js-storage-delete-enter,
.mypage-storage-page.is-move-mode .js-storage-move,
.mypage-storage-page.is-move-mode .js-storage-delete-enter {
	display: none;
}
.mypage-storage-page.is-delete-mode .storage-delete-save,
.mypage-storage-page.is-delete-mode .storage-delete-cancel,
.mypage-storage-page.is-move-mode .storage-move-save,
.mypage-storage-page.is-move-mode .storage-move-cancel {
	display: inline-flex;
}
.storage-list-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 42px 28px;
}
.storage-empty-state {
	display: none;
	min-height: 500px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 20px;
	text-align: center;
	color: #999999;
	font-size: 18px;
}
.storage-empty-state img {
	width: 220px;
	max-width: 40%;
}
.mypage-storage-empty-page .storage-empty-state {
	display: flex;
}
.storage-list-grid .thumb-card {
	position: relative;
	gap: 12px;
}
.mypage-storage-page.is-delete-mode .thumb-card,
.mypage-storage-page.is-move-mode .thumb-card {
	cursor: pointer;
	outline: 0;
	-webkit-tap-highlight-color: transparent;
}
.mypage-storage-page.is-delete-mode .thumb-card:focus,
.mypage-storage-page.is-delete-mode .thumb-card:focus-visible,
.mypage-storage-page.is-delete-mode .thumb-card:active,
.mypage-storage-page.is-move-mode .thumb-card:focus,
.mypage-storage-page.is-move-mode .thumb-card:focus-visible,
.mypage-storage-page.is-move-mode .thumb-card:active {
	outline: 0;
	box-shadow: none;
}
.mypage-storage-page.is-delete-mode .thumb-card .thumb-img,
.mypage-storage-page.is-move-mode .thumb-card .thumb-img {
	box-shadow: inset 0 0 0 4px transparent;
	transition: box-shadow 0.18s ease;
}
.mypage-storage-page.is-delete-mode .thumb-card:hover .thumb-img,
.mypage-storage-page.is-delete-mode .thumb-card.is-selected-for-archive .thumb-img,
.mypage-storage-page.is-move-mode .thumb-card:hover .thumb-img,
.mypage-storage-page.is-move-mode .thumb-card.is-selected-for-archive .thumb-img {
	box-shadow: inset 0 0 0 4px var(--color-primary);
}
.mypage-storage-page.is-delete-mode .thumb-card.is-selected-for-archive .thumb-title,
.mypage-storage-page.is-move-mode .thumb-card.is-selected-for-archive .thumb-title {
	color: var(--color-primary);
}
.mypage-storage-page.is-delete-mode .archive-check,
.mypage-storage-page.is-move-mode .archive-check {
	display: inline-flex;
}
.storage-move-modal .archive-dialog-body {
	padding-bottom: 0;
}
.storage-move-folder-list {
	max-height: 250px;
}
body.is-storage-move-open {
	overflow: hidden;
}
.storage-list-grid .thumb-img {
	border-radius: 8px;
}
.storage-list-grid .thumb-title {
	height: 46px;
	font-size: 16px;
	line-height: 1.45;
}
.liked-tabs {
	display: flex;
	align-items: center;
	width: min(100%, 900px);
	margin: 52px auto 42px;
	padding: 8px;
	border-radius: 999px;
	background: #ffffff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.liked-tabs button {
	flex: 1;
	height: 42px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: #999999;
	font-size: 16px;
	font-weight: 800;
	white-space: nowrap;
	cursor: pointer;
}
.liked-tabs button.is-active {
	background: #ffe4d7;
	color: var(--color-primary);
}
.liked-list-head {
	align-items: flex-start;
	flex-wrap: wrap;
}
.liked-list-tools {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	flex: 0 0 100%;
	width: 100%;
}
.liked-action-buttons {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}
.liked-search {
	display: flex;
	align-items: center;
	width: 240px;
	height: 40px;
	border: 1px solid #777777;
	border-radius: 4px;
	background: #ffffff;
	padding: 0 12px;
	color: #444444;
}
.liked-search .material-symbols-outlined {
	font-size: 22px;
}
.liked-search input {
	width: 100%;
	border: 0;
	outline: 0;
	padding: 0 0 0 8px;
	background: transparent;
	font-size: 14px;
	color: var(--txt-dark);
}
.liked-search input::placeholder {
	color: #aaaaaa;
}
.liked-delete-save,
.liked-delete-cancel {
	display: none;
}
.liked-storage-page.is-delete-mode .js-liked-delete-enter {
	display: none;
}
.liked-storage-page.is-delete-mode .liked-delete-save,
.liked-storage-page.is-delete-mode .liked-delete-cancel {
	display: inline-flex;
}
.liked-storage-page.is-delete-mode .thumb-card {
	cursor: pointer;
	outline: 0;
	-webkit-tap-highlight-color: transparent;
}
.liked-storage-page.is-delete-mode .thumb-card:focus,
.liked-storage-page.is-delete-mode .thumb-card:focus-visible,
.liked-storage-page.is-delete-mode .thumb-card:active {
	outline: 0;
	box-shadow: none;
}
.liked-storage-page.is-delete-mode .thumb-card .thumb-img {
	box-shadow: inset 0 0 0 4px transparent;
	transition: box-shadow 0.18s ease;
}
.liked-storage-page.is-delete-mode .thumb-card:hover .thumb-img,
.liked-storage-page.is-delete-mode .thumb-card.is-selected-for-archive .thumb-img {
	box-shadow: inset 0 0 0 4px var(--color-primary);
}
.liked-storage-page.is-delete-mode .thumb-card.is-selected-for-archive .thumb-title {
	color: var(--color-primary);
}
.liked-storage-page.is-delete-mode .archive-check {
	display: inline-flex;
}
.liked-list-grid .thumb-card[hidden] {
	display: none;
}
.student-list-panel {
	padding: 22px 24px 24px;
	border-radius: 12px;
	background: #f8f8f8;
}
.student-list-panel > p {
	margin-bottom: 18px;
	font-size: 16px;
	font-weight: 800;
	color: var(--txt-dark);
}
.student-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px 16px;
}
.student-card {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr) 42px;
	align-items: center;
	min-height: 58px;
	padding: 0 20px;
	border: 1px solid #dddddd;
	border-radius: 6px;
	background: #fff;
}
.student-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 6px;
	background: #ffdfd0;
	font-size: 18px;
	font-weight: 800;
	color: var(--color-primary);
}
.student-card strong {
	font-size: 20px;
	font-weight: 800;
	text-align: center;
	color: var(--txt-dark);
	letter-spacing: 0;
}
.student-card em {
	font-size: 20px;
	font-weight: 800;
	text-align: right;
	color: #999999;
}
.student-card em.is-boy {
	color: #2767e7;
}
.student-card em.is-girl {
	color: #ec2c9f;
}
.class-import-modal {
	position: fixed;
	inset: 0;
	z-index: 620;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}
.class-import-modal.is-open {
	display: flex;
}
.class-import-dim {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}
.class-import-dialog {
	position: relative;
	z-index: 1;
	width: 500px;
	max-width: 100%;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
	overflow: hidden;
}
.class-import-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 74px;
	padding: 0 28px;
	border-bottom: 1px solid var(--line-light);
}
.class-import-head h2 {
	font-size: 24px;
	font-weight: 800;
	color: var(--txt-dark);
}
.class-import-close {
	position: relative;
	width: 28px;
	height: 28px;
}
.class-import-close span {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 26px;
	height: 3px;
	margin-left: -13px;
	margin-top: -1px;
	border-radius: 3px;
	background: var(--txt-basic);
}
.class-import-close span:first-child {
	transform: rotate(45deg);
}
.class-import-close span:last-child {
	transform: rotate(-45deg);
}
.class-import-body {
	padding: 30px 30px 0;
}
.class-import-controls {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 136px;
	gap: 10px;
}
.class-select-wrap {
	position: relative;
	display: block;
	min-width: 0;
}
.class-select-wrap select {
	width: 100%;
	height: 48px;
	padding: 0 44px 0 18px;
	border: 1px solid #bcbcbc;
	border-radius: 10px;
	background: #fff;
	font-size: 18px;
	font-weight: 800;
	color: var(--txt-dark);
	appearance: none;
}
.class-select-wrap .material-symbols-outlined {
	position: absolute;
	right: 15px;
	top: 50%;
	font-size: 22px;
	color: var(--txt-dark);
	pointer-events: none;
	transform: translateY(-50%);
}
.btn-class-edit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 48px;
	border: 1px solid var(--color-primary);
	border-radius: 10px;
	background: #fff;
	font-size: 16px;
	font-weight: 800;
	color: var(--color-primary);
}
.btn-class-edit .material-symbols-outlined {
	font-size: 20px;
	color: var(--color-primary);
}
.class-import-table {
	margin-top: 30px;
	border: 1px solid #dddddd;
	border-radius: 10px;
	overflow: hidden;
}
.class-import-thead,
.class-import-list div {
	display: grid;
	grid-template-columns: 178px minmax(0, 1fr);
	align-items: center;
	text-align: center;
}
.class-import-thead {
	height: 50px;
	background: #f4f4f4;
}
.class-import-thead strong {
	font-size: 16px;
	font-weight: 800;
	color: var(--txt-dark);
}
.class-import-thead strong + strong,
.class-import-list span + strong {
	border-left: 1px solid #dddddd;
}
.class-import-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100px;
	font-size: 16px;
	font-weight: 500;
	color: #999999;
}
.class-import-empty[hidden],
.class-import-list[hidden] {
	display: none !important;
}
.class-import-list {
	padding: 4px 0 12px;
}
.class-import-list div {
	min-height: 48px;
}
.class-import-list span,
.class-import-list strong {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-size: 16px;
	font-weight: 500;
	color: var(--txt-dark);
}
.class-import-foot {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 30px;
}
.btn-class-import-cancel,
.btn-class-import-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 96px;
	height: 46px;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 800;
}
.btn-class-import-cancel {
	border: 1px solid #dcdcdc;
	background: #fff;
	color: var(--txt-basic);
}
.btn-class-import-submit {
	background: var(--color-primary);
	color: #fff;
}
body.is-class-import-open {
	overflow: hidden;
}
.timetable-section {
	margin-top: 56px;
}
.timetable-card {
	padding: 20px;
	border-radius: 12px;
	background: #f8f8f8;
}
.timetable-scroll {
	border: 1px solid #dddddd;
	border-radius: 10px;
	background: #fff;
	overflow: hidden;
}
.bell-page .timetable-scroll {
	overflow: visible;
}
.timetable-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}
.timetable-table caption {
	overflow: hidden;
	position: absolute;
	width: 1px;
	height: 1px;
	clip: rect(0, 0, 0, 0);
}
.timetable-table th,
.timetable-table td {
	height: 64px;
	border-bottom: 1px solid #dddddd;
	text-align: center;
	vertical-align: middle;
}
.timetable-table thead th {
	height: 52px;
	background: #eeeeee;
	font-size: 18px;
	font-weight: 800;
	color: #999999;
}
.timetable-table tbody tr:last-child th,
.timetable-table tbody tr:last-child td {
	border-bottom: 0;
}
.timetable-table tbody th {
	width: 90px;
	font-size: 16px;
	font-weight: 800;
	color: var(--txt-dark);
}
.timetable-table input {
	width: 100%;
	height: 100%;
	border: 0;
	background: transparent;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	color: var(--txt-dark);
	outline: 0;
}
.timetable-table input::placeholder {
	color: #a8a8a8;
}
.bell-table th,
.bell-table td {
	width: 25%;
}
.bell-time-picker {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	width: 220px;
	border: 1px solid #dddddd;
	border-radius: 6px;
	background: #ffffff;
	overflow: visible;
}
.bell-time-input,
.bell-duration-input {
	height: 36px;
	border: 0;
	background: transparent;
	text-align: center;
	font-size: 16px;
	font-weight: 800;
	color: #999999;
	outline: 0;
	cursor: pointer;
	appearance: auto;
}
.bell-time-input {
	flex: 1;
	min-width: 0;
	padding: 0 10px;
	text-align: left;
	cursor: text;
}
.bell-time-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 36px;
	border: 0;
	background: transparent;
	color: #111111;
	cursor: pointer;
}
.bell-time-toggle .material-symbols-outlined {
	font-size: 22px;
	line-height: 1;
}
.bell-time-dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	z-index: 20;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	width: 250px;
	padding: 8px;
	border: 1px solid #dddddd;
	background: #ffffff;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}
.bell-time-picker.is-open {
	z-index: 30;
}
.bell-time-picker.is-open .bell-time-dropdown {
	display: grid;
}
.bell-time-column {
	display: flex;
	flex-direction: column;
	gap: 4px;
	max-height: 220px;
	overflow-y: auto;
}
.bell-time-option {
	height: 36px;
	border: 0;
	border-radius: 4px;
	background: transparent;
	font-size: 16px;
	font-weight: 800;
	color: var(--txt-dark);
	cursor: pointer;
}
.bell-time-option:hover,
.bell-time-option.is-selected {
	background: #1478f2;
	color: #ffffff;
}
.bell-duration-picker {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	width: 150px;
	border: 1px solid #dddddd;
	border-radius: 6px;
	background: #ffffff;
	overflow: hidden;
}
.bell-duration-input {
	flex: 1;
	min-width: 0;
	padding: 0 4px 0 14px;
	text-align: right;
	cursor: text;
}
.bell-duration-unit {
	flex: 0 0 auto;
	padding: 0 14px 0 4px;
	font-size: 16px;
	font-weight: 800;
	color: var(--txt-dark);
	line-height: 36px;
}
.timetable-table .bell-time-input,
.timetable-table .bell-duration-input {
	height: 36px;
}
.bell-time-input.is-selected,
.bell-time-toggle.is-selected,
.bell-duration-input.is-selected {
	color: var(--txt-dark);
}
.seat-tabs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	width: 560px;
	max-width: 100%;
	margin: 42px auto 0;
	padding: 10px;
	border-radius: 40px;
	background: #fff;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}
.seat-tabs button {
	height: 52px;
	border-radius: 28px;
	font-size: 18px;
	font-weight: 800;
	color: #999999;
}
.seat-tabs button.is-active {
	background: #ffdfd0;
	color: var(--color-primary);
}
.seat-section {
	margin-top: 44px;
}
.seat-card {
	padding: 20px 20px 28px;
	border-radius: 12px;
	background: #f8f8f8;
}
.seat-scroll {
	overflow: hidden;
}
.seat-board {
	display: none;
	min-width: 0;
}
.seat-board.is-active {
	display: block;
}
.classroom-front {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}
.blackboard {
	display: grid;
	grid-template-columns: 130px minmax(0, 1fr) 130px;
	align-items: center;
	width: 650px;
	height: 52px;
	border: 4px solid #fff;
	border-radius: 4px;
	background: #2d7634;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
	color: #fff;
}
.blackboard span {
	height: 100%;
	border-right: 4px solid #fff;
}
.blackboard span:last-child {
	border-right: 0;
	border-left: 4px solid #fff;
}
.blackboard strong {
	text-align: center;
	font-size: 18px;
	font-weight: 800;
}
.desk-teacher {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 150px;
	height: 50px;
	border-radius: 10px;
	background: #9b6f34;
	font-size: 18px;
	font-weight: 800;
	color: #fff;
}
.seat-columns {
	display: grid;
	gap: 18px;
	margin-top: 38px;
}
.seat-columns-5 {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}
.seat-columns-6 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.seat-column {
	overflow: hidden;
	border-radius: 10px;
	background: #fff;
}
.seat-column h4 {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	background: #ffdfd0;
	font-size: 18px;
	font-weight: 800;
	color: var(--txt-dark);
}
.seat-names {
	display: grid;
	gap: 12px;
	padding: 14px 10px;
}
.seat-columns-6 .seat-names {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.seat-names input {
	width: 100%;
	height: 40px;
	border: 0;
	border-radius: 5px;
	background: #f3f3f3;
	text-align: center;
	font-size: 14px;
	font-weight: 800;
	color: var(--txt-dark);
	outline: 0;
}
.seat-names input::placeholder {
	color: #999999;
}
.timetable-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 22px;
}
.btn-timetable-add,
.btn-timetable-delete {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-width: 92px;
	height: 40px;
	border-radius: 20px;
	font-size: 16px;
	font-weight: 800;
	color: #fff;
}
.btn-timetable-add {
	background: var(--color-primary);
}
.btn-timetable-delete {
	background: #999999;
}
.btn-timetable-add .material-symbols-outlined,
.btn-timetable-delete .material-symbols-outlined {
	font-size: 20px;
	color: #fff;
}
.group-section {
	margin-top: 56px;
	margin-bottom: 70px;
}
.group-head-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}
.btn-random-group {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 42px;
	padding: 0 18px;
	border: 1px solid var(--color-primary);
	border-radius: 6px;
	background: #fff;
	font-size: 16px;
	font-weight: 800;
	color: var(--color-primary);
	white-space: nowrap;
}
.btn-random-group .material-symbols-outlined {
	font-size: 20px;
	color: var(--color-primary);
}
.group-card {
	padding: 20px 20px 28px;
	border-radius: 12px;
	background: #f8f8f8;
}
.group-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.group-row {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	min-height: 76px;
	overflow: hidden;
	border-radius: 10px;
	background: #fff;
}
.group-row h4 {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffdfd0;
	font-size: 20px;
	font-weight: 800;
	color: var(--txt-dark);
}
.group-members {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	align-items: center;
	gap: 14px;
	padding: 15px;
}
.group-members input {
	width: 100%;
	height: 46px;
	border: 0;
	border-radius: 6px;
	background: #f3f3f3;
	text-align: center;
	font-size: 16px;
	font-weight: 800;
	color: var(--txt-dark);
	outline: 0;
}
.group-members input::placeholder {
	color: #999999;
}
.support-event-page {
	padding: 52px 0 90px;
}
.event-list-section {
	margin-top: 48px;
}
.event-card-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 26px 20px;
}
.event-card {
	display: block;
	overflow: hidden;
	border: 1px solid #dddddd;
	border-radius: 10px;
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.event-card:hover {
	border-color: var(--color-primary);
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}
.event-card:hover .event-body strong {
	color:var(--color-primary);
}
.event-thumb {
	position: relative;
	display: block;
	aspect-ratio: 350 / 220;
	background: #f4f4f4;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	overflow: hidden;
}
.event-card.is-ended .event-thumb::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: rgba(0, 0, 0, 0.7);
}
.event-card.is-ended .event-thumb::after {
	content: "이벤트 종료";
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	white-space: pre;
	text-align: center;
	color: #fff;
	transform: translate(-50%, -50%);
}
.event-body {
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-height: 112px;
	padding: 16px 18px 18px;
	border-top: 1px solid #dddddd;
}
.event-body strong {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	min-height: 48px;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.25;
	color: var(--txt-dark);
}
.event-body em {
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	color: #b8b8b8;
}
.support-news-page {
	padding: 52px 0 90px;
}
.news-list-section {
	margin-top: 48px;
}
.news-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 22px;
}
.news-toolbar p {
	font-size: 16px;
	font-weight: 700;
	color: var(--txt-basic);
}
.news-toolbar p strong {
	font-weight: 800;
}
.news-search {
	position: relative;
	display: block;
	width: 300px;
	flex: 0 0 auto;
}
.news-search input {
	width: 100%;
	height: 46px;
	padding: 0 48px 0 20px;
	border: 1px solid #dddddd;
	border-radius: 12px;
	background: #fff;
	font-size: 16px;
	font-weight: 700;
	color: var(--txt-basic);
	outline: 0;
}
.news-search input::placeholder {
	color: var(--txt-light);
}
.news-search .material-symbols-outlined {
	position: absolute;
	right: 17px;
	top: 50%;
	font-size: 24px;
	color: var(--txt-dark);
	transform: translateY(-50%);
	pointer-events: none;
}
.news-table-wrap {
	border-top: 1px solid var(--txt-dark);
}
.news-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}
.news-table caption {
	overflow: hidden;
	position: absolute;
	width: 1px;
	height: 1px;
	clip: rect(0, 0, 0, 0);
}
.news-table th,
.news-table td {
	height: 62px;
	border-bottom: 1px solid #dddddd;
	vertical-align: middle;
}
.news-table thead th {
	height: 58px;
	background: #f8f8f8;
	font-size: 16px;
	font-weight: 800;
	color: var(--txt-dark);
	text-align: center;
}
.news-table th:first-child,
.news-table td:first-child {
	width: 100px;
	text-align: center;
}
.news-table th:last-child,
.news-table td:last-child {
	width: 150px;
	text-align: center;
}
.news-title-cell {
	vertical-align: middle;
}
.news-num {
	font-size: 16px;
	font-weight: 700;
	color: var(--txt-basic);
}
.news-title {
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 62px;
	min-width: 0;
	padding: 0 18px;
}
.news-title a {
	min-width: 0;
	overflow: hidden;
	font-size: 16px;
	font-weight: 700;
	color: var(--txt-dark);
	white-space: nowrap;
	text-overflow: ellipsis;
}
.news-title a:hover {
	color: var(--color-primary);
}
.news-title .badge-new {
	position: static;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	font-size: 10px;
}
.news-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-width: 58px;
	height: 26px;
	padding: 0 14px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	color: #fff;
}
.news-badge.is-news {
	background: #82d464;
}
.news-badge.is-info {
	background: #777777;
}
.news-badge.is-urgent {
	background: #f15f63;
}
.news-date {
	font-size: 16px;
	font-weight: 500;
	color: var(--txt-basic);
}
.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 46px;
}
.pagination a,
.pagination strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 800;
	color: var(--txt-basic);
}
.pagination strong {
	background: var(--color-primary);
	color: #fff;
}
.pagination a:hover {
	background-color: var(--color-white-primary);
	color:var(--color-primary);
}
.pagination a:hover .material-symbols-outlined {
	color:var(--color-primary);
}
.pagination .material-symbols-outlined {
	font-size: 22px;
	color: var(--txt-basic);
}
.support-view-page {
	padding: 52px 0 90px;
}
.support-view {
	max-width: 1200px;
	margin: 48px auto 0;
}
.support-view-head {
	padding: 20px 20px 22px;
	border-top: 1px solid var(--txt-dark);
	border-bottom: 1px solid #dddddd;
}
.support-view-head h3 {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 14px;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.45;
	color: var(--txt-dark);
}
.support-view-head .badge-new {
	position: static;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	font-size: 10px;
}
.support-view-head time {
	display: block;
	margin-top: 12px;
	font-size: 16px;
	font-weight: 700;
	color: var(--txt-normal);
}
.support-view-body {
	padding: 34px 20px 32px;
	border-bottom: 1px solid #dddddd;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.55;
	color: var(--txt-basic);
}
.support-view-body-inner {
	width: 800px;
	max-width: 100%;
	margin: 0 auto;
}
.support-view-body p + p,
.support-view-body p + h4,
.support-view-body h4 + p {
	margin-top: 18px;
}
.support-view-body h4 {
	font-size: 16px;
	font-weight: 800;
	color: var(--txt-dark);
}
.news-hero {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 680px;
	min-height: 260px;
	margin: 0 auto 26px;
	overflow: hidden;
	border-radius: 10px;
	background: #ff6a23;
	text-align: center;
	color: #111;
}
.news-hero::before,
.news-hero::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 76%;
	height: 120%;
	border-radius: 50%;
	background: #fff;
	transform: translateY(-50%);
}
.news-hero::before {
	left: -47%;
}
.news-hero::after {
	right: -47%;
}
.news-hero > * {
	position: relative;
	z-index: 1;
}
.news-hero-clover {
	position: absolute;
	left: 38px;
	top: 32px;
	font-size: 56px;
	line-height: 1;
	color: #17bf56;
}
.news-hero strong {
	font-size: 34px;
	font-weight: 900;
	line-height: 1.12;
	color: var(--color-primary);
	text-shadow: 2px 3px 0 rgba(0, 0, 0, 0.18);
}
.news-hero p {
	margin-top: 24px;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.35;
	color: #111;
}
.news-hero em {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	height: 44px;
	margin-top: 24px;
	padding: 0 18px;
	border-radius: 24px;
	background: #23b65c;
	font-size: 16px;
	font-weight: 900;
	color: #fff;
}
.news-hero em .material-symbols-outlined {
	font-size: 22px;
	color: #fff;
}
.support-view-foot {
	display: flex;
	justify-content: center;
	padding-top: 40px;
}
.btn-view-list {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 84px;
	height: 42px;
	border: 1px solid #777777;
	border-radius: 10px;
	background: #fff;
	font-size: 16px;
	font-weight: 800;
	color: var(--txt-basic);
}
.support-faq-page {
	padding: 52px 0 90px;
}
.faq-section {
	margin-top: 42px;
}
.faq-section h3 {
	margin-bottom: 38px;
	text-align: center;
	font-size: 24px;
	font-weight: 800;
	color: var(--txt-dark);
}
/* [서비스 수정 2026-08-26] 한 줄(탭|검색 2열 그리드) -> 두 줄 세로 스택. 탭이 늘어나면 1fr 칸 안에서
   버튼이 압축돼 글자가 잘렸다. 시각 순서(검색창 위 / 탭 아래)는 마크업 순서로 맞춘다(faq.html).
   탭 줄바꿈 허용 + 버튼 flex 축소 금지가 글자 잘림의 실제 해소 지점 — 두 줄 배치만으로는
   분류가 아주 많아지면 다시 잘리기 때문이다. */
.faq-filter {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	margin-bottom: 38px;
}
.faq-filter-tabs {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	min-width: 0;
}
.faq-filter-tabs button {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	min-width: 64px;
	height: 46px;
	padding: 0 20px;
	border-radius: 10px;
	background: #f4f4f4;
	font-size: 16px;
	font-weight: 800;
	color: var(--txt-normal);
	white-space: nowrap;
}
.faq-filter-tabs button:hover {
	background-color:var(--color-white-primary);
	color:var(--color-primary);
}
.faq-filter-tabs button.is-active {
	background: var(--color-primary);
	color: #fff;
}
.faq-search {
	position: relative;
	display: block;
	min-width: 0;
	width:700px;
}
.faq-search input {
	width: 100%;
	height: 46px;
	padding: 0 48px 0 20px;
	border: 1px solid #dddddd;
	border-radius: 10px;
	background: #fff;
	font-size: 16px;
	font-weight: 700;
	color: var(--txt-basic);
	outline: 0;
}
.faq-search input::placeholder {
	color: #b8b8b8;
}
.faq-search .material-symbols-outlined {
	position: absolute;
	right: 17px;
	top: 50%;
	font-size: 24px;
	color: var(--txt-dark);
	transform: translateY(-50%);
	pointer-events: none;
}
.faq-list {
	border-top: 1px solid #dddddd;
}
.faq-item {
	border-bottom: 1px solid #dddddd;
}
.faq-question {
	display: grid;
	grid-template-columns: 160px minmax(0, 1fr) 40px;
	align-items: center;
	width: 100%;
	min-height: 62px;
	padding: 0 22px 0 0;
	text-align: left;
	gap:10px;
	transition: all 0.3s ease;
}
.faq-question:hover {
	background-color: #f4f4f4;
}
.faq-category {
	font-size: 16px;
	font-weight: 700;
	color: #aaa;
	text-align: center;
}
.faq-question strong {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	font-size: 16px;
	font-weight: 800;
	color: var(--txt-dark);
}
.faq-question .badge-new {
	position: static;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	font-size: 10px;
}
.faq-arrow {
	justify-self: end;
	font-size: 24px;
	color: var(--txt-dark);
}
.faq-answer {
	overflow: hidden;
	max-height: 0;
	background: #f8f8f8;
	transition: max-height 0.24s ease;
}
.faq-answer p {
	padding: 28px 34px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.65;
	color: var(--txt-basic);

	border-top:1px solid #eee;
}
.faq-empty {
	padding: 48px 0;
	border-bottom: 1px solid #dddddd;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	color: var(--txt-light);
}

.support-form-page {
	padding: 52px 0 90px;
}
.support-form-card {
	margin-top: 42px;
	padding: 46px 50px 44px;
	border-radius: 8px;
	background: #f8f8f8;
}
.support-form-card.is-idea {
	padding-top: 50px;
}
.support-form-card.is-request {
	padding-top: 50px;
}
.support-form-guide {
	margin-bottom: 54px;
	text-align: center;
	font-size: 24px;
	font-weight: 800;
	color: var(--txt-dark);
}
.support-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 36px 40px;
}
.support-form-grid.is-request {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.support-field {
	min-width: 0;
}
.support-field.is-full {
	grid-column: 1 / -1;
}
.support-field label,
.support-label {
	display: block;
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 800;
	color: var(--txt-dark);
}
.required {
	color: var(--color-primary);
}
.support-field input,
.support-field textarea {
	width: 100%;
	border: 1px solid #dddddd;
	border-radius: 6px;
	background: #fff;
	font-size: 16px;
	font-weight: 600;
	color: var(--txt-basic);
	outline: 0;
}
.support-field input {
	height: 48px;
	padding: 0 18px;
}
.support-select {
	position: relative;
}
.support-select-button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	height: 48px;
	padding: 0 46px 0 18px;
	border: 1px solid #dddddd;
	border-radius: 6px;
	background: #fff;
	font-size: 16px;
	font-weight: 600;
	color: #b8b8b8;
	text-align: left;
}
.support-select.is-selected .support-select-button {
	color: var(--txt-basic);
}
.support-select.is-open .support-select-button,
.support-select-button:focus,
.support-field input:focus,
.support-field textarea:focus {
	border-color: var(--color-primary);
}
.support-select-button .material-symbols-outlined {
	position: absolute;
	right: 14px;
	top: 50%;
	font-size: 22px;
	color: var(--txt-dark);
	transform: translateY(-50%);
	transition: transform 0.2s ease;
	pointer-events: none;
}
.support-select.is-open .support-select-button .material-symbols-outlined {
	transform: translateY(-50%) rotate(180deg);
}
.support-select-list {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	z-index: 20;
	padding: 6px 0;
	border: 1px solid #dddddd;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 6px 16px var(--black-10);
}
.support-select.is-open .support-select-list {
	display: block;
}
.support-select-list li {
	padding: 10px 18px;
	font-size: 16px;
	font-weight: 600;
	color: var(--txt-basic);
	cursor: pointer;
}
.support-select-list li:hover {
	background: var(--bg-soft);
}
.support-select-list li.is-selected {
	color: var(--color-primary);
	font-weight: 800;
}
.support-field textarea {
	height: 142px;
	padding: 17px 18px;
	line-height: 1.55;
	resize: none;
}
.support-field input:disabled {
	background: #f4f4f4;
	color: #b8b8b8;
	-webkit-text-fill-color: #b8b8b8;
}
.support-field input::placeholder,
.support-field textarea::placeholder {
	color: #b8b8b8;
}
.file-upload-box {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 12px;
	min-height: 116px;
	border: 1px solid #dddddd;
	border-radius: 6px;
	background: #fff;
}
.btn-file-select {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 48px;
	padding: 0 24px;
	border-radius: 6px;
	background: #f2f2f2;
	font-size: 16px;
	font-weight: 800;
	color: var(--txt-dark);
}
.btn-file-select:hover {
	background-color:#ddd;
}
.btn-file-select .material-symbols-outlined {
	font-size: 24px;
}
.file-upload-box p {
	font-size: 14px;
	font-weight: 700;
	color: #b8b8b8;
}
.support-submit-row {
	display: flex;
	justify-content: center;
	margin-top: 42px;
}
.btn-support-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-width: 150px;
	height: 52px;
	padding: 0 24px;
	border-radius: 10px;
	background: var(--color-primary);
	font-size: 18px;
	font-weight: 800;
	color: #fff;
}
.btn-support-submit:hover {
	background-color: var(--color-dark-primary);
}
.btn-support-submit .material-symbols-outlined {
	font-size: 22px;
}

.support-inquiry-tabs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	width: 640px;
	max-width: 100%;
	height: 70px;
	margin: 54px auto 0;
	padding: 8px;
	border-radius: 35px;
	background: #fff;
	box-shadow: 0 8px 24px var(--black-10);
}
.support-inquiry-tabs[hidden] {
	display: none;
}
.support-inquiry-tabs button {
	border: 0;
	border-radius: 28px;
	background: transparent;
	font-size: 18px;
	font-weight: 800;
	color: var(--txt-light);
	cursor: pointer;
}
.support-inquiry-tabs button.is-active {
	background: #ffe5d8;
	color: var(--color-primary);
}
.inquiry-panel {
	display: none;
}
.inquiry-panel.is-active {
	display: block;
}
.inquiry-type-section {
	margin-top: 46px;
	padding: 46px 50px;
	border-radius: 8px;
	background: #f8f8f8;
}
.inquiry-type-section h3 {
	margin-bottom: 32px;
	font-size: 24px;
	line-height: 32px;
	font-weight: 800;
	color: var(--txt-dark);
}
.inquiry-type-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr)); /* [서비스 수정 2026-08-21] '기타' 제거로 4→3열 */
	gap: 24px;
}
.inquiry-type-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 140px;
	padding: 20px;
	border: 1px solid #dddddd;
	border-radius: 8px;
	background: #fff;
	color: var(--txt-light);
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.inquiry-type-card.is-active {
	border-color: var(--color-primary);
	background: #fffaf7;
	color: var(--txt-dark);
}
.inquiry-type-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #eeeeee;
	font-size: 26px;
	color: #8c8c8c;
}
.inquiry-type-card.is-active .inquiry-type-icon {
	background: var(--color-primary);
	color: #fff;
}
.inquiry-type-card strong {
	font-size: 18px;
	line-height: 24px;
	font-weight: 800;
}
.inquiry-type-card small {
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	color: var(--txt-light);
}
.inquiry-write-card {
	margin-top: 34px;
}
.inquiry-form-title {
	margin-bottom: 34px;
	text-align: center;
	font-size: 24px;
	line-height: 32px;
	font-weight: 800;
	color: var(--txt-dark);
}
.inquiry-form-grid {
	grid-template-columns: 1fr;
	gap: 20px;
}
.inquiry-email-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 28px;
}
.inquiry-email-row > input {
	width: 100%;
	min-width: 0;
}
.inquiry-toggle-cell {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	min-width: 0;
}
.inquiry-toggle-wrap {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-width: 178px;
}
/* [서비스 수정 2026-08-21] label.inquiry-toggle 로 특이도 상향 — .support-field label(display:block·margin-bottom)에 밀려
   토글이 줄내림되고 트랙 <i>가 인라인으로 떨어져 크기·색상이 안 먹던 문제 */
label.inquiry-toggle {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 18px;
	width: max-content;
	margin: 0;
	font-size: 16px;
	font-weight: 800;
	color: var(--txt-dark);
	white-space: nowrap;
	cursor: pointer;
}
.inquiry-toggle input {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	appearance: none;
	cursor: pointer;
	z-index: 1;
}
.inquiry-toggle i {
	position: relative;
	flex: 0 0 auto;
	width: 66px;
	height: 36px;
	border-radius: 999px;
	background: #eaded8;
	transition: background-color 0.2s ease;
}
.inquiry-toggle i::after {
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
	transition: transform 0.2s ease;
}
.inquiry-toggle input:checked + i {
	background: var(--color-primary);
}
.inquiry-toggle input:checked + i::after {
	transform: translateX(30px);
}
.inquiry-upload-box {
	border-style: dashed;
}
.inquiry-file-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 20px;
	margin-top: 22px;
}
.inquiry-file-chips > span {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	height: 42px;
	padding: 0 14px 0 20px;
	border: 1px solid var(--txt-dark);
	border-radius: 8px;
	background: #fff;
	font-size: 16px;
	font-weight: 700;
	color: var(--txt-dark);
	overflow: hidden;
}
.inquiry-file-chips > span:hover {background-color: #f4f4f4;}
.inquiry-file-chips button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border: 0;
	background: transparent;
	color: var(--txt-dark);
	cursor: pointer;
}
.inquiry-file-chips .material-symbols-outlined {
	font-size: 22px;
}
.inquiry-list-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 50px;
	margin-bottom: 24px;
}
.inquiry-list-head p {
	font-size: 18px;
	font-weight: 800;
	color: var(--txt-dark);
}
.inquiry-list-tools {
	display: flex;
	align-items: center;
	gap: 10px;
}
.inquiry-filter-select {
	width: 170px;
}
.inquiry-filter-select .support-select-list {
	z-index: 30;
}
.inquiry-search {
	width: 300px;
}
.inquiry-table-wrap {
	border-top: 1px solid var(--txt-dark);
}
.inquiry-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}
.inquiry-table caption {
	overflow: hidden;
	position: absolute;
	width: 1px;
	height: 1px;
	clip: rect(0, 0, 0, 0);
}
.inquiry-table th,
.inquiry-table td {
	height: 62px;
	border-bottom: 1px solid #dddddd;
	font-size: 16px;
	vertical-align: middle;
}
.inquiry-table thead th {
	height: 58px;
	background: #f8f8f8;
	font-weight: 800;
	color: var(--txt-dark);
}
.inquiry-table th:first-child,
.inquiry-table td:first-child {
	width: 130px;
	text-align: center;
}
.inquiry-table th:nth-child(3),
.inquiry-table td:nth-child(3) {
	width: 130px;
	text-align: center;
}
.inquiry-table th:last-child,
.inquiry-table td:last-child {
	width: 150px;
	text-align: center;
}
.inquiry-table tbody tr {
	cursor: pointer;
}
.inquiry-table tbody tr:hover .inquiry-title-link {
	color: var(--color-primary);
}
.inquiry-category {
	font-weight: 700;
	color: var(--txt-light);
}
.inquiry-title-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	max-width: 100%;
	padding: 0 18px;
	border: 0;
	background: transparent;
	font-size: 16px;
	font-weight: 800;
	color: var(--txt-dark);
	text-align: left;
	cursor: pointer;
}
.inquiry-title-link > span:first-child {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.inquiry-file-mark {
	flex-shrink: 0;
	font-size: 20px;
	color: var(--txt-light);
}
.inquiry-status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 26px;
	padding: 0 12px;
	border-radius: 13px;
	background: #eeeeee;
	font-size: 13px;
	font-weight: 800;
	color: var(--txt-normal);
}
.inquiry-status.is-done {
	border: 1px solid var(--color-primary);
	background: #fff;
	color: var(--color-primary);
}
.inquiry-empty {
	height: 180px !important;
	text-align: center;
	color: var(--txt-light);
}
.inquiry-detail {
	margin-top: 38px;
	border-top: 1px solid var(--txt-dark);
	border-bottom:1px solid #ddd;
}
.inquiry-detail-head {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 24px 30px;
	border-bottom: 1px solid #dddddd;
}
.inquiry-detail-type {
	font-size: 16px;
	font-weight: 700;
	color: var(--txt-light);
}
.inquiry-detail-head h3 {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	font-size: 20px;
	line-height: 28px;
	font-weight: 800;
	color: var(--txt-dark);
}
.badge-new {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--color-primary);
	font-size: 12px;
	line-height: 1;
	font-weight: 900;
	color: #fff;
}
.inquiry-detail-head time,
.inquiry-table time {
	font-size: 16px;
	font-weight: 500;
	color: var(--txt-basic);
}
.inquiry-detail-body {
	padding: 34px 30px 28px;
	font-size: 16px;
	line-height: 1.6;
	font-weight: 500;
	color: var(--txt-basic);
}
.inquiry-attach {
	position: relative;
	width: 200px;
	margin: 0 0 34px 30px;
}
.inquiry-attach-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	height: 44px;
	border: 1px solid var(--color-primary);
	border-radius: 6px;
	background: #fff;
	font-size: 16px;
	font-weight: 800;
	color: var(--txt-dark);
	cursor: pointer;
	padding:0 15px;
}
.inquiry-attach-button strong {
	color: var(--color-primary);
}
.inquiry-attach-button .material-symbols-outlined {
	font-size: 20px;
}
.inquiry-attach-button .material-symbols-outlined:last-child {
	margin-left: auto;
	transition: transform 0.2s ease;
}
.inquiry-attach.is-open .inquiry-attach-button .material-symbols-outlined:last-child {
	transform: rotate(180deg);
}
.inquiry-attach-menu {
	display: none;
	position: absolute;
	left: 0;
	top: calc(100% + 8px);
	z-index: 20;
	width: 380px;
	padding: 12px;
	border: 1px solid var(--color-primary);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 8px 24px var(--black-10);
}
.inquiry-attach.is-open .inquiry-attach-menu {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.inquiry-attach-menu a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	height: 44px;
	padding: 0 14px 0 20px;
	border: 1px solid #dddddd;
	border-radius: 6px;
	background: #fff;
	font-size: 15px;
	font-weight: 500;
	color: var(--txt-dark);
}
.inquiry-attach-menu a:hover { background-color: #f4f4f4; }
.inquiry-attach-menu a span:first-child {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.inquiry-answer {
	border-top: 1px solid var(--txt-dark);
	border-bottom: 1px solid #dddddd;
	background: #f8f8f8;
}
.inquiry-answer-head {
	display: flex;
	align-items: center;
	gap: 14px;
	height: 76px;
	padding: 0 30px;
	border-bottom: 1px solid #dddddd;
}
.inquiry-answer-head .material-symbols-outlined {
	font-size: 26px;
	color: var(--txt-dark);
}
.inquiry-answer-head strong {
	display: inline-flex;
	align-items: center;
	height: 34px;
	padding: 0 14px;
	border: 1px solid var(--color-primary);
	border-radius: 6px;
	background: #fff;
	font-size: 16px;
	font-weight: 800;
	color: var(--color-primary);
}
.inquiry-answer-head time {
	font-size: 16px;
	font-weight: 500;
	color: var(--txt-basic);
}
.inquiry-answer-body {
	padding: 34px 30px;
	font-size: 16px;
	line-height: 1.6;
	font-weight: 500;
	color: var(--txt-basic);
}
.inquiry-answer.is-waiting .inquiry-answer-head strong {
	border-color: #999;
	color: #777;
}
.inquiry-detail-actions {
	gap: 18px;
	margin-top: 42px;
}
.inquiry-detail-actions .btn {
	gap: 6px;
	min-width: 96px;
}
.simple-modal[hidden] {
	display: none;
}
.simple-modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
}
.simple-modal-dim {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
}
.simple-modal-box {
	position: relative;
	z-index: 1;
	width: 440px;
	max-width: calc(100vw - 40px);
	padding: 46px 36px 36px;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
	text-align: center;
}
.simple-modal-box strong {
	display: block;
	font-size: 20px;
	line-height: 28px;
	font-weight: 800;
	color: var(--txt-dark);
}
.simple-modal-box p {
	margin-top: 12px;
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	color: var(--txt-light);
}
.simple-modal-actions {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 30px;
}
.simple-modal-actions .btn {
	min-width: 100px;
}

/* =========================================================
   6-1-4. 세부 상세
   ========================================================= */
.class-detail-page {
	padding: 52px 0 90px;
}
.detail-view {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 20px;
	margin-top: 40px;
}
.detail-side {
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-width: 0;
}
.detail-author {
	display: flex;
	align-items: center;
	gap: 10px;
	height: 52px;
	padding: 0 22px;
	border: 1px solid var(--line-light);
	border-radius: 12px;
	background: #fff;
	font-size: 16px;
	font-weight: 800;
	color: var(--txt-basic);
}
.detail-author .avatar {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: url("../images/avatar_01.png") no-repeat center / cover;
	border:1px solid #ddd;
}
.text-edit-panel {
	border: 1px solid var(--line-light);
	border-radius: 12px;
	background: #fff;
	overflow: hidden;
}
.text-edit-panel h3 {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	border-bottom: 1px solid #eeeeee;
	font-size: 16px;
	font-weight: 800;
	color: var(--txt-basic);
	background-color:#fafafa;
}
.text-edit-list {
	max-height: 280px;
	padding: 20px;
	overflow-y: auto;
	scrollbar-gutter: stable;
}
.text-edit-list::-webkit-scrollbar {
	width: 10px;
}
.text-edit-list::-webkit-scrollbar-track,
.text-edit-list::-webkit-scrollbar-thumb {
	border: 2px solid transparent;
	background-clip: content-box;
}
.text-edit-list::-webkit-scrollbar-thumb {
	border-radius: 6px;
	background-color: #c2c2c2;
}
.text-edit-list label {
	display: block;
}
.text-edit-list label + label {
	margin-top: 12px;
}
.text-edit-list input {
	width: 100%;
	height: 38px;
	padding: 0 14px;
	border: 1px solid #dddddd;
	border-radius: 6px;
	background: #fff;
	font-size: 14px;
	font-weight: 600;
	color: var(--txt-normal);
}
.text-edit-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	padding: 10px 20px 20px;
}
/* [서비스 수정 2026-08-12] 뷰어 버전별 버튼 수 차이 흡수 — 1.0(detailPdf)은 '내용 지우기+적용' 2개,
   2.0(detail)은 '초기화' 1개뿐이라 2열 그리드에서 반쪽만 차지했다. 단독일 때만 두 열을 걸쳐 꽉 채운다.
   (grid-template-columns 를 지우면 2버튼 배치가 같이 깨지므로 단독 케이스만 예외 처리) */
.text-edit-actions > button:only-child {
	grid-column: 1 / -1;
}
.text-edit-actions button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 40px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 800;
	color: #fff;
}
.text-edit-actions .material-symbols-outlined {
	font-size: 18px;
	color: #fff;
}
.btn-apply {
	background: var(--color-primary);
}
.btn-reset {
	background: #666666;
}
.detail-tip-card {
	padding: 18px;
	border: 1px solid #ffd8c8;
	border-radius: 12px;
	background: #fff7f2;
}
.tip-copy {
	display: flex;
	gap: 10px;
	padding-bottom: 18px;
	border-bottom: 1px solid #f2d8cd;
}
.tip-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}
.tip-avatar img {
	width: 62px;
	height: 62px;
}
.tip-copy strong {
	display: block;
	font-size: 16px;
	font-weight: 800;
	color: var(--txt-basic);
}
.tip-copy strong::after {
	content: " 좋아요!";
	color: var(--color-primary);
}
.tip-copy p {
	margin-top: 5px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.45;
	color: var(--txt-basic);
	border-top:1px dotted #ddd;
	padding-top:5px;
}
.tip-links {
	padding-top: 16px;
}
.tip-links h3 {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 14px;
	font-size: 16px;
	font-weight: 800;
	color: var(--txt-basic);
}
.tip-links h3:first-child {
	margin-top: 0;
}
.tip-links h3 .material-symbols-outlined {
	font-size: 18px;
	color: var(--color-primary);
}
.tip-links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	height: 34px;
	margin-top: 8px;
	padding: 0 12px;
	border: 1px solid #ffcdb5;
	border-radius: 6px;
	background: #fff;
	font-size: 14px;
	font-weight: 500;
	color: var(--txt-dark);
}
.tip-links a:hover {
	border: 1px solid #ffb28e;
	background: #ffede4;
	color: var(--color-primary);
}
.tip-links a .material-symbols-outlined {
	font-size: 17px;
	color: var(--color-primary);
}
.detail-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: center;
}
.detail-icon-btn,
.detail-save-btn,
.detail-like-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 34px;
	border: 1px solid #dddddd;
	border-radius: 20px;
	background: #fff;
	font-size: 14px;
	font-weight: 800;
	color: var(--txt-basic);
}
.detail-icon-btn:hover,
.detail-save-btn:hover {
	background-color:#f4f4f4;
}
.detail-icon-btn {
	width: 34px;
}
.detail-save-btn {
	gap: 4px;
	padding: 0 12px;
}
.detail-like-btn {
	gap: 4px;
	padding: 0 14px;
	color: #999999;
	transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}
.detail-like-btn.is-liked {
	border-color: transparent;
	background: var(--color-coral);
	color: #fff;
}
.detail-actions .material-symbols-outlined {
	font-size: 18px;
}
.detail-like-btn .material-symbols-outlined {
	color: currentColor;
	font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 20;
}
.detail-like-btn.is-liked .material-symbols-outlined {
	font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 20;
}
.font-info {
	border-top: 1px solid var(--line-light);
}
.font-info-head {
	display: flex;
	align-items: center;
	width: 100%;
	height: 42px;
	gap: 8px;
	font-size: 14px;
	font-weight: 800;
	color: var(--txt-basic);
}
.font-info-head .material-symbols-outlined {
	margin-left: auto;
	font-size: 18px;
	color: var(--txt-basic);
	transition: transform 0.2s ease;
}
.font-info.is-collapsed .font-info-head .material-symbols-outlined {
	transform: rotate(180deg);
}
.font-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 18px;
	border-radius: 5px;
	background: #eeeeee;
	font-size: 12px;
	font-weight: 800;
	color: var(--txt-normal);
}
.font-chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	overflow: hidden;
	transition: max-height 0.24s ease, opacity 0.18s ease;
}
.font-info.is-collapsed .font-chip-list {
	max-height: 0 !important;
	opacity: 0;
}
.font-chip-list span {
	display: inline-flex;
	align-items: center;
	height: 26px;
	padding: 0 12px;
	border-radius: 18px;
	background: #eeeeee;
	font-size: 12px;
	font-weight: 700;
	color: var(--txt-normal);
}
.detail-preview {
	min-height: 1018px;
	border-radius: 10px;
	background: #dddddd;
}

/* =========================================================
   6-2. 학급운영 자료 메인
   ========================================================= */
.class-main-page {
	padding-bottom: 80px;
}
.class-layout {
	position: relative;
	display: block;
	width: 1200px;
	max-width: calc(100vw - 40px);
}
.class-lnb {
	position: fixed;
	left: calc((100% - 1200px) / 2 - 250px);
	top: 135px;
	z-index: 20;
	width: 210px;
	padding: 20px 15px 20px;
	border: 1px solid #eeeeee;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	transition: top 0.25s ease;
}
.class-lnb h2 {
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: 800;
	color: var(--txt-dark);
	border-bottom: 1px solid var(--line-light);
	padding-bottom: 10px;
	text-align: center;
}
/* [서비스 수정 2026-08-12] 대제목 링크형(common.js lnbSections 에 href 가 있는 섹션).
   카드 안쪽 여백(20/15px)을 음수 마진으로 되따내 활성 배경이 카드 상단 라운드까지 꽉 차게 한다. */
.class-lnb h2.has-link {
	margin: -20px -15px 10px;
	padding: 0;
	border-bottom: 0;
	text-align: left;
}
.class-lnb h2.has-link > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	min-height: 0;
	padding: 18px 15px 14px;
	border-radius: 15px 15px 0 0;
	border-bottom: 1px solid #f3f3f3;
	font-size: 18px;
	font-weight: 800;
	color: var(--txt-dark);
	background: transparent;
}
.class-lnb h2.has-link > a .lnb-title-arrow {
	padding: 0;
	background: transparent;
	border-radius: 0;
	font-size: 22px;
	color: inherit;
}
.class-lnb h2.has-link > a:hover,
.class-lnb h2.has-link > a.is-active {
	color: var(--color-primary);
	background: #f8eee8;
	border-bottom-color: transparent;
}
.class-lnb h2.has-link > a:hover .lnb-title-arrow,
.class-lnb h2.has-link > a.is-active .lnb-title-arrow {
	color: var(--color-primary);
	background: transparent;
}
.class-lnb nav {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
/* [서비스 수정 2026-08-13] LNB 2뎁스(.lnb-group/.lnb-child/.lnb-arrow) 규칙 제거 —
   미디어 하위분류가 목록 상단 탭으로 이동해 아코디언 렌더러와 함께 소거(common.js 동일 날짜 주석) */
.class-lnb a {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 40px;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	color: var(--txt-normal);
	padding: 0 8px;
}
.class-lnb .lnb-label {
	min-width: 0;
}
.class-lnb a:hover,
.class-lnb a.is-active {
	transition: all 0.2s ease;
	color: var(--color-primary);
	background-color: #fff1ea;
}
.class-lnb nav > a.is-active {
	padding: 0 8px;
	background: #fff1ea;
}
.class-lnb .material-symbols-outlined {
	flex-shrink: 0;
	font-size: 16px;
	color: #999;
	padding: 4px;
	background-color: #eee;
	border-radius: 6px;
}
.class-lnb a:hover .material-symbols-outlined,
.class-lnb a.is-active .material-symbols-outlined {
	color: var(--color-primary);
	background-color: var(--txt-white);
}
.lnb-new {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--color-primary);
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
	color: #fff;
}
.class-content {
	min-width: 0;
}
.class-sub-banner {
	position: relative;
	display: flex;
	align-items: center;
	width: 1200px;
	max-width: 100%;
	height: 304px;
	padding: 0;
	border-radius: 0 0 48px 48px;
	background-color: #9ed8c2;
	background-image: url("../images/class_banner.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	overflow: hidden;
}
.class-sub-banner::before {
	display: none;
}
.sub-banner-copy {
	display: none;
}
.sub-banner-copy p {
	font-size: 24px;
	font-weight: 500;
}
.sub-banner-copy strong {
	display: block;
	margin-top: 4px;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.25;
}
.sub-banner-nav {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.22);
	transform: translateY(-50%);
}
.sub-banner-nav.prev {
	left: 32px;
}
.sub-banner-nav.next {
	right: 32px;
}
.sub-banner-nav .material-symbols-outlined {
	font-size: 20px;
	color: #fff;
}
.class-section {
	margin-top: 80px;
}
.class-section-lined {
	margin-top: 50px;
	padding-top: 50px;
	border-top: 1px solid #eeeeee;
}
.class-card-grid {
	display: grid;
	margin-top: 24px;
	gap: 38px 20px;
}
.class-card-grid.grid-6 {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}
.class-card-grid.grid-4 {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 44px 28px;
}
.class-card-grid .thumb-card {
	gap: 10px;
}
.class-card-grid .thumb-img {
	border-radius: 8px;
}
.class-card-grid .thumb-img::after {
	border-radius: 8px;
}
.class-card-grid .thumb-title {
	height: 42px;
	font-size: 14px;
	line-height: 1.45;
}
.class-card-grid.grid-4 .thumb-title {
	height: 44px;
	font-size: 16px;
}
.keyword-section {
	margin-top: 76px;
	text-align: center;
}
.keyword-section h2 {
	font-size: 24px;
	font-weight: 800;
	color: var(--txt-dark);
}
.keyword-section p {
	margin-top: 4px;
	font-size: 16px;
	font-weight: 500;
	color: var(--txt-normal);
}
.keyword-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 10px;
	margin: 20px auto 0;
	max-width: 820px;
}
.keyword-section.is-open .keyword-list {
	max-width: 1260px;
}
.keyword-list a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 58px;
	height: 30px;
	padding: 0 16px;
	border: 1px solid var(--line-light);
	border-radius: 30px;
	background: #fff;
	font-size: 14px;
	font-weight: 600;
	color: var(--txt-normal);
}
.keyword-list a:hover,
.keyword-list a.is-active {
	border-color: var(--color-primary);
	color: var(--color-primary);
}
.keyword-list a.is-active {
	box-shadow: 0 10px 20px rgba(255, 85, 0, 0.16);
}
.keyword-item-extra {
	display: none !important;
}
.keyword-section.is-open .keyword-item-extra {
	display: inline-flex !important;
}
.keyword-more {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	margin-top: 14px;
	font-size: 14px;
	font-weight: 600;
	color: var(--txt-light);
}
.keyword-more .material-symbols-outlined {
	font-size: 16px;
	transition: transform 0.2s ease;
}
.keyword-section.is-open .keyword-more .material-symbols-outlined {
	transform: rotate(180deg);
}
.media-main-page .media-keyword-section {
	margin-top: 88px;
}
.media-main-page .media-result-start {
	margin-top: 50px;
	padding-top: 50px;
	border-top: 1px solid #ddd;
}
.class-support.quicklinks {
	grid-template-columns: repeat(4, 1fr);
	margin-top: 72px;
	border-radius: 8px;
}
.class-support.quicklinks a {
	height: 72px;
	padding: 0 22px;
	border-bottom: 0;
	border-right: 1px solid var(--line-light);
}
.class-support.quicklinks a:last-child {
	border-right: 0;
}
.class-support.quicklinks .ql-ico {
	width: 36px;
	height: 36px;
	background: transparent;
}
.class-support.quicklinks .ql-txt {
	font-size: 16px;
}
/* =========================================================
   7. 이번달 활용 사례 (photobox)
   ========================================================= */
.sec-usecase {
	margin-top: 80px;
}
/* 2열 그리드 : 카드 너비는 브라우저가 나눠 계산 (고정 580px 제거) */
.usecase-list {
	margin-top: 24px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}
.photobox {
	display: flex;
	gap: 20px;
	min-width: 0;
	height: 200px;
	border: 1px solid #ddd;
	border-radius: 16px;
	align-items: center;
	overflow: hidden;
}
.photobox:hover {
	border-color: var(--color-primary);
}
.photobox:hover .pb-title {
	color: var(--color-primary);
}
.photobox:hover .pb-desc {
	text-decoration: underline;
}
.photobox .pb-img {
	flex: 0 0 200px;
	aspect-ratio: 1 / 1;
	border-radius: 15px 0 0 15px;
	background: #eee no-repeat center / cover;
}
.photobox .pb-body {
	display: flex;
	flex-direction: column;
	padding:20px 20px;
	padding-left:0;
}
.photobox .pb-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--txt-dark);
}
.photobox .pb-title a:hover {
	color: var(--color-primary);
}
.photobox .pb-img {
	display: block;
}
.photobox .pb-author {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 14px;
	font-size: 14px;
	color: var(--txt-normal);
}
.photobox .pb-author .avatar {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #e2e2e2 no-repeat center / cover;
	flex-shrink: 0;
}
.photobox .pb-desc {
	margin-top: 16px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--txt-normal);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.photobox .pb-more {
	margin-top: auto;
	font-size: 14px;
	color: var(--txt-light);
}

/* =========================================================
   8. 새소식 & 고객지원
   ========================================================= */
.sec-board {
	margin-top: 80px;
	padding-bottom: 100px;
}
.board-wrap {
	display: flex;
	gap: 40px;
}
.board-col {
	width: 50%;
	min-width:400px;
}
.board-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 38px;
}
.board-head .board-tit {
	font-size: 24px;
	font-weight: 700;
	color: var(--txt-dark);
}

/* 새소식 테이블 */
.news-feed {
	margin-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.tr:hover .subject {
	text-decoration: underline;
}
.news-feed .tr {
	display: flex;
	align-items: center;
	gap: 10px;
}
.news-feed .chip {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 60px;
	height: 26px;
	padding: 0 10px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
}
.chip.news {
	background: #eef4ff;
	color: #3b6ef2;
}
.chip.info {
	background: #fff1ea;
	color: var(--color-primary);
}
.chip.end {
	background: #f2f2f2;
	color: var(--txt-light);
}
/* [서비스 수정 2026-08-24] 새소식 피드에 진행 중 이벤트 행 추가(공지+이벤트 통합) — 목업 칩 3종엔 없던 event 변형 신설 */
.chip.event {
	background: #e9f8ef;
	color: #1a9e55;
}
.news-feed .tr .subject {
	flex: 1;
	font-size: 16px;
	color: var(--txt-basic);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.news-feed .tr .date {
	flex-shrink: 0;
	font-size: 14px;
	color: var(--txt-light);
}

/* 고객지원 퀵링크 */
.quicklinks {
	margin-top: 24px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	border: 1px solid var(--line-light);
	border-radius: 16px;
	overflow: hidden;
}
.quicklinks a {
	display: flex;
	align-items: center;
	gap: 12px;
	height: 94px;
	padding: 0 28px;
	border-bottom: 1px solid var(--line-light);
}
.quicklinks a:nth-child(odd) {
	border-right: 1px solid var(--line-light);
}
.quicklinks a:nth-child(3),
.quicklinks a:nth-child(4) {
	border-bottom: 0;
}
.quicklinks .ql-ico {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff1ea;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.quicklinks .ql-ico .material-symbols-outlined {
	font-size: 24px;
	color: var(--color-primary);
}
.quicklinks .ql-txt {
	flex: 1;
	font-size: 18px;
	font-weight: 600;
	color: var(--txt-dark);
}
.quicklinks a:hover .ql-txt {
	color: var(--color-primary);
}
.quicklinks a:hover .ql-arrow {
	background-color: #f8eae3;
}
.quicklinks a:hover .ql-arrow .material-symbols-outlined {
	color: var(--color-primary);
}
.quicklinks .ql-arrow {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
}
.quicklinks .ql-arrow .material-symbols-outlined {
	font-size: 18px;
	color: var(--txt-light);
}

/* =========================================================
   9. 푸터 (ui / footer)
   ========================================================= */
.footer {
	background: #f9f9f9;
	color: #888;
	padding: 20px 0 30px;
}
.footer .foot-top {
	display: flex;
	gap: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}
.footer .foot-top a {
	font-size: 14px;
	color: #555;
}
.footer .foot-top a.strong {
	color: #333;
	font-weight: 600;
}
.footer .foot-top a.foot-download {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.footer .foot-top a.foot-download img {
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
}
.footer .foot-top a:hover {
	color: var(--color-primary);
}
.footer .foot-body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-top: 24px;
}
.footer .foot-logo {
	width: 150px;
	height: auto;
	flex-shrink: 0;
}
.footer address {
	font-size: 14px;
	line-height: 1.8;
	color: #888;
	text-align: left;
}
.footer .foot-info {
	display: flex;
	flex-wrap: wrap;
	gap: 0 32px;
	width: 100%;
	margin-top: 18px;
}
.footer .foot-info span {
	white-space: nowrap;
}
.footer .foot-info strong {
	font-weight: 700;
	color: #666;
}
.footer .foot-info a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.footer address .copy {
	flex-basis: 100%;
	margin-top: 20px;
	display: block;
	color: #aaa;
	font-weight: 700;
}

/* =========================================================
   10. 퀵메뉴 (ui / quickmenu, 우측 플로팅)
   ========================================================= */
.quickmenu {
	position: absolute;
	right: calc((100% - var(--quickmenu-base, 1200px)) / 2 - 120px);
	top: 200px;
	z-index: 50;
	width: 80px;
	/* padding: 20px 0; */
	background: #fff;
	border-radius: 16px 0 16px 0;
	box-shadow: 0 8px 12px rgba(0, 0, 0, 0.12);
	border: 1px solid #f4f4f4;
	transition: top 0.3s ease;
	will-change: top;
}
body[data-page-layout="main"] {
	--quickmenu-base: 1340px;
}
body[data-page-layout="sub"] {
	--quickmenu-base: 1200px;
}
.quickmenu .qm-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	padding: 15px 0;
}
.quickmenu .qm-item:hover {
	background-color: #f4f4f4;
}
.quickmenu .qm-item + .qm-item {
	border-top: 1px solid #f0f0f0;
}
.quickmenu .qm-ico {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: #fff1ea;
	display: flex;
	align-items: center;
	justify-content: center;
}
.quickmenu .qm-ico .material-symbols-outlined {
	font-size: 28px;
	color: var(--color-primary);
}
.quickmenu .qm-txt {
	font-size: 12px;
	color: var(--txt-normal);
}
.quickmenu .qm-count {
	font-size: 10px;
	font-weight: 800;
	background-color: var(--color-primary);
	color: var(--txt-white);
	padding: 1px 10px;
	border-radius: 12px;
}
.quickmenu .qm-top {
	display: flex;
	justify-content: center;
	padding: 10px;
	border-top: 1px solid #f0f0f0;
}
.quickmenu .qm-top button {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.quickmenu .qm-top button .material-symbols-outlined {
	font-size: 20px;
	color: var(--txt-normal);
}

/* 메인 공지 레이어 */
.home-notice-modal {
	position: fixed;
	inset: 0;
	z-index: 2100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}
.home-notice-modal[hidden] {
	display: none;
}
.home-notice-dim {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.58);
}
.home-notice-dialog {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-rows: 60px minmax(0, 1fr) 60px;
	width: 700px;
	height: 700px;
	max-width: calc(100vw - 48px);
	max-height: calc(100vh - 80px);
	border-radius: 12px;
	background: #fff;
	overflow: hidden;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}
.home-notice-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 0 20px;
	border-bottom: 1px solid var(--line-light);
}
.home-notice-header h2 {
	font-size: 21px;
	line-height: 1.35;
	font-weight: 800;
	color: var(--txt-dark);
}
.home-notice-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: var(--txt-dark);
}
.home-notice-close .material-symbols-outlined {
	font-size: 31px;
	font-weight: 400;
}
.home-notice-content {
	min-height: 0;
	padding: 40px 40px 28px;
	overflow-y: auto;
	scrollbar-color: #c7c7c7 transparent;
	scrollbar-width: thin;
}
.home-notice-content::-webkit-scrollbar {
	width: 10px;
}
.home-notice-content::-webkit-scrollbar-thumb {
	border: 3px solid #fff;
	border-radius: 999px;
	background: #c7c7c7;
}
.home-notice-card {
	display: flex;
	justify-content: center;
	padding: 32px 26px;
	background: #ffa15f;
}
.home-notice-paper {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	width: 100%;
	padding: 22px 32px 18px;
	background: #fff;
	text-align: center;
	box-shadow: 10px 10px 0 rgba(255, 220, 55, 0.85);
	word-break: keep-all;
}
.home-notice-paper::before {
	content: "";
	position: absolute;
	left: 50%;
	top: -12px;
	width: 210px;
	height: 25px;
	transform: translateX(-50%);
	background: #ff8b45;
}
.home-notice-paper::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 72px;
	height: 72px;
	background: linear-gradient(135deg, transparent 0 50%, #fff17a 51% 100%);
}
.home-notice-paper strong {
	position: relative;
	z-index: 1;
	font-size: 32px;
	line-height: 1.25;
	font-weight: 900;
	color: var(--color-primary);
}
.home-notice-date {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 21px;
	line-height: 1.25;
	font-weight: 800;
	color: #b84d2d;
}
.home-notice-date .material-symbols-outlined {
	font-size: 27px;
}
.home-notice-paper p {
	position: relative;
	z-index: 1;
	font-size: 18px;
	line-height: 1.55;
	font-weight: 700;
	color: #777;
}
.home-notice-more {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	height: 30px;
	padding: 0 28px;
	border-radius: 999px;
	background: #ff8b45;
	font-size: 17px;
	line-height: 1;
	font-weight: 900;
	color: #fff;
}
.home-notice-more .material-symbols-outlined {
	font-size: 20px;
}
.home-notice-text {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 20px;
	font-size: 18px;
	line-height: 1.45;
	font-weight: 500;
	color: #222;
}
.home-notice-text strong {
	font-weight: 800;
}
.home-notice-text hr {
	width: 100%;
	border: 0;
	border-top: 1px dashed #222;
}
.home-notice-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid var(--line-light);
}
.home-notice-actions button {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	line-height: 1;
	font-weight: 800;
	color: var(--txt-dark);
	background: #fff;
}
.home-notice-actions button + button {
	border-left: 1px solid var(--line-light);
}
body.is-home-notice-open {
	overflow: hidden;
}

/* =========================================================
   11. Assets
   ========================================================= */
/* 배너 */
.banner-nav,
.banner-ctrl {
	z-index: 5;
}

/* 큐레이션 썸네일 (thumb_01~05 순환) */
.thumb-row:nth-child(1) .thumb-card:nth-child(1) .thumb-img { background-image: url("../images/thumb_01.png"); }
.thumb-row:nth-child(1) .thumb-card:nth-child(2) .thumb-img { background-image: url("../images/thumb_02.png"); }
.thumb-row:nth-child(1) .thumb-card:nth-child(3) .thumb-img { background-image: url("../images/thumb_03.png"); }
.thumb-row:nth-child(1) .thumb-card:nth-child(4) .thumb-img { background-image: url("../images/thumb_04.png"); }
.thumb-row:nth-child(1) .thumb-card:nth-child(5) .thumb-img { background-image: url("../images/thumb_05.png"); }
.thumb-row:nth-child(1) .thumb-card:nth-child(6) .thumb-img { background-image: url("../images/thumb_01.png"); }
.thumb-row:nth-child(2) .thumb-card:nth-child(1) .thumb-img { background-image: url("../images/thumb_02.png"); }
.thumb-row:nth-child(2) .thumb-card:nth-child(2) .thumb-img { background-image: url("../images/thumb_03.png"); }
.thumb-row:nth-child(2) .thumb-card:nth-child(3) .thumb-img { background-image: url("../images/thumb_04.png"); }
.thumb-row:nth-child(2) .thumb-card:nth-child(4) .thumb-img { background-image: url("../images/thumb_05.png"); }
.thumb-row:nth-child(2) .thumb-card:nth-child(5) .thumb-img { background-image: url("../images/thumb_01.png"); }
.thumb-row:nth-child(2) .thumb-card:nth-child(6) .thumb-img { background-image: url("../images/thumb_02.png"); }

/* [서비스 수정 2026-08-18] 작성자 아바타 — 목업의 avatar_01~03 위치 순환을 avatar_01 단일 기본값으로 통일.
   미디어 저작권자 아이콘 데이터가 실재하지 않아(tz_copyright에 아이콘 없음 — admin 확인) 순환 표시는
   실데이터 화면에서 서로 다른 저작자처럼 오독됨. 실 로고 있는 카드(학급 copyrightLogoUrl)는 인라인 스타일이 우선 */
.thumb-card .thumb-author .avatar { background-image: url("../images/avatar_01.png"); }

/* 미디어 그리드 (media_01~04) */
.media-grid .media-cell:nth-child(2) { background-image: url("../images/media_01.png"); }
.media-grid .media-cell:nth-child(3) { background-image: url("../images/media_02.png"); }
.media-grid .media-cell:nth-child(4) { background-image: url("../images/media_03.png"); }
.media-grid .media-cell:nth-child(5) { background-image: url("../images/media_02.png"); } /* 임시 : 전용 이미지 없어 재사용 */
.media-grid .media-cell:nth-child(6) { background-image: url("../images/media_04.png"); }
.media-grid .media-more-cell { background-image: none; }

/* 활용사례 - 사진 배경 + SNS 우측상단 */
.photobox .pb-img {
	position: relative;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}
.photobox .pb-sns {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 32px;
	height: 32px;
	z-index: 2;
}
.photobox:nth-child(1) .pb-author .avatar { background-image: url("../images/avatar_01.png"); }
.photobox:nth-child(2) .pb-author .avatar { background-image: url("../images/avatar_02.png"); }

/* 고객지원 아이콘 (support_01~04.svg) */
.quicklinks .ql-ico img {
	width: 24px;
	height: 24px;
}

/* 퀵메뉴 이미지 (quickmenu_01~04.png) - 이미지 자체가 아이콘 타일 */
.quickmenu .qm-ico {
	background: transparent;
}
.quickmenu .qm-ico img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* =========================================================
   Error pages
   ========================================================= */
body[data-page-layout="error"] {
	min-height: 100vh;
	background: #ffffff;
}
.error-page {
	min-height: calc(100vh - 210px);
	padding: 150px 20px 120px;
}
.error-page-standalone {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 120px 20px;
}
.error-content {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 38px;
	text-align: center;
}
.error-logo {
	width: 220px;
}
.error-logo img {
	display: block;
	width: 100%;
	height: auto;
}
.error-visual {
	display: block;
	width: 390px;
	max-width: 100%;
}
.error-message {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 22px;
}
.error-message h2 {
	font-size: 28px;
	font-weight: 800;
	color: var(--txt-dark);
	line-height: 1.35;
}
.error-message p {
	font-size: 18px;
	font-weight: 500;
	color: #999999;
	line-height: 1.55;
}
.error-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.error-actions .btn {
	min-width: 140px;
}

/* =========================================================
   12. Responsive
   - PC: 1200px 이상 (기본 스타일)
   - Tablet: 768px ~ 1199px
   - Mobile: 767px 이하
   ========================================================= */

/* Wide desktop floating elements */
@media (min-width: 1200px) {
	body.is-class-lnb-scrolled .class-lnb {
		top: 100px;
	}
}

@media (max-width: 1560px) {
	.quickmenu {
		right: -1px;
		width:64px;
	}
	.quickmenu .qm-item {
		padding:10px 0;
	}
	.quickmenu .qm-ico {
		width:34px; height: 34px;
	}
	.class-lnb {
		display: none;
	}
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1199px) {
	:root {
		--container: 100%;
	}

	html,
	body {
		min-width: 0;
		overflow-x: hidden;
	}

	main {
		margin-top: -24px;
		overflow-x: hidden;
	}

	.inner {
		width: 100%;
		padding: 0 20px;
	}

	/* Header */
	.util-bar .inner {
		height: 32px;
		padding: 0 20px;
	}

	.util-menu a {
		padding: 0 8px;
		font-size: 10px;
	}

	.user-menu {
		gap: 8px;
		font-size: 10px;
	}

	.gnb-bar > .inner {
		height: 82px;
	}

	.gnb-left {
		gap: 48px;
	}

	.logo {
		width: 128px;
		height: auto;
	}

	.gnb {
		gap: 34px;
	}

	.gnb a {
		font-size: 20px;
	}

	.header.is-sticky .gnb-bar > .inner {
		height: 60px;
	}

	.header.is-sticky .logo {
		width: 95px;
	}

	.header.is-sticky .gnb-left {
		gap: 52px;
	}

	.header.is-sticky .gnb {
		gap: 36px;
	}

	.search-box {
		height: 62px;
		gap: 24px;
		padding: 0 22px 0 26px;
	}

	.search-left {
		gap: 18px;
	}

	.search-cate {
		min-width: 78px;
		font-size: 16px;
	}

	.search-input input {
		font-size: 18px;
	}

	.search-hot {
		display: none;
	}

	/* Main page */
	.banner {
		width: calc(100% - 20px);
		height: 280px;
		border-radius: 28px;
	}

	.sec-curation {
		padding-top: 60px;
	}

	.curation-list {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 36px 20px;
	}

	.thumb-row {
		display: contents;
	}

	.sec-media {
		margin-top: 70px;
	}

	.sec-media .inner {
		display: block;
		padding: 72px 32px;
	}

	.media-left {
		width: auto;
		flex: none;
	}

	.media-tabs {
		width: 100%;
		margin-top: 30px;
		flex-direction: row;
	}

	.media-tabs a {
		width: 180px;
	}

	.media-left .btn-more {
		margin-top: 28px;
	}

	.media-grid {
		margin-top: 36px;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.media-cell.is-empty {
		display: none;
	}

	/* Search page */
	.search-hero {
		padding-top: 40px;
	}

	.search-result-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 40px 20px;
	}

	/* List page */
	.class-list-page {
		padding-top: 40px;
	}

	.detail-list-section {
		margin-top: 48px;
	}

	.class-info-page {
		padding-top: 40px;
	}

	.mypage-info-page {
		padding-top: 40px;
	}

	.mypage-storage-page,
	.mypage-storage-empty-page,
	.liked-storage-page {
		padding: 40px 0 160px;
	}

	.storage-folder-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.storage-list-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.liked-tabs {
		width: 100%;
		margin: 42px 0 36px;
	}

	.liked-list-tools {
		width: 100%;
	}

	.support-event-page {
		padding-top: 40px;
	}

	.support-news-page {
		padding-top: 40px;
	}

	.support-view-page {
		padding-top: 40px;
	}

	.support-faq-page {
		padding-top: 40px;
	}

	.support-form-page {
		padding-top: 40px;
	}

	.support-form-card {
		padding: 42px 34px 40px;
	}

	.support-form-guide {
		margin-bottom: 42px;
	}

	.event-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px 24px;
	}

	.news-search {
		width: 320px;
	}

	.faq-filter {
		gap: 18px;
	}

	.faq-filter-tabs {
		flex-wrap: wrap;
	}

	.student-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.student-card strong,
	.student-card em {
		font-size: 18px;
	}

	.media-detail-modal {
		align-items: flex-start;
		padding: 88px 24px 32px;
		overflow-y: auto;
	}

	.media-detail-dialog {
		width: min(900px, 100%);
	}

	.media-detail-body {
		grid-template-columns: minmax(0, 1fr) 280px;
		gap: 22px;
		padding: 28px;
	}

	.media-detail-info {
		padding-left: 22px;
	}

	/* Detail page */
	.class-detail-page {
		padding-top: 40px;
	}

	.detail-view {
		grid-template-columns: 1fr;
		margin-top: 34px;
	}

	.detail-side {
		display: grid;
		grid-template-columns: 280px minmax(0, 1fr);
		align-items: start;
	}

	.detail-author,
	.text-edit-panel,
	.detail-actions,
	.font-info {
		grid-column: 1;
	}

	.detail-tip-card {
		grid-column: 2;
		grid-row: 1 / span 4;
	}

	.detail-preview {
		min-height: 720px;
	}

	.detail-tablet-pc .detail-view {
		grid-template-columns: 280px minmax(0, 1fr);
		gap: 20px;
		margin-top: 40px;
	}

	.detail-tablet-pc .detail-side {
		display: flex;
		flex-direction: column;
		gap: 20px;
		align-items: stretch;
	}

	.detail-tablet-pc .detail-author,
	.detail-tablet-pc .text-edit-panel,
	.detail-tablet-pc .detail-actions,
	.detail-tablet-pc .font-info,
	.detail-tablet-pc .detail-tip-card {
		grid-column: auto;
		grid-row: auto;
	}

	.detail-tablet-pc .detail-preview {
		min-height: 1018px;
	}

	/* Class / media sub pages */
	.class-layout {
		display: block;
		padding:0;
	}
	.class-section-lined {margin-top:40px; padding-top:40px;}
	.class-lnb {
		display: none;
	}

	.class-sub-banner {
		height:240px;
		min-height: 220px;
		padding: 0 70px;
		border-radius: 32px;
	}

	.sub-banner-copy p {
		font-size: 20px;
	}

	.sub-banner-copy strong {
		font-size: 24px;
	}

	.class-card-grid.grid-6,
	.class-card-grid.grid-4 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 40px 20px;
	}

	.class-support.quicklinks {
		grid-template-columns: repeat(2, 1fr);
	}

	.class-support.quicklinks a:nth-child(2) {
		border-right: 0;
	}

	.class-support.quicklinks a:nth-child(-n + 2) {
		border-bottom: 1px solid var(--line-light);
	}

	/* Use case */
	.usecase-list {
		gap: 24px;
	}

	.photobox {
		gap: 16px;
		height: 180px;
	}

	.photobox .pb-img {
		flex-basis: 180px;
	}

	.photobox .pb-body {
		padding: 18px 16px 18px 0;
	}

	.board-wrap {
		display: grid;
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.board-col {
		width: auto;
		min-width: 0;
	}

	/* Footer / floating */
	.footer .inner {
		padding: 0 32px;
	}

	.quickmenu {
		display: none;
	}
}

/* Mobile */
@media (max-width: 767px) {
	:root {
		--container: 100%;
	}

	body {
		min-width: 0;
		overflow-x: hidden;
	}

	body.is-allmenu-open {
		overflow: hidden;
	}

	main {
		margin-top: 0;
		overflow-x: hidden;
	}

	html {
		overflow-x: hidden;
	}

	.inner {
		width: 100%;
		padding: 0 20px;
		max-width: none;
	}

	.home-notice-modal {
		padding: 16px;
	}

	.home-notice-dialog {
		grid-template-rows: 54px minmax(0, 1fr) 56px;
		max-width: calc(100vw - 32px);
		max-height: calc(100dvh - 32px);
		border-radius: 10px;
	}

	.home-notice-header {
		padding: 0 16px;
	}

	.home-notice-header h2 {
		font-size: 18px;
	}

	.home-notice-close {
		width: 32px;
		height: 32px;
	}

	.home-notice-close .material-symbols-outlined {
		font-size: 28px;
	}

	.home-notice-content {
		padding: 24px 18px 20px;
	}

	.home-notice-card {
		padding: 22px 16px;
	}

	.home-notice-paper {
		gap: 10px;
		padding: 18px 16px 16px;
	}

	.home-notice-paper::before {
		width: 150px;
		height: 20px;
	}

	.home-notice-paper strong {
		font-size: 24px;
	}

	.home-notice-date {
		font-size: 17px;
	}

	.home-notice-paper p,
	.home-notice-text {
		font-size: 15px;
	}

	.home-notice-text {
		gap: 16px;
	}

	.home-notice-actions button {
		font-size: 15px;
	}

	.error-page {
		min-height: calc(100vh - 102px);
		padding: 74px 20px 72px;
		display:flex;
		align-items: center;
		justify-content: center;
	}

	.error-page-standalone {
		min-height: 100vh;
		padding: 70px 20px;
	}

	.error-logo {
		width: 170px;
	}

	.error-visual {
		width: 260px;
	}

	.error-content {
		gap: 28px;
	}

	.error-message {
		gap: 14px;
	}

	.error-message h2 {
		font-size: 24px;
	}

	.error-message p {
		font-size: 14px;
		line-height: 1.55;
	}

	.error-actions {
		flex-direction: column;
		width: 100%;
		max-width: 280px;
	}

	.error-actions .btn {
		width: 100%;
	}

	/* Header */
	.util-bar {
		display: none;
	}

	.gnb-bar > .inner {
		height: 54px;
	}

	.gnb-left {
		gap: 0;
	}

	.logo {
		width: 96px;
		height: auto;
	}

	.gnb {
		display: none;
	}

	.btn-allmenu {
		width: 22px;
		height: 17px;
	}

	.btn-allmenu span {
		height: 2px;
	}

	.btn-allmenu span:nth-child(1),
	.btn-allmenu span:nth-child(3) {
		width: 22px;
	}

	.btn-allmenu span:nth-child(2) {
		width: 16px;
		margin-left: 6px;
	}

	.btn-allmenu.is-open {
		width: 24px;
		height: 24px;
		gap: 0;
	}

	.btn-allmenu.is-open span {
		position: absolute;
		top: 50%;
		left: 0;
		width: 24px;
		height: 2px;
		margin: 0;
		transform-origin: center;
	}

	.btn-allmenu.is-open span:nth-child(1) {
		transform: translateY(-50%) rotate(45deg);
	}

	.btn-allmenu.is-open span:nth-child(2) {
		opacity: 0;
	}

	.btn-allmenu.is-open span:nth-child(3) {
		transform: translateY(-50%) rotate(-45deg);
	}

	body.is-allmenu-open .header {
		z-index: 300;
	}

	body.is-allmenu-open .gnb-bar {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 300;
		border-bottom: 1px solid var(--color-primary);
		box-shadow: none;
	}

	body.is-allmenu-open .gnb-bar > .inner {
		height: 60px;
	}

	body.is-allmenu-open .logo {
		width: auto;
	}

	body.is-allmenu-open .logo a {
		display: flex;
		align-items: flex-end;
		gap: 4px;
	}

	body.is-allmenu-open .logo img {
		width: 114px;
		height: auto;
	}

	body.is-allmenu-open .logo a::after {
		content: "AI";
		margin-bottom: -1px;
		font-size: 24px;
		font-weight: 800;
		line-height: 1;
		color: var(--color-primary);
	}

	.allmenu {
		position: fixed;
		top: 60px;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 290;
		width: 100%;
		height: calc(100dvh - 60px);
		max-height: none;
		overflow-y: auto;
		border-top: 0;
		-webkit-overflow-scrolling: touch;
	}

	.allmenu.is-open {
		max-height: none;
	}

	.allmenu .inner {
		padding: 0 20px;
	}

	.allmenu-row {
		display: block;
		padding: 0;
		border-bottom: 1px solid #e9e9e9;
	}

	.allmenu-row dt {
		position: relative;
		margin-bottom: 0;
		padding: 23px 34px 23px 0;
		font-size: 18px;
		font-weight: 800;
		line-height: 1;
		cursor: pointer;
	}

	.allmenu-row dt::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 7px;
		width: 10px;
		height: 10px;
		border-top: 2px solid #999;
		border-right: 2px solid #999;
		transform: translateY(-65%) rotate(135deg);
		transition: transform 0.2s ease;
	}

	.allmenu-row.is-open dt::after {
		transform: translateY(-35%) rotate(-45deg);
	}

	.allmenu-row dd {
		display: none;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px 34px;
		padding: 0 0 27px;
	}

	.allmenu-row.is-open dd {
		display: grid;
	}

	.allmenu-row dd a {
		position: relative;
		display: inline-flex;
		align-items: center;
		width: fit-content;
		font-size: 18px;
		font-weight: 700;
		line-height: 1.1;
		color: #666;
	}

	.allmenu-row dd a:hover,
	.allmenu-row dd a.is-active {
		color: var(--color-primary);
	}

	.allmenu-row:first-child dd a:nth-child(5)::after {
		content: "N";
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 18px;
		height: 18px;
		margin-left: 5px;
		border-radius: 50%;
		background: var(--color-primary);
		font-size: 12px;
		font-weight: 800;
		line-height: 1;
		color: #fff;
	}

	.header.is-sticky .gnb-bar > .inner {
		height: 54px;
	}

	.header.is-sticky .logo {
		width: 96px;
	}

	.header.is-sticky .gnb-left,
	.header.is-sticky .gnb {
		gap: 0;
	}

	.search-bar .inner {
		padding: 0;
	}

	.search-box {
		height: 48px;
		gap: 12px;
		padding: 0 14px;
		border-radius: 0;
	}

	.search-left {
		gap: 8px;
	}

	.search-cate {
		min-width: 94px;
		font-size: 14px;
	}

	.search-cate .material-symbols-outlined {
		font-size: 18px;
	}

	.search-cate-list {
		top: calc(100% + 10px);
		left: 0;
	}

	.search-input input {
		font-size: 14px;
	}

	.btn-search {
		width: 28px;
		height: 28px;
	}

	.btn-search img {
		width: 22px;
		height: 22px;
	}

	.search-hot {
		display: none;
	}

	/* Search page */
	.search-page {
		padding-bottom: 60px;
	}

	.search-hero {
		padding-top: 30px;
	}

	.search-title-row {
		align-items: flex-start;
		padding-bottom: 16px;
	}

	.search-title {
		font-size: 24px;
	}

	.search-breadcrumb {
		margin-top: 5px;
		font-size: 12px;
	}

	.search-breadcrumb a,
	.search-breadcrumb strong,
	.detail-breadcrumb a:not(:first-child) {
		font-size: 12px;
	}

	.search-result-wrap {
		padding-top: 36px;
	}

	.search-result-section + .search-result-section {
		margin-top: 60px;
	}

	.search-result-head {
		margin-bottom: 18px;
	}

	.search-result-head h3 {
		font-size: 20px;
	}

	.search-result-head p {
		margin-top: 16px;
		font-size: 14px;
	}

	.search-result-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px 14px;
	}

	.search-result-grid .thumb-card .thumb-title {
		height: 42px;
		font-size: 14px;
	}

	/* List page */
	.class-list-page {
		padding: 30px 20px 44px;
	}

	.detail-title-row {
		display: block;
		min-height: 0;
		padding-bottom: 16px;
	}

	.detail-title {
		font-size: 24px;
	}

	.detail-breadcrumb {
		justify-content: flex-start;
		margin-top: 12px;
	}

	.detail-list-section {
		margin-top: 36px;
	}

	.class-info-page {
		padding: 28px 0 44px;
	}

	.mypage-info-page {
		min-height: 100vh;
		overflow: visible;
		padding: 28px 0 120px;
	}

	.mypage-storage-page,
	.mypage-storage-empty-page,
	.liked-storage-page {
		min-height: 100vh;
		overflow: visible;
		padding: 28px 0 96px;
	}

	.storage-section {
		margin-top: 36px;
	}

	.storage-section-head {
		margin-bottom: 16px;
	}

	.storage-section-title,
	.storage-list-title {
		font-size: 20px;
	}

	.storage-folder-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.storage-folder-card {
		min-height: 64px;
		padding: 10px 46px 10px 12px;
		border-radius: 10px;
	}

	.storage-folder-icon {
		width: 42px;
		height: 42px;
	}

	.storage-folder-name {
		font-size: 14px;
	}

	.storage-folder-menu {
		right: 0;
	}

	.storage-folder-create {
		grid-template-columns: 62px minmax(0, 1fr) 82px;
		grid-column: span 1;
		min-height: 64px;
		border-radius: 18px;
	}

	.storage-folder-create .storage-folder-icon {
		width: 44px;
		height: 44px;
	}

	.storage-folder-create input {
		font-size: 20px;
	}

	.storage-folder-create-actions button {
		font-size: 16px;
	}

	.storage-delete-dialog {
		padding: 34px 22px 30px;
		border-radius: 16px;
	}

	.storage-delete-dialog h2 {
		font-size: 18px;
	}

	.storage-delete-dialog p {
		font-size: 14px;
	}

	.storage-divider {
		margin: 32px 0 26px;
	}

	.storage-list-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
	}

	.storage-list-actions {
		width: 100%;
		justify-content: flex-end;
	}

	.storage-list-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 30px 14px;
	}

	.storage-list-grid .thumb-title {
		height: 42px;
		font-size: 14px;
	}

	.liked-tabs {
		overflow-x: auto;
		justify-content: flex-start;
		margin: 34px 0 30px;
		padding: 6px;
		border-radius: 999px;
		scrollbar-width: none;
	}

	.liked-tabs::-webkit-scrollbar {
		display: none;
	}

	.liked-tabs button {
		flex: 0 0 auto;
		min-width: 128px;
		height: 38px;
		padding: 0 16px;
		font-size: 13px;
	}

	.liked-list-tools {
		width: 100%;
		align-items: stretch;
	}

	.liked-search {
		flex: 1;
		width: auto;
	}

	.support-event-page {
		padding: 28px 0 44px;
	}

	.support-news-page {
		padding: 28px 0 44px;
	}

	.support-view-page {
		padding: 28px 0 44px;
	}

	.support-faq-page {
		padding: 28px 0 44px;
	}

	.support-form-page {
		padding: 28px 0 44px;
	}
	.support-form-card.is-request {
		margin-top:0;
	}
	.support-form-card {
		margin-top: 34px;
		margin-left: -20px;
		margin-right: -20px;
		padding: 34px 20px 36px;
		border-radius: 0;
	}

	.support-form-card.is-idea {
		padding-top: 34px;
	}

	.support-form-guide {
		margin-bottom: 30px;
		font-size: 18px;
		line-height: 1.4;
	}

	.support-form-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.support-form-grid.is-request {
		grid-template-columns: 1fr;
	}

	.support-field label,
	.support-label {
		margin-bottom: 8px;
		font-size: 14px;
	}

	.support-field input {
		height: 42px;
		padding: 0 14px;
		font-size: 14px;
	}

	.support-select-button {
		height: 42px;
		padding: 0 40px 0 14px;
		font-size: 14px;
	}

	.support-select-button .material-symbols-outlined {
		right: 12px;
		font-size: 20px;
	}

	.support-select-list li {
		padding: 10px 14px;
		font-size: 14px;
	}

	.support-field textarea {
		height: 150px;
		padding: 14px;
		font-size: 14px;
		line-height: 1.5;
	}

	.file-upload-box {
		min-height: 110px;
		padding: 18px 14px;
	}

	.btn-file-select {
		height: 42px;
		padding: 0 20px;
		font-size: 14px;
	}

	.file-upload-box p {
		text-align: center;
		font-size: 12px;
		line-height: 1.4;
	}

	.support-submit-row {
		margin-top: 30px;
	}

	.btn-support-submit {
		min-width: 138px;
		height: 48px;
		border-radius: 8px;
		font-size: 16px;
	}

	.support-inquiry-tabs {
		width: 100%;
		height: 58px;
		margin-top: 32px;
		padding: 6px;
	}

	.support-inquiry-tabs button {
		font-size: 14px;
	}

	.inquiry-type-section {
		margin: 28px -20px 0;
		padding: 32px 20px;
		border-radius: 0;
	}

	.inquiry-type-section h3,
	.inquiry-form-title {
		margin-bottom: 24px;
		font-size: 20px;
		line-height: 28px;
	}

	.inquiry-type-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}
	/* [서비스 수정 2026-08-21] 3장 2열 배치 시 홀로 남는 마지막 카드는 가로 전체 */
	.inquiry-type-card:last-child:nth-child(odd) {
		grid-column: 1 / -1;
	}

	.inquiry-type-card {
		min-height: 124px;
		padding: 16px 10px;
	}

	.inquiry-type-card strong {
		font-size: 16px;
	}

	.inquiry-type-card small {
		font-size: 12px;
		line-height: 18px;
	}

	.inquiry-write-card {
		margin-top: 28px;
	}

	.inquiry-email-row {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.inquiry-toggle-cell {
		justify-content: flex-end;
	}

	.inquiry-toggle {
		justify-content: flex-end;
		font-size: 14px;
	}

	.inquiry-file-chips {
		gap: 10px;
	}

	.inquiry-file-chips span {
		width: 100%;
		justify-content: space-between;
		height: 42px;
		padding: 0 12px 0 14px;
		font-size: 14px;
	}

	.inquiry-list-head {
		align-items: stretch;
		flex-direction: column;
		margin-top: 34px;
	}

	.inquiry-list-tools {
		align-items: stretch;
		flex-direction: column;
	}

	.inquiry-filter-select,
	.inquiry-search {
		width: 100%;
	}

	.inquiry-table-wrap {
		margin-left: -20px;
		margin-right: -20px;
		border-top: 1px solid #eeeeee;
	}

	.inquiry-table,
	.inquiry-table tbody,
	.inquiry-table tr,
	.inquiry-table td {
		display: block;
		width: 100%;
	}

	.inquiry-table thead {
		display: none;
	}

	.inquiry-table tr {
		padding: 16px 20px;
		border-bottom: 1px solid #dddddd;
	}

	.inquiry-table td {
		height: auto;
		border-bottom: 0;
		text-align: left !important;
	}

	.inquiry-table td + td {
		margin-top: 8px;
	}

	.inquiry-title-link {
		display: flex;
		padding: 0;
		font-size: 16px;
		line-height: 22px;
	}

	.inquiry-title-link > span:first-child {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		white-space: normal;
	}

	.inquiry-status {
		height: 24px;
		font-size: 12px;
	}

	.inquiry-detail {
		margin-top: 28px;
	}

	.inquiry-detail-head {
		padding: 20px 0;
	}

	.inquiry-detail-head h3 {
		font-size: 18px;
		line-height: 26px;
	}

	.inquiry-detail-head time,
	.inquiry-table time,
	.inquiry-detail-type {
		font-size: 14px;
	}

	.inquiry-detail-body {
		padding: 24px 0;
		font-size: 14px;
		line-height: 1.65;
	}

	.inquiry-attach {
		width: 180px;
		margin-left: 0;
	}

	.inquiry-attach-button {
		height: 40px;
		font-size: 14px;
	}

	.inquiry-attach-menu {
		width: calc(100vw - 40px);
	}

	.inquiry-answer-head {
		height: auto;
		padding: 16px 0;
	}

	.inquiry-answer-body {
		padding: 24px 0;
		font-size: 14px;
		line-height: 1.65;
	}

	.inquiry-detail-actions {
		flex-wrap: wrap;
		margin-top: 30px;
	}

	.simple-modal-box {
		padding: 36px 24px 28px;
	}

	.simple-modal-box strong {
		font-size: 18px;
	}

	.event-list-section {
		margin-top: 34px;
	}

	.event-card-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.event-body {
		gap: 18px;
		min-height: auto;
		padding: 14px 16px 16px;
	}

	.event-body strong {
		min-height: 42px;
		font-size: 18px;
	}

	.event-body em {
		font-size: 14px;
	}

	.event-card.is-ended .event-thumb::after {
		font-size: 28px;
	}

	.faq-section {
		margin-top: 34px;
	}

	.faq-section h3 {
		margin-bottom: 24px;
		font-size: 20px;
		line-height: 1.35;
	}

	.faq-filter {
		display: flex;
		flex-direction: column;
		gap: 14px;
		margin-bottom: 24px;
		align-items: center;
	}

	.faq-filter-tabs {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
		margin-left: -20px;
		margin-right: -20px;
		padding: 0 20px 2px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		justify-content: center;
	}
	.faq-search {width:100%;}

	.faq-filter-tabs button {
		flex: 0 0 auto;
		min-width: auto;
		height: 38px;
		padding: 0 16px;
		border-radius: 9px;
		font-size: 14px;
	}

	.faq-search input {
		height: 42px;
		border-radius: 10px;
		font-size: 14px;
	}

	.faq-list {
		margin-left: -20px;
		margin-right: -20px;
	}

	.faq-question {
		grid-template-columns: minmax(0, 1fr) 28px;
		gap: 8px 12px;
		min-height: 68px;
		padding: 13px 20px;
	}

	.faq-category {
		grid-column: 1 / -1;
		text-align: left;
		font-size: 12px;
	}

	.faq-question strong {
		display: block;
		font-size: 15px;
		line-height: 1.35;
	}

	.faq-question .badge-new {
		display: inline-flex;
		margin-left: 4px;
		vertical-align: middle;
	}

	.faq-arrow {
		align-self: center;
		font-size: 22px;
	}

	.faq-answer p {
		padding: 20px;
		font-size: 14px;
		line-height: 1.6;
	}

	.faq-empty {
		margin-left: -20px;
		margin-right: -20px;
		padding: 34px 0;
		font-size: 14px;
	}

	.news-list-section {
		margin-top: 36px;
	}

	.news-toolbar {
		align-items: flex-start;
		flex-direction: column;
		gap: 18px;
		margin-bottom: 20px;
	}

	.news-toolbar p {
		font-size: 16px;
	}

	.news-search {
		width: 100%;
	}

	.news-search input {
		height: 44px;
		border-radius: 10px;
		font-size: 14px;
	}

	.news-table-wrap {
		margin-left: -20px;
		margin-right: -20px;
		border-top: 1px solid #eeeeee;
	}

	.news-table,
	.news-table tbody,
	.news-table tr,
	.news-table td {
		display: block;
		width: 100%;
	}

	.news-table thead,
	.news-num {
		display: none;
	}

	.news-table tr {
		padding: 16px 20px;
		border-bottom: 1px solid #dddddd;
	}

	.news-table td {
		height: auto;
		border-bottom: 0;
		text-align: left !important;
		word-break: keep-all;
	}
	.news-table td:first-child {
		display:none;
	}

	.news-title {
		display: block;
		min-height: 0;
		padding: 0;
	}

	.news-title a {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
		white-space: normal;
		text-overflow: ellipsis;
		font-size: 16px;
		line-height: 1.35;
	}
	.news-title .news-badge {
		display: flex;
		width: max-content;
		margin-bottom: 10px;
	}

	.news-title .badge-new {
		display: inline-flex;
		margin-left: 4px;
		vertical-align: middle;
	}

	.news-badge {
		min-width: 48px;
		height: 24px;
		padding: 0 12px;
		font-size: 12px;
	}

	.news-date {
		margin-top: 8px;
		font-size: 12px;
		color: var(--txt-normal);
	}

	.pagination {
		display: none;
	}

	.support-view {
		max-width: none;
		margin-top: 28px;
	}

	.support-view-head {
		margin-left: -20px;
		margin-right: -20px;
		padding: 18px 20px 20px;
	}

	.support-view-head h3 {
		display: block;
		font-size: 18px;
		line-height: 1.4;
	}

	.support-view-head .badge-new {
		display: inline-flex;
		margin-left: 4px;
		vertical-align: middle;
	}

	.support-view-head time {
		font-size: 14px;
	}

	.support-view-body {
		margin-left: -20px;
		margin-right: -20px;
		padding: 24px 20px 28px;
		font-size: 14px;
		line-height: 1.6;
	}

	.support-view-body-inner {
		width: 100%;
	}

	.news-hero {
		width: 100%;
		max-width: none;
		min-height: 190px;
		margin-bottom: 22px;
		border-radius: 8px;
	}

	.news-hero-clover {
		left: 22px;
		top: 22px;
		font-size: 36px;
	}

	.news-hero strong {
		font-size: 24px;
	}

	.news-hero p {
		margin-top: 16px;
		font-size: 15px;
	}

	.news-hero em {
		height: 34px;
		margin-top: 16px;
		padding: 0 14px;
		font-size: 13px;
	}

	.support-view-foot {
		padding-top: 28px;
	}

	.btn-view-list {
		min-width: 78px;
		height: 38px;
		font-size: 14px;
	}

	.info-form-section {
		margin-top: 38px;
	}

	.info-section-head {
		align-items: center;
		flex-direction: row;
		margin-bottom: 18px;
	}

	.info-section-head h3 {
		font-size: 24px;
		line-height: 1;
	}

	.info-section-head p {
		font-size: 14px;
		line-height: 1.45;
	}

	.btn-info-save,
	.btn-import,
	.btn-class-link {
		height: 38px;
		padding: 0 12px;
		font-size: 14px;
	}

	.info-form-section .info-section-head {
		justify-content: space-between;
	}

	.info-form-section .btn-info-save {
		width: 89px;
		height: 38px;
		border-radius: 6px;
	}

	.class-info-card,
	.student-grid {
		grid-template-columns: 1fr;
	}

	.class-info-card {
		gap: 20px;
		padding: 18px;
		border-radius: 10px;
	}

	.info-field > span,
	.field-control input,
	.field-control em,
	.student-list-panel > p {
		font-size: 14px;
	}

	.field-control input {
		height: 44px;
		padding-right: 70px;
	}

	.mypage-account-section {
		margin-top: 38px;
	}

	.mypage-section-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 16px;
		padding-bottom: 18px;
	}

	.mypage-section-head h3 {
		font-size: 22px;
		line-height: 1.25;
	}

	.mypage-section-head .btn-info-save {
		width: 100%;
		height: 42px;
		font-size: 14px;
	}

	.mypage-profile-form {
		gap: 22px;
		margin-top: 28px;
	}

	.mypage-profile-row {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.mypage-profile-label {
		font-size: 14px;
	}

	.mypage-profile-label .material-symbols-outlined {
		font-size: 18px;
	}

	.mypage-profile-control.has-action {
		grid-template-columns: minmax(0, 1fr);
		grid-auto-columns: 104px;
		gap: 8px;
	}

	.mypage-profile-control input,
	.mypage-profile-control.has-action .btn {
		height: 44px;
		font-size: 14px;
	}

	.mypage-profile-control input {
		padding: 0 14px;
	}

	.mypage-profile-control.has-action .btn {
		padding: 0 10px;
	}

	.student-info-section {
		margin-top: 42px;
	}

	.student-info-section .info-section-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
		margin-bottom: 18px;
	}

	.student-info-section .info-section-head > div:first-child {
		display: contents;
	}

	.student-info-section .info-section-head h3 {
		order: 1;
	}

	.student-info-section .student-actions {
		order: 2;
	}

	.student-info-section .info-section-head p {
		order: 3;
	}

	.student-actions {
		width: 100%;
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 8px;
	}

	.student-actions .btn-import,
	.student-actions .btn-class-link {
		width: 100%;
		padding: 0 8px;
		font-size: 12px;
	}

	.student-actions .material-symbols-outlined {
		display: none;
	}

	.student-list-panel {
		padding: 18px;
		border-radius: 10px;
	}

	.student-list-panel > p {
		margin-bottom: 16px;
		line-height: 1.45;
	}

	.student-card {
		grid-template-columns: 54px minmax(0, 1fr) 42px;
		min-height: 58px;
		padding: 0 30px;
	}

	.student-num {
		width: 32px;
		height: 32px;
		font-size: 18px;
	}

	.student-card strong,
	.student-card em {
		font-size: 20px;
	}

	.class-import-modal {
		align-items: flex-start;
		padding: 72px 16px 24px;
		overflow-y: auto;
	}

	.timetable-section {
		margin-top: 38px;
	}

	.timetable-card {
		padding: 0;
		border-radius: 10px;
		background-color: transparent;
	}

	.timetable-scroll {
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
	}

	.bell-page .timetable-scroll {
		overflow-x: auto;
		overflow-y: visible;
	}

	.timetable-table {
		width: 760px;
		min-width: 760px;
	}

	.bell-table {
		width: 860px;
		min-width: 860px;
	}

	.seat-tabs {
		width: 100%;
		margin-top: 34px;
		padding: 6px;
	}

	.seat-tabs button {
		height: 42px;
		font-size: 14px;
	}

	.seat-section {
		margin-top: 36px;
	}

	.seat-card {
		padding: 0;
		border-radius: 10px;
		background-color: transparent;
	}
	.seat-names {
		border:1px solid #eee;
		 border-top:0;
		 border-radius: 0 0 12px 12px;
	}

	.seat-scroll {
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
	}

	.seat-board {
		width: 1040px;
		min-width: 1040px;
	}

	.timetable-table thead th {
		font-size: 14px;
	}

	.timetable-table tbody th,
	.timetable-table input,
	.bell-time-toggle,
	.btn-timetable-add,
	.btn-timetable-delete {
		font-size: 14px;
	}

	.timetable-actions {
		gap: 10px;
		margin-top: 18px;
	}

	.btn-timetable-add,
	.btn-timetable-delete {
		min-width: 78px;
		height: 36px;
	}

	.group-section {
		margin-top: 38px;
		margin-bottom: 54px;
	}

	.group-section .info-section-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 16px;
		margin-bottom: 22px;
	}

	.group-head-actions {
		display: grid;
		grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
		gap: 10px;
		width: 100%;
	}

	.btn-random-group,
	.group-head-actions .btn-info-save {
		width: 100%;
		height: 40px;
		padding: 0 10px;
		font-size: 14px;
	}

	.btn-random-group .material-symbols-outlined,
	.group-head-actions .btn-info-save .material-symbols-outlined {
		font-size: 18px;
	}

	.group-card {
		padding: 0;
		border-radius: 0;
		background: transparent;
	}

	.group-list {
		gap: 22px;
	}

	.group-row {
		grid-template-columns: 62px minmax(0, 1fr);
		min-height: 190px;
		border-radius: 10px;
		background: #f6f6f6;
	}

	.group-row h4 {
		min-height: 100%;
		font-size: 16px;
		line-height: 1.25;
	}

	.group-members {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
		padding: 14px 14px 14px 16px;
	}

	.group-members input {
		height: 44px;
		font-size: 16px;
		background-color:var(--txt-white);
	}

	.group-card .timetable-actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
		margin-top: 22px;
	}

	.group-card .btn-timetable-add,
	.group-card .btn-timetable-delete {
		width: 100%;
		height: 40px;
		border-radius: 22px;
	}

	.class-import-head {
		height: 60px;
		padding: 0 18px;
	}

	.class-import-head h2 {
		font-size: 20px;
	}

	.class-import-body {
		padding: 20px 18px 0;
	}

	.class-import-controls {
		grid-template-columns: 1fr;
	}

	.class-select-wrap select,
	.btn-class-edit {
		height: 44px;
		font-size: 14px;
	}

	.class-import-table {
		margin-top: 20px;
	}

	.class-import-thead,
	.class-import-list div {
		grid-template-columns: 38% 62%;
	}

	.class-import-thead strong,
	.class-import-empty,
	.class-import-list span,
	.class-import-list strong,
	.btn-class-import-cancel,
	.btn-class-import-submit {
		font-size: 14px;
	}

	.class-import-empty {
		height: 92px;
		padding: 0 16px;
		text-align: center;
	}

	.class-import-foot {
		padding: 22px 18px;
	}

	.media-detail-modal {
		align-items: flex-start;
		padding: 72px 16px 24px;
		overflow-y: auto;
	}

	.media-detail-head {
		height: 60px;
		padding: 0 18px;
	}

	.media-detail-head h2 {
		font-size: 20px;
	}

	.media-detail-body {
		display: block;
		padding: 18px;
	}

	.media-detail-info {
		margin-top: 18px;
		padding-left: 0;
		padding-top: 18px;
		border-left: 0;
		border-top: 1px solid var(--line-light);
	}

	.media-detail-meta {
		gap: 18px;
		margin-top: 20px;
	}

	.media-detail-meta dt,
	.media-download-btn {
		font-size: 14px;
	}

	.media-detail-meta dd,
	.media-detail-meta dd span,
	.media-detail-tags h3,
	.media-tag-list span,
	.media-detail-preview p,
	.media-detail-author {
		font-size: 12px;
	}

	.media-detail-actions {
		margin-top: 22px;
	}

	.media-download-btn {
		height: 44px;
		margin-top: 22px;
	}

	.class-detail-page {
		padding: 30px 20px 44px;
	}

	.detail-view {
		grid-template-columns: 1fr;
		gap: 22px;
		margin-top: 28px;
	}

	.detail-side {
		gap: 14px;
	}

	.detail-author {
		height: 48px;
		padding: 0 16px;
		font-size: 14px;
	}

	.text-edit-list {
		max-height: 236px;
		padding: 16px;
	}

	.text-edit-actions {
		padding: 0 16px 16px;
	}

	.detail-tip-card {
		padding: 16px;
	}

	.tip-copy {
		gap: 12px;
	}

	.tip-avatar {
		width: 44px;
		height: 44px;
	}

	.tip-copy strong,
	.tip-links h3 {
		font-size: 14px;
	}

	.tip-copy p,
	.tip-links a {
		font-size: 12px;
	}

	.detail-preview {
		min-height: 520px;
		border-radius: 8px;
	}

	.detail-list-toolbar {
		align-items: flex-start;
		gap: 14px;
		margin-bottom: 22px;
	}

	.detail-list-meta {
		gap: 10px;
		flex-wrap: wrap;
	}

	.detail-list-meta strong {
		width: 100%;
		font-size: 18px;
	}

	.detail-list-meta button,
	.btn-archive {
		font-size: 14px;
	}

	.btn-archive {
		min-width: 96px;
		height: 36px;
		padding: 0 12px;
	}

	.archive-toolbar-actions {
		gap: 8px;
	}

	.btn-archive-save,
	.btn-archive-cancel {
		height: 36px;
		font-size: 14px;
	}

	.btn-archive-save {
		min-width: 100px;
		padding: 0 12px;
	}

	.btn-archive-cancel {
		min-width: 56px;
		padding: 0 12px;
	}

	.archive-check {
		top: 8px;
		left: 8px;
		width: 26px;
		height: 26px;
		border-radius: 6px;
	}

	.archive-modal {
		align-items: flex-start;
		padding: 76px 16px 24px;
		overflow-y: auto;
	}

	.archive-dialog-head {
		height: 60px;
		padding: 0 18px;
	}

	.archive-dialog-head h2 {
		font-size: 20px;
	}

	.archive-dialog-body {
		padding: 22px 18px 0;
	}

	.archive-dialog-guide {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
	}

	.archive-dialog-guide p,
	.btn-folder-new,
	.folder-create-actions button,
	.btn-modal-cancel,
	.btn-modal-save {
		font-size: 14px;
	}

	.folder-list {
		max-height: 260px;
		padding: 12px;
	}

	.folder-row,
	.folder-create-row {
		gap: 10px;
		min-height: 58px;
		padding: 0 12px;
		font-size: 16px;
	}

	.folder-ico,
	.folder-create-ico {
		width: 36px;
		height: 36px;
		border-radius: 10px;
	}

	.folder-create-row {
		align-items: stretch;
		flex-wrap: wrap;
		padding: 10px 12px;
	}

	.folder-create-row input {
		font-size: 16px;
	}

	.folder-create-actions {
		width: 100%;
		justify-content: flex-end;
	}

	.archive-dialog-foot {
		padding: 22px 18px;
	}

	/* Class / media sub pages */
	.class-main-page {
		padding-bottom: 44px;
	}

	.class-layout {
		display: block;
		padding:0 20px;
	}

	.class-lnb {
		display: none;
	}

	.class-sub-banner {
		min-height: 180px;
		padding: 0 42px;
		border-radius: 0;
		background-position: center right -120px;
	}

	.class-sub-banner::before {
		background: linear-gradient(90deg, rgba(112, 184, 154, 0.92) 0%, rgba(112, 184, 154, 0.76) 62%, rgba(112, 184, 154, 0.2) 100%);
	}

	.sub-banner-copy p {
		font-size: 16px;
	}

	.sub-banner-copy strong {
		font-size: 20px;
	}

	.sub-banner-nav {
		width: 26px;
		height: 26px;
	}

	.sub-banner-nav.prev {
		left: 10px;
	}

	.sub-banner-nav.next {
		right: 10px;
	}

	.class-section {
		margin-top: 48px;
		padding:0 20px;
	}

	.class-section-lined {
		margin-top: 52px;
		padding:0 20px;
		padding-top: 52px;
	}

	.class-card-grid.grid-6,
	.class-card-grid.grid-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px 14px;
	}

	.class-card-grid.grid-4 .thumb-title,
	.class-card-grid .thumb-title {
		height: 42px;
		font-size: 14px;
	}

	.keyword-section {
		margin-top: 54px;
		padding:0 20px;
	}

	.keyword-section h2 {
		font-size: 24px;
	}

	.keyword-section p {
		font-size: 16px;
	}

	.keyword-list {
		gap: 8px;
		margin-top: 22px;
	}

	.keyword-list a {
		height: 28px;
		min-width: 52px;
		padding: 0 12px;
		font-size: 12px;
	}

	.media-main-page .media-keyword-section {
		margin-top: 50px;
	}

	.class-support.quicklinks {
		grid-template-columns: repeat(2, 1fr);
		margin-top: 48px;
		border-radius: 0;
	}

	.class-support.quicklinks a {
		height: 66px;
		padding: 0 12px;
	}

	.class-support.quicklinks a:nth-child(2) {
		border-right: 0;
	}

	.class-support.quicklinks a:nth-child(-n + 2) {
		border-bottom: 1px solid var(--line-light);
	}

	/* Main page */
	.banner {
		width: 100%;
		height: 390px;
		border-radius: 0;
	}

	.banner-nav {
		display: none;
	}

	.banner-swiper .swiper-slide img {
		object-fit: cover;
	}

	.banner-ctrl {
		left: 50%;
		bottom: 18px;
		transform: translateX(-50%);
		gap: 6px;
	}

	.banner-ctrl .ctrl-arrow {
		width: 32px;
		height: 32px;
	}

	.ctrl-pill {
		height: 32px;
		padding: 0 5px 0 14px;
	}

	.ctrl-count {
		gap: 8px;
		font-size: 14px;
	}

	.sec-curation {
		padding-top: 36px;
	}

	.sec-curation .inner {
		padding: 0;
	}

	.sec-curation .inner .sec-head {
		padding: 0 20px;
	}

	.sec-head {
		height: 32px;
		padding: 0;
	}

	.sec-title,
	.board-head .board-tit {
		font-size: 20px;
	}

	.btn-more {
		height: 32px;
		padding: 0 14px;
		font-size: 14px;
	}

	.curation-list {
		display: grid;
		grid-template-rows: repeat(2, auto);
		grid-auto-flow: column;
		grid-auto-columns: 166px;
		gap: 24px 14px;
		margin-top: 20px;
		padding: 0 20px 4px;
		overflow-x: auto;
		overscroll-behavior-x: contain;
		scroll-snap-type: x proximity;
		scroll-padding-left: 31px;
		-webkit-overflow-scrolling: touch;
	}

	.curation-list::-webkit-scrollbar,
	.media-grid::-webkit-scrollbar {
		display: none;
	}

	.thumb-row {
		display: contents;
	}

	.thumb-card {
		scroll-snap-align: start;
		gap: 10px;
	}

	.thumb-card .thumb-img {
		border-radius: 10px;
	}

	.thumb-card .thumb-title {
		height: 42px;
		font-size: 16px;
		line-height: 1.5;
	}

	.thumb-card .thumb-txt {
		gap: 10px;
	}

	.thumb-card .thumb-author {
		gap: 6px;
		padding: 2px 10px 2px 2px;
	}

	.thumb-card .thumb-author .avatar {
		width: 18px;
		height: 18px;
	}

	.thumb-card .thumb-author .name {
		font-size: 12px;
	}

	.badge-like {
		right: 8px;
		bottom: 8px;
		height: 24px;
		font-size: 10px;
	}

	.sec-media {
		margin-top: 42px;
		padding: 40px 0;
	}

	.sec-media .inner {
		display: block;
		padding: 0;
	}

	.media-left {
		width: auto;
		padding: 0 20px;
	}

	.media-left .media-tit {
		font-size: 16px;
		line-height: 1.35;
	}

	.media-left .media-tit strong {
		margin-top: 4px;
		font-size: 20px;
		line-height: 1.2;
	}

	.media-tabs {
		width: 100%;
		margin-top: 24px;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 8px;
	}

	.media-tabs a {
		justify-content: center;
		height: 34px;
		padding: 0 10px;
		font-size: 14px;
		background: #fff;
	}

	.media-tabs a .material-symbols-outlined {
		display: none;
	}

	.media-left .btn-more {
		display: none;
	}

	.media-grid {
		display: flex;
		gap: 14px;
		margin-top: 22px;
		padding: 0 20px 2px;
		overflow-x: auto;
		overscroll-behavior-x: contain;
		scroll-snap-type: x proximity;
		scroll-padding-left: 20px;
		-webkit-overflow-scrolling: touch;
	}

	.media-cell {
		flex: 0 0 150px;
		border-radius: 12px;
		scroll-snap-align: start;
	}

	.media-grid .media-more-cell {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 6px;
		border: 1px solid #d6d6d6;
		background: #fff;
		font-size: 18px;
		font-weight: 800;
		color: #666666;
	}

	.media-more-cell .material-symbols-outlined {
		font-size: 24px;
		color: #666666;
	}

	.media-cell.is-empty {
		display: none;
	}

	.mc-title {
		display: none;
	}

	a.media-cell::after {
		display: none;
	}

	/* Use case */
	.sec-usecase {
		margin-top: 42px;
	}

	.usecase-list {
		display: grid;
		grid-template-columns: 1fr;
		gap: 16px;
		margin-top: 18px;
		padding: 0;
	}

	.photobox {
		display: block;
		height: auto;
		border-radius: 14px;
	}

	.photobox .pb-img {
		width: 100%;
		aspect-ratio: 16 / 9;
		border-radius: 14px 14px 0 0;
	}

	.photobox .pb-body {
		padding: 16px;
	}

	.photobox .pb-title {
		font-size: 16px;
	}

	.photobox .pb-desc {
		margin-top: 12px;
		font-size: 14px;
		-webkit-line-clamp: 3;
	}

	/* Board / support */
	.sec-board {
		margin-top: 42px;
		padding-bottom: 42px;
	}

	.board-wrap {
		display: grid;
		grid-template-columns: 1fr;
		gap: 34px;
		padding: 0;
	}

	.board-col {
		width: auto;
		min-width: 0;
	}

	.board-head {
		height: 32px;
	}

	.news-feed {
		margin-top: 18px;
		gap: 0;
		border-top: 1px solid #e8e8e8;
	}

	.news-feed .tr {
		display: grid;
		grid-template-columns: 46px 1fr;
		gap: 5px 8px;
		padding: 11px 0;
		border-bottom: 1px solid #e8e8e8;
	}

	.news-feed .chip {
		min-width: 46px;
		width: 46px;
		height: 22px;
		padding: 0;
		border-radius: 20px;
		font-size: 10px;
		grid-row: 1 / span 2;
		align-self: start;
	}

	.news-feed .tr .subject {
		font-size: 16px;
		line-height: 1.35;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.news-feed .tr .date {
		grid-column: 2;
		font-size: 12px;
		line-height: 1;
		color: var(--txt-light);
	}

	.quicklinks {
		margin-top: 18px;
		border-radius: 12px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.quicklinks a {
		height: 56px;
		gap: 6px;
		padding: 0 10px;
	}

	.quicklinks .ql-ico {
		width: 28px;
		height: 28px;
	}

	.quicklinks .ql-ico img {
		width: 18px;
		height: 18px;
	}

	.quicklinks .ql-txt {
		font-size: 14px;
		font-weight: 700;
		white-space: nowrap;
	}

	.quicklinks .ql-arrow {
		display: none;
	}

	/* Footer / floating */
	.footer {
		padding: 22px 0 28px;
	}

	.footer .inner {
		padding: 0 20px;
	}

	.footer .foot-top {
		justify-content: center;
		gap: 22px;
		padding-bottom: 18px;
	}

	.footer .foot-top a {
		font-size: 12px;
	}

	.footer .foot-body {
		margin-top: 22px;
		align-items: center;
	}

	.footer .foot-logo {
		width: 150px;
	}

	.footer .foot-info {
		display: block;
		margin-top: 18px;
		text-align: center;
		font-size: 10px;
		line-height: 1.7;
	}

	.footer .foot-info span {
		display: block;
		white-space: normal;
	}

	.footer address .copy {
		margin-top: 14px;
		font-size: 10px;
	}

	.quickmenu {
		display: none;
	}
}

/* ==================== [서비스 수정] 이하 서비스 추가분 ====================
   구 custom.css 병합(2026-08-06). 퍼블리셔가 이 소스에 직접 참여하게 되어
   퍼블리싱 산출물/서비스 추가분 파일 분리 이유가 소멸 → style.css 로 통합. */

/* 유틸바 패밀리 '더보기' 드롭다운 — 구성·문구·링크는 v1(fragments/header) 준수.
   ponytail: v1은 JS 클릭 토글이나 유틸바는 데스크톱 전용(모바일서 display:none)이라
   CSS hover/focus-within 로 충분. 클릭 토글이 필요해지면 JS는 별도 custom.js 로. */
.util-more {
	position: relative;
}
.util-more > a {
	border-right: 0;
}
.util-more-arrow {
	margin-left: 2px;
	font-size: 10px;
}
.util-more-list {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 100;
	min-width: 120px;
	padding: 6px 0;
	border: 1px solid var(--line-light);
	border-radius: 6px;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.util-more:hover .util-more-list,
.util-more:focus-within .util-more-list {
	display: block;
}
.util-more-list li a {
	justify-content: flex-start;
	height: 28px;
	padding: 0 14px;
	border-right: 0;
}
.util-more-list li a:hover {
	color: var(--color-primary);
}

/* 유틸바 사용자명 — 퍼블리싱은 span, 서비스는 마이페이지 링크로 변경(사용자 지시).
   a 태그화하면서 기존 .name 텍스트 톤 유지 */
.user-menu a.name {
	color: inherit;
}

/* 이벤트 상세 — 목업에 없는 요소(본문 이미지·댓글) 최소 스타일.
   ponytail: 동작 확인용 수준 — 퍼블리셔 스타일 수신 시 교체 */
.event-view-images img {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}
.event-view-winner {
	margin-top: 24px;
	padding: 20px;
	border: 1px solid var(--line-light);
	border-radius: 8px;
}
.event-comments {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--line-light);
}
.event-comments h4 {
	font-size: 16px;
	font-weight: 800;
}
.event-comment-form {
	display: flex;
	gap: 8px;
	margin-top: 12px;
}
.event-comment-form textarea {
	flex: 1;
	min-height: 56px;
	padding: 10px 12px;
	border: 1px solid var(--line-light);
	border-radius: 8px;
	resize: vertical;
}
.event-comment-login {
	margin-top: 12px;
	font-size: 14px;
}
.event-comment-login a {
	color: var(--color-primary);
	font-weight: 700;
}
.event-comment-list li {
	padding: 14px 0;
	border-bottom: 1px solid var(--line-light);
}
.event-comment-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
}
.event-comment-meta time {
	color: var(--txt-light);
}
.event-comment-meta button {
	font-size: 12px;
	color: var(--txt-light);
	text-decoration: underline;
}
.event-comment-list p {
	margin-top: 6px;
	font-size: 14px;
	white-space: pre-line;
}
/* 공지 목록 DataTables serverSide — DT 기본 CSS 는 미로드(퍼블리셔 디자인과 충돌),
   페이저만 퍼블리셔 .pagination(style.css) 디자인 미러. 다른 게시판형 화면도 이 규약 공유. */
.news-search .material-symbols-outlined {
	cursor: pointer;
}
.dt-container .dt-paging {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 46px;
}
.dt-paging .dt-paging-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 800;
	color: var(--txt-basic);
	cursor: pointer;
}
.dt-paging .dt-paging-button.current {
	background: var(--color-primary);
	color: #fff;
}
.dt-paging .dt-paging-button:hover:not(.current):not(.disabled) {
	background-color: var(--color-white-primary);
	color: var(--color-primary);
}
.dt-paging .dt-paging-button:hover:not(.current):not(.disabled) .material-symbols-outlined {
	color: var(--color-primary);
}
.dt-paging .dt-paging-button.disabled {
	opacity: 0.35;
	cursor: default;
}
.dt-paging .dt-paging-button .material-symbols-outlined {
	font-size: 22px;
	color: var(--txt-basic);
}
.dt-paging .ellipsis {
	color: var(--txt-light);
}
.news-table .dt-empty {
	padding: 40px 0;
	text-align: center;
	color: var(--txt-light);
}

.event-empty {
	padding: 40px 0;
	text-align: center;
	color: var(--txt-light);
}

/* [임시] V1 화면으로 가기 버튼 — 개발서버 검수용. v2 전환 완료 시 footer 프래그먼트의 .v1-return 블록과 함께 삭제 */
.v1-return {
	padding: 14px 0 22px;
	text-align: center;
	background: #000;
}
.v1-return a {
	display: inline-block;
	padding: 10px 24px;
	border: 2px solid #ffd400;
	border-radius: 6px;
	background: #000;
	color: #ffd400;
	font-size: 14px;
	font-weight: 800;
}
.v1-return a:hover {
	background: #ffd400;
	color: #000;
}

/* 학급운영 서브 롤링 배너(tz_main_banner type 6) — 등록 배너가 있을 때 목업 배경 위를 덮는 스와이퍼.
   컨테이너 라운드 상속·이미지 cover 크롭, 네비 버튼은 슬라이드 위로 */
.class-sub-banner .sub-banner-swiper {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	overflow: hidden;
}
.sub-banner-swiper .swiper-slide a,
.sub-banner-swiper .swiper-slide picture {
	display: block;
	width: 100%;
	height: 100%;
}
.sub-banner-swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.class-sub-banner .sub-banner-nav {
	z-index: 1;
}

/* 토스트(common.js v2Toast) — v1 toastr 룩 미러(색상값 toastr 기본), v2 바닐라 미니 구현.
   위치 = 가로 중앙·정중앙보다 살짝 위(top 40%, 2026-08-06 사용자 확정 — 우상단은 인지 어려움).
   viewport 기준이라 모바일 동일, 다건 시 아래로 쌓임 */
#v2ToastWrap {
	position: fixed;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 999999;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}
.v2-toast {
	min-width: 200px;
	max-width: min(320px, calc(100vw - 32px));
	text-align: center;
	padding: 12px 16px;
	border-radius: 4px;
	color: #fff;
	font-size: 14px;
	line-height: 1.5;
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
	opacity: 0;
	transition: opacity 0.25s;
}
.v2-toast.is-show {
	opacity: 0.95;
}
.v2-toast-success { background: #51a351; }
.v2-toast-warning { background: #f89406; }
.v2-toast-error { background: #bd362f; }
.v2-toast-info { background: #2f96b4; }

/* 로그인 확인 레이어(fragments/footer #loginCheckModal) — archive-modal 재사용, 본문 문구만 보정 */
.login-check-modal .archive-dialog {
	max-width: 400px;
}
/* [서비스 수정 2026-08-18] 확인형(문구+버튼) 모달 폭 규칙 — 전부 400 통일(사용자 확정).
   문구는 한 줄이 원칙, 길면 온점에서 <br/> 두 줄 — 400 을 넘길 문장은 문장을 고친다 */
.storage-contents-delete-modal .archive-dialog {
	max-width: 400px;
}
.login-check-msg {
	padding: 12px 4px 8px;
	font-size: 18px; /* 고객층 가독성 배려(2026-08-06) — 제목(24px)보다는 작게 */
	font-weight: 500;
	line-height: 1.7;
	text-align: center;
}

/* 서비스 정책 */
.policy-page {
	padding: 52px 0 90px;
}
.policy-section {
	margin-top: 40px;
}
.policy-version-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
}
.policy-version {
	margin: 0;
	font-size: 24px;
	line-height: 32px;
	font-weight: 800;
	color: var(--txt-dark);
}
.policy-external-btn {
	flex-shrink: 0;
	height: 52px;
	padding: 0 22px 0 26px;
	border-color: #ffb295;
	background: #fff4ef;
	font-size: 18px;
	font-weight: 800;
	color: var(--txt-basic);
}
.policy-external-btn:hover {
	border-color: var(--color-primary);
	background: #ffe9df;
	color: var(--color-primary);
}
.policy-external-btn .material-symbols-outlined {
	font-size: 24px;
	color: currentColor;
}
.policy-index-box {
	padding: 24px;
	border: 1px solid #cccccc;
	border-radius: 12px;
	background: #fff;
}
.policy-index-box h3 {
	font-size: 20px;
	line-height: 24px;
	font-weight: 800;
	color: var(--txt-dark);
}
.policy-index-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	margin-top: 24px;
}
.policy-index-list > div {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}
.policy-index-list a {
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
	color: var(--txt-normal);
}
.policy-index-list a:hover {
	color: var(--color-primary);
}
.policy-intro {
	margin: 0 0 24px;
	font-size: 14px;
	font-weight: 500;
	line-height: 24px;
	color: var(--txt-basic);
}
.policy-index-list.is-privacy {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.privacy-summary-cards {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	margin: 60px 0 60px;
}
.privacy-summary-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
	color: var(--txt-basic);
}
.privacy-summary-icon {
	width: 80px;
	height: 80px;
	border: 3px solid #ccc;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 38px;
	color: #666;
	background: #fff;
}
.privacy-summary-card img {
	width: 82px;
	height: 89px;
	object-fit: contain;
}
.privacy-summary-card strong {
	font-size: 16px;
	line-height: 20px;
	font-weight: 800;
	color: var(--txt-dark);
}
.privacy-summary-card p {
	margin: 0;
	font-size: 14px;
	line-height: 18px;
	font-weight: 500;
	color: var(--txt-light);
}
.policy-content {
	display: flex;
	flex-direction: column;
	gap: 60px;
	margin-top: 60px;
	color: var(--txt-basic);
}
.policy-chapter {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.policy-chapter-title {
	margin: 0;
	font-size: 20px;
	line-height: 24px;
	font-weight: 800;
	color: var(--txt-dark);
}
.policy-article {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.policy-article h4,
.policy-content h5 {
	margin: 0;
	font-size: 16px;
	line-height: 24px;
	font-weight: 800;
	color: var(--txt-dark);
}
.policy-article p,
.policy-addendum p {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 24px;
	color: var(--txt-basic);
	white-space: pre-line;
}
.policy-content ul,
.policy-content ol {
	margin-top: 10px;
	padding-left: 16px;
}
.policy-content li {
	list-style: none; /* [서비스 수정] DB 약관 본문의 중첩 리스트 — 상위 li 마커 제거 */
	margin-top: 6px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.8;
	color: var(--txt-basic);
}
.policy-content li:not(:has(ul, ol)) {
	list-style: disc; /* [서비스 수정] 최하위(중첩 리스트 없는) li에만 disc */
}
.policy-content dl {
	display: flex;
	gap: 6px;
	margin-top: 8px;
	font-size: 14px;
	font-weight: 700;
	color: var(--txt-basic);
}
.policy-content img {
	max-width: 100%;
	height: auto;
}
.policy-content table {
	width: 100%;
	min-width: 680px;
	margin: 14px 0;
	border-collapse: collapse;
	font-size: 13px;
	line-height: 20px;
	color: var(--txt-basic);
}
.policy-content th,
.policy-content td {
	padding: 10px 12px;
	border: 1px solid #dddddd;
	text-align: center;
	vertical-align: middle;
}
.policy-content th {
	background: #eeeeee;
	font-weight: 800;
	color: var(--txt-dark);
}
.policy-content tbody th {
	background: #fff;
	font-weight: 500;
	color: var(--txt-basic);
}
.policy-content td {
	font-weight: 500;
	background: #fff;
}
.policy-table-wrap {
	overflow-x: auto;
	margin: 14px 0;
}
.policy-table {
	width: 100%;
	min-width: 680px;
	border-collapse: collapse;
	font-size: 13px;
	line-height: 20px;
	color: var(--txt-basic);
}
.policy-table caption {
	overflow: hidden;
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	clip: rect(0, 0, 0, 0);
}
.policy-table th,
.policy-table td {
	padding: 10px 12px;
	border: 1px solid #dddddd;
	text-align: center;
	vertical-align: middle;
}
.policy-table th {
	background: #eeeeee;
	font-weight: 800;
	color: var(--txt-dark);
}
.policy-table tbody th {
	background: #fff;
	font-weight: 500;
	color: var(--txt-basic);
}
.policy-table td {
	font-weight: 500;
	background: #fff;
}
.policy-link-row {
	display: flex;
	justify-content: center;
	margin-top: 56px;
}
.policy-history-link {
	align-self: flex-start;
	padding: 4px 12px;
	border: 1px solid #aaaaaa;
	border-radius: 6px;
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
	color: var(--txt-normal);
}
.policy-history-link:hover {
	border-color: var(--color-primary);
	color: var(--color-primary);
}

@media (max-width: 1199px) {
	.policy-page {
		padding-top: 40px;
	}

	.policy-version-row {
		align-items: flex-start;
	}

	.policy-index-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.privacy-summary-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px 20px;
	}
}

@media (max-width: 767px) {
	.policy-page {
		padding: 28px 0 44px;
	}

	.policy-section {
		margin-top: 30px;
	}

	.policy-version-row {
		flex-direction: column;
		gap: 14px;
		margin-bottom: 20px;
	}

	.policy-version {
		font-size: 20px;
		line-height: 28px;
	}

	.policy-external-btn {
		width: 100%;
		height: 48px;
		padding: 0 16px;
		font-size: 16px;
	}

	.policy-index-box {
		padding: 20px;
		border-radius: 0;
		margin-left: -20px;
		margin-right: -20px;
	}

	.policy-index-list {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.policy-index-list.is-privacy {
		grid-template-columns: 1fr;
	}

	.policy-index-list > div {
		gap: 6px;
	}

	.privacy-summary-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px 12px;
		margin: 34px 0 44px;
	}

	.privacy-summary-icon {
		width: 48px;
		height: 48px;
		font-size: 26px;
	}

	.policy-table-wrap {
		margin-left: -20px;
		margin-right: -20px;
		padding: 0 20px;
	}

	.policy-content {
		gap: 44px;
		margin-top: 44px;
	}

	.policy-chapter {
		gap: 30px;
	}

	.policy-chapter-title {
		font-size: 18px;
		line-height: 24px;
	}

	.policy-article h4,
	.policy-content h5 {
		font-size: 16px;
	}

	.policy-article p,
	.policy-addendum p,
	.policy-content li,
	.policy-content dl {
		font-size: 14px;
		line-height: 24px;
	}
}

/* [서비스 수정 2026-08-07] 학급 목록 데이터 연동 — 스켈레톤·더보기·빈 상태 */
.thumb-card.is-skeleton {
	pointer-events: none;
}
.thumb-card.is-skeleton .thumb-img,
.thumb-card.is-skeleton .sk-line {
	background: #f1f1f1;
	animation: v2SkeletonPulse 1.2s ease-in-out infinite;
}
.thumb-card.is-skeleton .sk-line {
	height: 16px;
	border-radius: 4px;
	margin-top: 12px;
}
.thumb-card.is-skeleton .sk-line.short {
	width: 40%;
	height: 12px;
	margin-top: 8px;
}
@keyframes v2SkeletonPulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.55; }
}
.list-more-wrap {
	margin-top: 40px;
	text-align: center;
}
.list-more-wrap .btn[hidden] {
	display: none !important; /* .btn 의 inline-flex 가 hidden 속성(UA display:none)을 덮는 것 방지 */
}
.list-empty {
	margin: 80px 0;
	text-align: center;
	font-size: 16px;
	color: var(--txt-light);
}
