input[type=checkbox]:checked+label {
    background: none;
}

:root {
    --color-primary: #163FC5;
    --color-red: #E83534;
    --color-dark: #1D2025;
    --color-gray-700: #333842;
    --color-gray-500: #454C59;
    --color-gray-400: #545D6D;
    --color-gray-300: #667085;
    --color-gray-200: #7D879B;
    --color-gray-100: #99A2B2;
    --color-border: #DFE2E7;
    --color-border-light: #C6CFDC;
    --color-bg-light: #F3F5F7;
    --color-blue-live: #1DACFF;
    --color-green-bg: #DCFBDA;
    --color-green-text: #1A9711;
    --color-star: #FFC251;
    --color-secondary-blue: #2094EE;
    --color-chip-active-border: #2094EE;
    --color-chip-active-text: #1082DA;
    --font: 'Pretendard', sans-serif;
}


/* =============================================
   WRAPPER
   ============================================= */
.lateListRn {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* =============================================
   HERO SECTION  (PC)
   ============================================= */
.lateListRn .hero {
    width: 100%;
    height: 265px;
    position: relative;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
}

.lateListRn .hero-content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1100px;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 90px;
    background: url(/assets/img/live/list/pcTopBg.png) no-repeat right center;
}

.lateListRn .hero-sub {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-gray-700);
    letter-spacing: -0.02em;
}

.lateListRn .hero-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: -0.03em;
    line-height: 1.4;
}

.lateListRn .hero-title span {
    color: var(--color-primary);
}

/* 우측 배지 이미지 영역 */
.lateListRn .hero-badge-img {
    position: absolute;
    right: calc(50% - 560px);
    top: 24px;
    width: 170px;
    height: 170px;
}

/* 배지 카드 */
.lateListRn .badge-card {
    position: relative;
    width: 140px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 12px 16px;
    gap: 10px;
    margin: 20px auto 0;
}

/* 배지 상단 끈 */
.lateListRn .badge-card::before {
    content: '';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: #c8ced8;
}

.lateListRn .badge-card::after {
    content: '';
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c8ced8;
}

.lateListRn .badge-text {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
    text-align: center;
    letter-spacing: -0.02em;
    line-height: 1.4;
}

.lateListRn .badge-person {
    width: 56px;
    height: 56px;
    background: linear-gradient(180deg, #d0dcea 0%, #a8bfd4 100%);
    border-radius: 50%;
    border: 3px solid #e8eef5;
}

/* 컨페티 점들 */
.lateListRn .hero-confetti {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
}

.lateListRn .confetti-dot {
    position: absolute;
    border-radius: 50%;
}

/* TAB */
.lateListRn .hero-tab {
    transform: translateX(-50%);
    width: 1100px;
    /* bottom: 20px; */
    display: flex;
    align-items: center;
    /* Figma: F3F5F7 배경, borderRadius 90px, padding 6px 8px, gap 6px */
    background: #F3F5F7;
    border-radius: 90px;
    padding: 6px 8px;
    gap: 6px;
    width: fit-content;
    transform: none;
    margin-top: 20px;
}

.lateListRn .hero-tab-item {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Figma: padding 9px 16px, borderRadius 90px */
    padding: 9px 16px;
    border-radius: 28px;
    font-size: 14px;
    font-weight: 400;
    color: #2F3642;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s, box-shadow 0.15s, color 0.15s;
    letter-spacing: -0.02em;
    line-height: 1.5;
    background: transparent;
}

.lateListRn .hero-tab-item.active {
    /* Figma: fill white, boxShadow 0px 1px 3px rgba(26,33,74,0.5), borderRadius 28px */
    background: #FFFFFF;
    color: #21252B;
    font-weight: 700;
    box-shadow: 0px 1px 3px 0px rgba(26, 33, 74, 0.5);
}

/* =============================================
   MO HERO
   ============================================= */
.lateListRn .hero-mo {
    display: none;
    width: 100%;
    background: linear-gradient(180deg, #F4F8FF 0%, #fff 100%);
    padding: 32px 20px 0;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    background: url(/assets/img/live/list/moTopBg.png) no-repeat right top;
}

.lateListRn .hero-mo-sub {
    font-size: 13px;
    font-weight: 400;
    color: var(--color-gray-700);
    letter-spacing: -0.02em;
}

.lateListRn .hero-mo-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: -0.03em;
    line-height: 1.4;
    margin-top: 4px;
}

.lateListRn .hero-mo-title span {
    color: var(--color-primary);
}

.lateListRn .hero-mo-badge {
    position: absolute;
    right: 16px;
    top: 20px;
    width: 100px;
}

.lateListRn .hero-mo-badge .badge-card {
    width: 90px;
    padding: 10px 8px 12px;
    gap: 6px;
}

.lateListRn .hero-mo-badge .badge-text {
    font-size: 11px;
}

.lateListRn .hero-mo-badge .badge-person {
    width: 38px;
    height: 38px;
}

/* MO TAB */
.lateListRn .hero-mo-tab {
    display: flex;
    margin-top: 20px;
    padding-bottom: 0;
    gap: 6px;
    background: #F3F5F7;
    border-radius: 90px;
    padding: 6px 8px;
    width: fit-content;
    align-self: flex-start;
}

.lateListRn .hero-mo-tab-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 28px;
    font-size: 12px;
    cursor: pointer;
    color: #2F3642;
    font-weight: 400;
    white-space: nowrap;
    transition: background 0.15s, box-shadow 0.15s;
    letter-spacing: -0.02em;
    background: transparent;
}

.lateListRn .hero-mo-tab-item.active {
    background: #FFFFFF;
    color: #21252B;
    font-weight: 700;
    box-shadow: 0px 1px 3px 0px rgba(26, 33, 74, 0.5);
}

/* =============================================
   FEATURED CARD  (독점 LIVE)  node: 6759-24243
   전체: width 1070, #0F0F0F, row, padding 24px 24px 24px 36px, gap=space-between
   ============================================= */
.lateListRn .featured-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-top: 20px;
}

.lateListRn .featured-card {
    /* Figma: width 1070, padding 24px 24px 24px 36px, row, space-between */
    width: 1010px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 24px 36px;
    background: #0F0F0F;
    border-radius: 20px;
    align-items: flex-start;
}

/* 왼쪽 텍스트 영역: column, center, gap 4px, padding-top 14px */
.lateListRn .featured-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding-top: 14px;
    flex-shrink: 0;
}

/* "놓치지 마세요!": SemiBold 16, #CED2DA, -3% */
.lateListRn .featured-label-small {
    font-size: 16px;
    font-weight: 600;
    color: #CED2DA;
    letter-spacing: -0.03em;
    line-height: 1.5;
}

/* column gap 8px wrapper */
.lateListRn .featured-label-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* "지금만 볼 수 있는": Bold 24, #F9F9FA, -3% */
.lateListRn .featured-label-mid {
    font-size: 24px;
    font-weight: 700;
    color: #F9F9FA;
    letter-spacing: -0.03em;
    line-height: 1.5;
}

/* 독점 LIVE 행: row, center, gap 6px, width 178 height 28 */
.lateListRn .featured-badge-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    width: 178px;
    height: 28px;
}

/* 불꽃 아이콘 원: width 28, height 28, #E83534, borderRadius 60px */
.lateListRn .featured-icon-play {
    width: 28px;
    height: 28px;
    background: #E83534;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* "독점": ExtraBold 28, #E83534, -3%, lineHeight 100% */
.lateListRn .featured-badge-text {
    font-size: 28px;
    font-weight: 800;
    color: #E83534;
    letter-spacing: -0.03em;
    line-height: 1;
}

/* LIVE 텍스트 SVG 영역: width 64.73 height 23 — 텍스트로 대체 */
.lateListRn .featured-live-tag {
    font-size: 34px;
    font-weight: 800;
    color: #E83534;
    letter-spacing: 0.04em;
    line-height: 1;
}

/* 오른쪽 강의카드 컨테이너: width 724, column, center, gap 14px */
.lateListRn .featured-right {
    width: 724px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

/* 강의카드: row, center, gap 26px, padding 20px, fill, shadow, borderRadius 12 */
.lateListRn .featured-right-card {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    gap: 26px;
    padding: 20px;
    background: #FFFFFF;
    border: 1px solid #F3F5F7;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.09);
    border-radius: 12px;
}

/* 썸네일: width 302, height 170, borderRadius 8, border #E8EAEE */
.lateListRn .featured-thumb {
    width: 302px;
    height: 170px;
    background: #D7D7D7;
    border-radius: 8px;
    border: 1px solid #E8EAEE;
    overflow: hidden;
    flex-shrink: 0;
}

.lateListRn .featured-thumb-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #dce4f0 0%, #b8ccde 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 정보영역: column, center, gap 10px, width 356, height 161 */
.lateListRn .featured-info {
    width: 356px;
    /* height: 161px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    flex-shrink: 0;
}

/* 태그 행: row, gap 7px */
.lateListRn .featured-tags {
    display: flex;
    flex-direction: row;
    gap: 7px;
    align-items: center;
}

.lateListRn .tag {
    font-size: 11px;
}

/* 공통 태그: row, center, padding 1px 4px, borderRadius 4px */
.lateListRn .tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1px 4px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

/* 수강중 태그: #1DACFF bg, white text */
.lateListRn .tag-live-count {
    background: #1DACFF;
    color: #FFFFFF;
    font-weight: 600;
}

/* 카테고리 태그: #F3F5F7 bg, #333842 text, Medium */
.lateListRn .tag-cat {
    background: #F3F5F7;
    color: #333842;
    font-weight: 500;
}

/* 제목: Bold 16, #1D2025, fill width, -3% */
.lateListRn .featured-title {
    font-size: 16px;
    font-weight: 700;
    color: #1D2025;
    letter-spacing: -0.03em;
    line-height: 1.5;
}

/* 날짜/별점 컨테이너: column, stretch, gap 6px, padding-bottom 8px */
.lateListRn .featured-meta {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 6px;
    padding-bottom: 8px;
}

/* 날짜: Regular 12, #545D6D, -1% */
.lateListRn .featured-meta-date {
    font-size: 12px;
    font-weight: 400;
    color: #545D6D;
    letter-spacing: -0.01em;
    line-height: 1.5;
}

/* 별점 행: row, center, fill, gap 4px */
.lateListRn .star-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: stretch;
    gap: 4px;
}

/* 별 아이콘: #FFBB00 */
.lateListRn .star-filled {
    color: #FFBB00;
    font-size: 13px;
}

/* 별점 텍스트: Regular 12, #7D879B, -2%, lineHeight 100% */
.lateListRn .star-text {
    font-size: 12px;
    font-weight: 400;
    color: #7D879B;
    letter-spacing: -0.02em;
    line-height: 1;
}

/* 버튼: row, center, fill, padding 10px 20px, #163FC5, borderRadius 8 */
.lateListRn .btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    padding: 10px 20px;
    background: #163FC5;
    color: #FFFFFF;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.5;
    cursor: pointer;
    border: none;
    font-family: var(--font);
}

.lateListRn .btn-primary:hover {
    background: #122fb0;
}

/* =============================================
   LIST OUTER WRAPPER
   ============================================= */
.lateListRn .list-outer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 42px 0 0;
}

.lateListRn .list-section {
    width: 1070px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ---- Title & Search ---- */
.lateListRn .list-header {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    width: 100%;
    margin-bottom: 20px;
}

.lateListRn .list-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: -0.03em;
}

.lateListRn .search-box {
    display: flex;
    align-items: center;
    width: 240px;
    padding: 6px 12px 6px 0px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    gap: 8px;
    background: #fff;
}

.lateListRn .search-box input {
    height: 24px;
    flex: 1;
    border: none;
    outline: none;
    font-size: 13px;
    color: var(--color-dark);
    font-family: var(--font);
    letter-spacing: -0.02em;
}

.lateListRn .search-box input::placeholder {
    color: var(--color-gray-200);
}

.lateListRn .search-icon {
    display: flex;
    align-items: center;
    cursor: pointer;
}

/* =============================================
   FILTER BAR  (리스트 상단 고정, non-sticky)
   ============================================= */
.lateListRn .filter-bar {
    width: 1028px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    /* sticky 제거 — 리스트 상단에 그냥 위치 */
}

.lateListRn .filter-row {
    display: flex;
    align-items: center;
}

.lateListRn .filter-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-gray-500);
    letter-spacing: -0.01em;
    width: 72px;
    flex-shrink: 0;
    line-height: 30px;
}

.lateListRn .filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

.lateListRn .filter-chips input[type="radio"] {
    display: none;
}

.lateListRn .filter-chips label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0px 10px;
    height: 30px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--color-border);
    font-size: 12px;
    font-weight: 500;
    color: var(--color-gray-500);
    letter-spacing: -0.02em;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
    white-space: nowrap;
    line-height: 1;
    user-select: none;
    width: auto;
}

.lateListRn .filter-chips label:hover {
    border-color: var(--color-chip-active-border);
    color: var(--color-chip-active-text);
}

.lateListRn .filter-chips label .chip-check {
    display: none;
    width: 10px;
    height: 7px;
    flex-shrink: 0;
}

.lateListRn .filter-chips input[type="checkbox"]:checked+label {
    border-color: var(--color-chip-active-border);
    color: var(--color-chip-active-text);
    font-weight: 600;
    width: auto;
}

.lateListRn .filter-chips input[type="checkbox"]:checked+label .chip-check {
    display: inline-block;
    width: auto;
}

/* =============================================
   TOOLBAR
   ============================================= */
.lateListRn .list-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2px;
    margin-bottom: 16px;
}

.lateListRn .list-count {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-gray-500);
}

.lateListRn .list-sort {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.lateListRn .list-sort span {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-gray-500);
}

.lateListRn .sort-icon {
    display: flex;
    flex-direction: column;
    gap: 2.5px;
}

.lateListRn .sort-bar {
    height: 2px;
    background: var(--color-gray-400);
    border-radius: 1px;
}

.lateListRn .sort-bar:nth-child(1) {
    width: 14px;
}

.lateListRn .sort-bar:nth-child(2) {
    width: 10px;
}

.lateListRn .sort-bar:nth-child(3) {
    width: 7px;
}

/* =============================================
   LECTURE GRID  (4열)
   ============================================= */
.lateListRn .lecture-grid {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
    width: 100%;
}

.lateListRn .lecture-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
    width: 245px;
}

.lateListRn .lecture-card:hover .lecture-thumb-inner {
    opacity: 0.88;
}

.lateListRn .lecture-thumb {
    width: 245px;
    aspect-ratio: 16/9;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    background: #D7D7D7;
}

.lateListRn .lecture-thumb img {
    width: 100%;
}

.lateListRn .lecture-thumb-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e4ea 0%, #c8ced8 100%);
    transition: opacity 0.2s;
}

.lateListRn .lecture-body {
    display: flex;
    flex-direction: column;
    gap: 5px;
    /* margin-top: 10px; */
}

.lateListRn .lecture-cat-text {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-gray-300);
    letter-spacing: -0.01em;
}

.lateListRn .lecture-name {
    font-size: 14px;
    font-weight: 500;
    color: #1E1E1E;
    letter-spacing: -0.02em;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 3px;
}

.lateListRn .lecture-instructor {
    font-size: 12px;
    color: var(--color-gray-300);
}

.lateListRn .lecture-date-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
}

._null_data {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding-top: 50px;
    width: 100%;
}

.lateListRn .lecture-date {
    font-size: 11px;
    color: var(--color-gray-400);
}

.lateListRn .lecture-rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.lateListRn .lecture-star {
    font-size: 11px;
    color: var(--color-star);
}

.lateListRn .lecture-rating-text {
    font-size: 11px;
    color: var(--color-gray-300);
}

.lateListRn .status-chip {
    display: inline-flex;
    align-items: center;
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.5;
    width: fit-content;
}

.lateListRn .status-live {
    background: var(--color-red);
    color: #fff;
}

.lateListRn .status-upcoming {
    background: var(--color-green-bg);
    color: var(--color-green-text);
}

.lateListRn .status-ended {
    background: var(--color-bg-light);
    color: var(--color-gray-400);
}

/* =============================================
   BOTTOM BANNER  (독점 LIVE 블랙 배너)
   ============================================= */
.lateListRn .bottom-banner {
    width: calc(100% - 40px);
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 36px;
    gap: 6px;
    position: relative;
    min-height: 160px;
    overflow: hidden;
}

.lateListRn .bottom-banner-sub {
    font-size: 14px;
    font-weight: 400;
    color: #CED2DA;
    letter-spacing: -0.02em;
    text-align: center;
}

.lateListRn .bottom-banner-mid {
    font-size: 22px;
    font-weight: 400;
    color: #F9F9FA;
    letter-spacing: -0.03em;
    text-align: center;
}

.lateListRn .bottom-banner-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}

.lateListRn .bottom-banner-play {
    width: 30px;
    height: 30px;
    background: var(--color-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lateListRn .bottom-banner-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-red);
    letter-spacing: -0.03em;
}

.lateListRn .bottom-banner-live {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-red);
    letter-spacing: 0.05em;
}

/* 배너 슬라이더 화살표 */
.lateListRn .banner-nav {
    display: flex;
    gap: 6px;
    margin-top: 16px;
}

.lateListRn .banner-nav-btn {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s;
}

.lateListRn .banner-nav-btn:hover {
    background: #3a3a3a;
}



/* Loading */
.keyListLodingDiv {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    z-index: 99999;
}

.logindBgDiv {
    width: 100%;
    height: 100%;
    background: url('/data/img/icon/loading/loading_img.png') no-repeat center center;
    display: inline-block;
}

.logindCnDiv {
    width: 184px;
    height: 184px;
    display: inline-block;
    position: absolute;
    top: calc(50% - 92px);
    left: calc(50% - 92px);
}

.loginGifImg {
    margin-top: 69px;
}


/* 페이지 number */
.pagenation {
    position: relative;
    height: 24px;
    margin-bottom: 120px;
    width: 1100px;
}

.pagenation>div {
    /* position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%); */
}

.pagenation>div>* {
    float: left;
}

.pagenation>div .prev {
    margin-right: 24px;
}

.pagenation>div .next {
    margin-left: 24px;
}

.pagenation>div>ul>li {
    float: left;
    margin-right: 24px;
}

.pagenation>div>ul>li:last-child {
    margin-right: 0;
}

.pagenation>div>ul>li>a {
    font-family: "Arial", sans-serif;
    font-size: 15px;
    /*line-height: 2.8;*/
    letter-spacing: -0.45px;
    color: #444444;
}

.pagenation>div>ul>li.on>a {
    text-decoration: underline;
    font-weight: bold;
    color: #505ed1;
}

.pagiwrap .pagination {
    margin-top: 0;
}

.pagination {
    width: 100%;
    height: 40px;
    overflow: hidden;
    text-align: center;
    position: relative;
}

.pagination.type2 {
    overflow: visible;
}

.pagination .paging {
    display: inline-block;
    zoom: 1;
}

.pagination .paging>a {
    display: block;
    width: 20px;
    height: 40px;
    margin-left: 5px;
    float: left;
    font-size: 16px;
    line-height: 30px;
    color: #000;
}

.pagination .paging .page_first {
    background: url("/assets/img/classList/pagging/LL.svg") center center no-repeat;
    width: 36px;
    height: 36px;
    margin-left: 5px;
}

.pagination .paging .page_prev {
    background: url("/assets/img/classList/pagging/L.svg") center center no-repeat;
    width: 36px;
    height: 36px;
    margin-left: 5px;
}

.pagination .paging .page_next {
    background: url("/assets/img/classList/pagging/R.svg") center center no-repeat;
    width: 36px;
    height: 36px;
    margin-left: 5px;
}

.pagination .paging .page_last {
    background: url("/assets/img/classList/pagging/RR.svg") center center no-repeat;
    width: 36px;
    height: 36px;
}

.pagination .paging .page {
    display: block;
    float: left;
    padding: 0 0px;
    height: 40px;
}

.pagination .paging .page a {
    display: block;
    float: left;
    width: 36px;
    height: 36px;
    font-size: 15px;
    line-height: 12px;
    text-align: center;
    border: 1px solid #C3CBD5;
    border-radius: 8px;
    color: #303740;
    margin-left: 5px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .paging .page a.active {
    border: 1px solid #2094EE;
    background-color: #2094EE;
    color: white !important;
    font-weight: bold;
    text-decoration: none !important;
    cursor: pointer;
}

.pagenation .page .active span {
    color: white !important;
}

.list-sort {
    position: relative;
    display: inline-block;
}

.sort-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 0;
    background: none;
    cursor: pointer;
    padding: 0;
}

.sort-text {
    font-size: 15px;
    color: #222;
}

.sort-icon {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sort-bar {
    width: 14px;
    height: 2px;
    background: #222;
    border-radius: 2px;
}

/* 드롭다운 */
.sort-list {
    display: none;
    position: absolute;
    top: 32px;
    right: 0;
    min-width: 140px;
    padding: 8px 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

.sort-list.active {
    display: block;
}

.sort-list li {
    padding: 10px 16px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    list-style: none;
    transition: background 0.2s;
}

.sort-list li:hover {
    background: #f5f5f5;
}



.rowOneSlick {
    position: relative;
}

.rowOneSlick .slick-slide {
    margin: 0 10px;
    opacity: 0.5;
}

.rowOneSlick .slick-slide.slick-center {
    opacity: 1;
}

.rowOneSlick .slick-next {
    width: 70px;
    height: 70px;
    background: url('/assets/data/img/promotion/FreePass0Rn/10/btn_R.png') no-repeat !important;
    position: absolute;
    top: 260px;
    left: calc(50% + 300px);
    z-index: 1;
    font-size: 0;
}

.rowOneSlick .slick-prev {
    width: 70px;
    height: 70px;
    background: url('/assets/data/img/promotion/FreePass0Rn/10/btn_L.png') no-repeat !important;
    position: absolute;
    top: 260px;
    right: calc(50% + 300px);
    z-index: 1;
    font-size: 0;
}

.colArea {
    display: flex;
    flex-direction: column;
}


.moFilterBar {
    display: none;
}


#bottomModal_job,
#bottomModal_lec {
    display: none;
}


/* 모달 헤더 */
.bottomModal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border-bottom: 1px solid #eee; */
    padding: 24px 24px 12px 24px;
}

.bottomModal .modal-header .title {
    font-weight: bold;
    font-size: 16px;
    color: #66768F;
}

.bottomModal .modal-header .closeBtn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.bottomModal .modal-header .closeBtns {
    cursor: pointer;
}

.LCML_LIST .loading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: 200px;
    width: 100%;
}

.LCML_LIST .loading span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #505ED1;
    animation: lcmlDotAni 0.6s infinite alternate;
}

.LCML_LIST .loading span:nth-child(2) {
    animation-delay: 0.2s;
}

.LCML_LIST .loading span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes lcmlDotAni {
    from {
        opacity: 0.3;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(-6px);
    }
}

/* =============================================
   MOBILE  ≤768px
   ============================================= */
@media screen and (max-width: 768px) {

    .moFilterBar {
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
    }

    .resetIcon {
        cursor: pointer;
    }

    .boxDownIcon_gray {
        cursor: pointer;
        display: flex;
        padding: 4px 28px 4px 8px;
        border: 1px solid #c6cfdc;
        border-radius: 8px;
        background: #fff url(/assets/img/core/components/input/selectBox_s_arrow1.svg) right 10px center no-repeat;
        font-size: 13px;
        line-height: 13px;
        font-weight: 400;
        color: #8898AF;
        align-items: center;
        height: 24px;
        width: calc(50% - 65px);
    }

    /* Hero */
    .lateListRn .hero {
        display: none;
    }

    .lateListRn .hero-mo {
        min-height: auto;
    }


    .lateListRn .hero-mo {
        display: block;
        padding: 40px 20px 30px;
        width: calc(100% - 40px);
    }

    /* Featured card → 세로 */
    .lateListRn .featured-wrap {
        margin-top: 0px;
        /* padding: 20px 16px; */
    }

    .lateListRn .featured-card {
        width: 100%;
        flex-direction: column;
        gap: 12px;
        padding: 20px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .lateListRn .featured-label-group {
        flex-direction: row;
    }

    .lateListRn .featured-label-small {
        font-size: 15px;
    }

    .lateListRn .featured-right {
        width: 100%;
    }

    .lateListRn .featured-right-card {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px;
    }

    .lateListRn .featured-badge-row{
        width: auto;
    }
    .lateListRn .featured-thumb {
        width: 100%;
        height: 160px;
    }

    .lateListRn .featured-info {
        width: 100%;
        height: auto;
        gap: 8px;
    }

    .lateListRn .featured-left {
        margin-top: 0px;
        padding-top: 0px;
    }

    .lateListRn .featured-live-tag {
        font-size: 24px;
    }

    .lateListRn .featured-label-mid {
        font-size: 20px;
    }

    .lateListRn .featured-icon-play {
        width: 20px;
        height: 20px;
    }

    .lateListRn .featured-badge-text {
        font-size: 20px;
    }

    .lateListRn .featured-title {
        font-size: 16px;
    }

    /* List outer */
    .lateListRn .list-outer {
        padding: 30px 0 0;
        width: calc(100% -40px);
    }

    .lateListRn .list-section {
        width: calc(100% - 32px);
        padding: 0 16px;
    }

    /* Header */
    .lateListRn .list-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 12px;
    }

    .lateListRn .list-title {
        font-size: 17px;
    }

    .lateListRn .search-box {
        width: calc(100% - 12px);
    }

    /* Filter bar */
    .lateListRn .filter-bar {
        display: none;
    }

    .lateListRn .filter-label {
        width: 56px;
        font-size: 11px;
    }

    .lateListRn .filter-chips {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 6px;
    }

    .lateListRn .filter-chips::-webkit-scrollbar {
        display: none;
    }

    .lateListRn .filter-chips label {
        font-size: 11px;
        height: 26px;
        padding: 4px 8px;
    }

    /* Grid → 2열 */
    .lateListRn .lecture-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 12px;
    }

    .lateListRn .lecture-name {
        font-size: 12px;
    }

    .lateListRn .lecture-cat-text,
    .lateListRn .lecture-instructor,
    .lateListRn .lecture-date {
        font-size: 10px;
    }

    /* Bottom banner */
    .lateListRn .bottom-banner {
        padding: 30px 20px 28px;
        min-height: 130px;
        /* margin-top: 40px; */
    }

    .lateListRn .bottom-banner-mid {
        font-size: 18px;
    }

    .lateListRn .bottom-banner-text {
        font-size: 22px;
    }

    /* Pagination */
    .lateListRn .page-btn.pc-only {
        display: none;
    }

    .lateListRn .pagination {
        padding: 32px 0 60px;
    }

    .colArea {
        flex-direction: column-reverse;
        width: 100%;
    }

    .lateListRn .lecture-card {
        width: calc(50% - 6px);
        gap: 0px;
        /* 세로 토탈 8 */
    }

    .lateListRn .lecture-thumb {
        width: 100%;
    }

    .lateListRn .lecture-date-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .pagination .paging .page a {
        width: 28px;
        height: 28px;
        line-height: 4px;
    }

    .pagination .paging .page_next,
    .pagination .paging .page_last,
    .pagination .paging .page_prev,
    .pagination .paging .page_first {
        width: 28px;
        height: 28px;
        border: 1px solid #C3CBD5;
        border-radius: 8px;

    }

    #modalOverlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        display: none;
        z-index: 998;
    }

    #bottomModal_job,
    #bottomModal_lec {
        position: fixed;
        left: 0;
        right: 0;
        bottom: -100%;
        min-height: 370px;
        max-height: 100%;
        display: flex;
        flex-direction: column;
        background: #fff;
        border-radius: 16px 16px 0 0;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        transition: bottom 0.3s ease-out;
        z-index: 999;
        /* padding: 16px 0px; */
    }

    .modal-bottom-depth2-box ._m_btns {
        flex-wrap: inherit;
    }

    .modal-list-job,
    .modal-list-lec {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .modal-list-job li,
    .modal-list-lec li {
        cursor: pointer;
        width: calc(50% - 44px);
        border: 1px solid #C6CFDC;
        color: #2F3642;
        font-size: 13px;
        font-weight: 400;
        padding: 13px 16px;
        border-radius: 8px;
        background: #fff url(/assets/img/classList/modal/dep2_uncheck.svg) right 16px center no-repeat;
    }

    #header-mo-modal-list_depth1 .modal-list-job li.active,
    #header-mo-modal-list_depth1 .modal-list-lec li.active {
        background: #F1F8FE;
        color: #1082DA;
        border: 1px solid #7FC2F5;
        background: #fff url(/assets/img/classList/modal/dep2_check.svg) right 16px center no-repeat;
    }

    .boxDownIcon_gray.active {
        color: #1082DA;
    }
}