@charset "utf-8";
/**
 * 인크루트 스타일 배너 시스템
 * 작성일: 2024년
 * 목적: 인크루트 디자인 기반 메인페이지 배너 표시
 * 참조: https://job.incruit.com/jobdb_list/searchjob.asp
 */

/* 통일된 색상 팔레트 - 비즈니스 라이너 스타일 */
:root {
    --incruit-primary: #002D5B;
    --incruit-secondary: #2C3E50;
    --incruit-background: #F8F9FA;
    --incruit-card-bg: #FFFFFF;
    --incruit-text-primary: #2C3E50;
    --incruit-text-secondary: #5A6C7D;
    --incruit-text-muted: #95A5A6;
    --incruit-border: #E9ECEF;
    --incruit-badge-bg: #E6EEF5;
    --incruit-shadow: 0 1px 2px rgba(0,0,0,0.04);
    --incruit-hover-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

/* 메인 배너 컨테이너 - 인크루트 스타일 */
.cPrdlists_wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-white);
    overflow-x: auto;
}

.cPrdlists_wrap_respon {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 인크루트 배너 섹션 스타일 */
.cPrdlists_rows {
    margin-bottom: 20px;
}

.cPrdlists_section {
    background: var(--bg-white);
    border-radius: 2px;
    border: none;
    overflow: hidden;
    margin-bottom: 20px;
}

.ver--2025 {
    border: 1px solid var(--border-light);
}

/* 인크루트 제목 스타일 - db_section 스타일 적용 */
.cPrdlists_title {
    font-size: var(--font-size-md);
    font-weight: 600;
    margin: 0;
    padding: 15px 20px;
    color: var(--text-primary);
    border-bottom: 1px dashed var(--accent);
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-info {
    font-size: var(--font-size-sm);
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.15s;
    padding: 6px 12px;
    border: 1px solid var(--primary);
    border-radius: 4px;
    background: var(--bg-white);
}

.product-info:hover {
    color: var(--bg-white);
    background: var(--primary);
    text-decoration: none;
    transform: translateY(-1px);
}

/* 배너 섹션 제목 아이콘 제거 */
.banner-section-title::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 18px;
    background: var(--primary);
    margin-right: 10px;
    border-radius: 2px;
}

/* 배너 섹션 제목 밑줄 */
.banner-section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--incruit-primary);
    border-radius: 0;
}

/* 인크루트 배너 그룹 컨테이너 */
.cPrdlists_rowsgrp {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    background: var(--bg-white);
}

/* 프레스티지 섹션 - 더 큰 그리드 */
.prestige .cPrdlists_rowsgrp {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

/* 슈프림 섹션 - 정확히 1행 5열 (최소 너비 200px 보장) */
.superior .cPrdlists_rowsgrp {
    display: grid;
    /* grid-template-columns: repeat(5, minmax(200px, 1fr)); */
    gap: 20px;
    overflow-x: auto; /* 너비가 부족하면 가로 스크롤 */
    min-width: 1040px; /* 5 * 200px + 4 * 20px(간격) */
}

/* 스페셜 섹션 - 정확히 1행 6열 (최소 너비 180px 보장) */
.superior_line .cPrdlists_rowsgrp {
    display: grid;
    grid-template-columns: repeat(6, minmax(180px, 1fr));
    gap: 15px;
    overflow-x: auto; /* 너비가 부족하면 가로 스크롤 */
    min-width: 1155px; /* 6 * 180px + 5 * 15px(간격) */
}

/* 인크루트 배너 카드 스타일 */
.cPrdlists_cols {
    background: var(--bg-white);
    border: 1px solid var(--border-default);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.15s;
    position: relative;
}

.cPrdlists_cols:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

/* Xbig 클래스 - 프레스티지 2x2 배너 (이미지 느낌) */
.cPrdlists_cols.Xbig {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, var(--primary), #d4551a);
    border: 1px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.cPrdlists_cols.Xbig::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(236, 101, 33, 0.8), rgba(212, 85, 26, 0.9));
    z-index: 1;
}

.cPrdlists_cols.Xbig .cPrdlists_box {
    position: relative;
    z-index: 2;
}

.cPrdlists_cols.Xbig .company-name,
.cPrdlists_cols.Xbig .job-title {
    color: white;
}

/* wide 클래스 - 프레스티지 1x2 배너 (이미지 느낌) */
.cPrdlists_cols.wide {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--primary), #d4551a);
    border: 1px solid var(--primary);
    max-height: 350px;
    position: relative;
    overflow: hidden;
}

.cPrdlists_cols.wide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(236, 101, 33, 0.7), rgba(212, 85, 26, 0.8));
    z-index: 1;
}

.cPrdlists_cols.wide .cPrdlists_box {
    position: relative;
    z-index: 2;
}

.cPrdlists_cols.wide .company-name,
.cPrdlists_cols.wide .job-title {
    color: white;
}

.cPrdlists_cols.normal {
    max-height: 350px;
}

.cPrdlists_cols.wide .cPrdlists_box {
    height: 100%;
}

.cPrdlists_cols.wide .company-info .company-name {
    font-size: var(--font-size-md);
    font-weight: 600;
    color: var(--primary);
}

.cPrdlists_cols.wide .new-btnJobApp {
    background: var(--primary);
    color: var(--bg-white);
    border: none;
    font-weight: 500;
    font-size: var(--font-size-sm);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
    padding: 8px 16px;
    border-radius: 4px;
}

.cPrdlists_cols.wide .new-btnJobApp:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* noble 클래스 - 슈페리어 프리미엄 배너 */
.cPrdlists_cols.noble {
    background: var(--bg-white);
    border-color: var(--primary);
}

.cPrdlists_cols.noble::before {
    content: "PREMIUM";
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 2px;
    z-index: 2;
    letter-spacing: 0.5px;
}

/* 인크루트 배너 박스 */
.cPrdlists_box {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cPrdlists_box_img {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: #f8f9fa;
    position: relative;
}

/* 프레스티지 배너 이미지 - 60% 비율 */
.prestige .cPrdlists_box_img {
    height: 60%; /* 전체 영역의 60% */
    /* min-height: 180px; */
}

/* 프레스티지 배너 박스 높이 조정 */
.prestige .cPrdlists_box {
    height: 100%;
}

.cPrdlists_box_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cPrdlists_cols:hover .cPrdlists_box_img img {
    transform: scale(1.05);
}

.cPrdlists_box_pos {
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.cPrdlists_box_text {
    padding: 0 10px 10px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

/* 인크루트 배지 스타일 */
.cPrdlists_box_pos_badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    margin-right: 6px;
    margin-bottom: 8px;
}

.cPrdlists_box_pos_badge.popular {
    background: #e3f2fd;
    color: #1976d2;
    border: 1px solid #90caf9;
}

.cPrdlists_box_pos_badge.bonus {
    background: #fff3e0;
    color: #f57c00;
    border: 1px solid #ffb74d;
}

.cPrdlists_box_pos_badge.welfare {
    background: #e8f5e8;
    color: #2e7d32;
    border: 1px solid #81c784;
}

.cPrdlists_box_pos_badge.active {
    background: #fce4ec;
    color: #c2185b;
    border: 1px solid #f06292;
}

/* 회사 정보 스타일 */
.company-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.company-logo {
    width: 48px;
    height: 48px;
    border-radius: 2px;
    overflow: hidden;
    background: var(--bg-light);
    border: 1px solid var(--border-default);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.company-logo-wide{
    width: 180px;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

/* 프레스티지 배너의 기업 로고 - 이미지 안에 위치 */
.prestige .company-logo {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
    margin-bottom: 0;
}

.company-logo img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.company-initial {
    background: var(--incruit-primary);
    color: white;
    font-weight: 700;
    font-size: 16px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.5px;
}

.company-name {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    line-height: 1.3;
}

.job-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 인크루트 버튼 스타일 */
.new-btnJobApp {
    display: inline-block;
    background: var(--incruit-primary);
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 2px;
    text-decoration: none;
    text-align: center;
    transition: all 0.15s;
    margin-top: auto;
    letter-spacing: -0.2px;
}

.new-btnJobApp:hover {
    background: #001A35;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: var(--incruit-hover-shadow);
}

.btnScraps {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-default);
    border-radius: 2px;
    background: white;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-muted);
    transition: all 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btnScraps:hover {
    border-color: var(--incruit-primary);
    color: var(--incruit-primary);
    background: var(--incruit-badge-bg);
}

.btnScraps::before {
    content: "♡";
}

.btnScraps.active::before {
    content: "♥";
    color: var(--incruit-primary);
}

/* 스페셜 배너 내용 - 인크루트 스타일 */
.special-banner-item .banner-content {
    font-size: 16px;
    font-weight: 500;
    color: var(--incruit-text-primary);
    line-height: 1.4;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}

/* 슈프림 배너 컨테이너 - 인크루트 로얄 스타일 */
.banner-supreme-container {
    display: grid;
    grid-template-columns: repeat(5, minmax(200px, 1fr));
    gap: 10px;
    overflow-x: auto;
    min-width: 1075px; /* 5 * 200px + 4 * 15px */
    padding: 5px;
}

/* 슈프림 배너 아이템 - 인크루트 프리미엄 카드 */
.supreme-banner-item {
    background: var(--incruit-card-bg);
    border: 1px solid var(--incruit-border);
    border-radius: 2px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.15s;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    position: relative;
}

/* 슈프림 배너 호버 효과 - 인크루트 스타일 */
.supreme-banner-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--incruit-hover-shadow);
    border-color: var(--incruit-primary);
}

/* 슈프림 프리미엄 뱃지 */
.supreme-banner-item::before {
    content: "PREMIUM";
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--incruit-primary);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 2px;
    letter-spacing: 0.5px;
}

/* 슈프림 배너 헤더 */
.supreme-banner-item .supreme-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-top: 20px; /* 프리미엄 뱃지 공간 확보 */
}

/* 슈프림 배너 로고 */
.supreme-banner-item .company-logo {
    width: 50px;
    height: 50px;
    border-radius: 2px;
    overflow: hidden;
    background: var(--bg-light);
    border: 1px solid var(--incruit-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* 슈프림 배너 로고 이미지 */
.supreme-banner-item .company-logo img {
    max-height: 85%;
    max-width: 85%;
    object-fit: contain;
}

/* 슈프림 배너 정보 */
.supreme-banner-item .supreme-info {
    flex: 1;
    min-width: 0;
}

/* 슈프림 배너 기업명 - 인크루트 스타일 */
.supreme-banner-item .company-name {
    font-weight: 600;
    font-size: 14px;
    margin: 0 0 4px 0;
    color: var(--incruit-text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 슈프림 배너 내용 - 인크루트 스타일 */
.supreme-banner-item .banner-content {
    font-size: 16px;
    font-weight: 500;
    color: var(--incruit-text-primary);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: auto;
    flex-grow: 1;
}

/* 퍼스트 배너 컨테이너 - 인크루트 스마트 스타일 */
.banner-first-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(250px, 1fr));
    gap: 10px;
    overflow-x: auto;
    padding: 5px;
    min-width: 1060px; /* 4 * 250px + 3 * 20px */
}

/* 퍼스트 배너 아이템 - 인크루트 스마트 카드 */
.first-banner-item {
    background: var(--incruit-card-bg);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    transition: all 0.15s;
    position: relative;
    border: 1px solid var(--incruit-border);
    height: auto;
    min-height: 280px;
}

/* 퍼스트 배너 사이즈 변형 */
.first-banner-item.size-1x2 {
    grid-column: span 2;
}

.first-banner-item.size-2x2 {
    grid-column: span 2;
    grid-row: span 2;
}

/* 퍼스트 배너 호버 효과 - 인크루트 스타일 */
.first-banner-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--incruit-hover-shadow);
    border-color: var(--incruit-primary);
}

/* 퍼스트 배너 이미지 */
.first-banner-item .banner-image {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: var(--bg-light);
}

/* 퍼스트 배너 이미지 내부 이미지 */
.first-banner-item .banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* 퍼스트 배너 이미지 호버 효과 */
.first-banner-item:hover .banner-image img {
    transform: scale(1.05);
}

/* 퍼스트 배너 기본 이미지 */
.first-banner-item .default-image {
    width: 100%;
    height: 100%;
    background: var(--incruit-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.first-banner-item .default-image::before {
    content: "🏢";
    filter: grayscale(0) brightness(1.2);
}

/* 퍼스트 배너 카드 본문 - 인크루트 스타일 */
.first-banner-item .card-body {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: var(--incruit-card-bg);
}

/* 퍼스트 배너 기업 정보 */
.first-banner-item .company-info {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    gap: 12px;
}

/* 퍼스트 배너 기업 로고 - 인크루트 스타일 */
.first-banner-item .company-logo {
    width: 40px;
    height: 40px;
    border-radius: 2px;
    overflow: hidden;
    background: var(--bg-light);
    border: 1px solid var(--incruit-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* 퍼스트 배너 기업 로고 이미지 */
.first-banner-item .company-logo img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

/* 퍼스트 배너 기업 로고 초기값 */
.first-banner-item .company-initial {
    width: 100%;
    height: 100%;
    background: var(--incruit-primary);
    color: white;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

/* 퍼스트 배너 기업 상세 */
.first-banner-item .company-details {
    flex-grow: 1;
    min-width: 0;
}

/* 퍼스트 배너 기업명 - 인크루트 스타일 */
.first-banner-item .company-name {
    font-weight: 600;
    font-size: 14px;
    margin: 0 0 4px 0;
    color: var(--incruit-text-secondary);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 퍼스트 배너 직무 제목 */
.first-banner-item .job-title {
    font-weight: 500;
    font-size: 16px;
    margin: 0 0 12px 0;
    color: var(--incruit-text-primary);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 퍼스트 배너 내용 - 인크루트 스타일 */
.first-banner-item .banner-content {
    font-size: 13px;
    color: var(--incruit-text-secondary);
    line-height: 1.5;
    height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 16px;
    flex-grow: 1;
}

/* 퍼스트 배너 카드 푸터 - 인크루트 스타일 */
.first-banner-item .card-footer {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--incruit-border);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 8px;
}

/* 퍼스트 배너 태그 영역 */
.first-banner-item .banner-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    flex-grow: 1;
    align-items: center;
}

/* 퍼스트 배너 태그 - 인크루트 스타일 */
.first-banner-item .banner-tag {
    background: var(--incruit-badge-bg);
    color: var(--incruit-primary);
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 2px;
    font-weight: 600;
    border: 1px solid var(--incruit-primary);
    white-space: nowrap;
}

/* 퍼스트 배너 스크랩 버튼 */
.first-banner-item .scrap-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--incruit-border);
    border-radius: 2px;
    background: var(--incruit-card-bg);
    cursor: pointer;
    font-size: 16px;
    color: var(--text-muted);
    transition: all 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.first-banner-item .scrap-btn:hover {
    border-color: var(--incruit-primary);
    color: var(--incruit-primary);
}

.first-banner-item .scrap-btn.scrapped {
    color: var(--incruit-primary);
    border-color: var(--incruit-primary);
}

/* 퍼스트 배너 D-Day 표시 */
.first-banner-item .banner-dday {
    background: #ff4757;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

/* 퍼스트 배너 버튼 */
.first-banner-item .btn-view-job {
    display: inline-block;
    background: var(--incruit-primary);
    color: white;
    padding: 6px 12px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.15s;
    text-align: center;
    margin-left: 8px;
    flex-shrink: 0;
}

/* 퍼스트 배너 버튼 호버 효과 */
.first-banner-item .btn-view-job:hover {
    background: #001A35;
    transform: translateY(-1px);
    box-shadow: var(--incruit-hover-shadow);
}

/* 반응형 스타일 - 인크루트 */

/* 데스크톱 기본값은 이미 설정됨 */

/* 노트북 (1200px 이하) */
@media (max-width: 1200px) {
    .cPrdlists_wrap {
        max-width: 1000px;
        padding: 15px;
    }
    
    .cPrdlists_rowsgrp {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 18px;
        padding: 20px;
    }
    
    .prestige .cPrdlists_rowsgrp {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .superior .cPrdlists_rowsgrp {
        grid-template-columns: repeat(3, minmax(200px, 1fr)); /* 노트북에서 3열 */
        gap: 18px;
        min-width: 636px; /* 3 * 200px + 2 * 18px */
    }
    
    .superior_line .cPrdlists_rowsgrp {
        grid-template-columns: repeat(4, minmax(180px, 1fr)); /* 노트북에서 4열 */
        gap: 15px;
        min-width: 765px; /* 4 * 180px + 3 * 15px */
    }
    
    /* banner-container 클래스 반응형 - 노트북 */
    .banner-supreme-container {
        grid-template-columns: repeat(3, minmax(200px, 1fr));
        gap: 18px;
        min-width: 636px; /* 3 * 200px + 2 * 18px */
    }
    
    .banner-first-container {
        grid-template-columns: repeat(3, minmax(220px, 1fr));
        gap: 18px;
        min-width: 696px; /* 3 * 220px + 2 * 18px */
    }
    
    .cPrdlists_title {
        font-size: 18px;
        padding: 14px 15px 14px;
    }
}

/* 태블릿 (768px 이하) */
@media (max-width: 768px) {
    .cPrdlists_wrap {
        padding: 10px 5px;
        margin: 0;
    }
    
    .cPrdlists_rows {
        margin-bottom: 30px;
    }
    
    .cPrdlists_title {
        font-size: 16px;
        padding: 12px 15px 12px;
    }
    
    .product-info {
        font-size: 12px;
    }
    
    .cPrdlists_rowsgrp {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 12px;
    }
    
    .superior .cPrdlists_rowsgrp {
        grid-template-columns: repeat(2, minmax(200px, 1fr)); /* 태블릿에서 2열 */
        min-width: 415px; /* 2 * 200px + 1 * 15px */
    }
    
    .superior_line .cPrdlists_rowsgrp {
        grid-template-columns: repeat(3, minmax(160px, 1fr)); /* 태블릿에서 3열 */
        min-width: 510px; /* 3 * 160px + 2 * 15px */
    }
    
    /* banner-container 클래스 반응형 - 태블릿 */
    .banner-supreme-container {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
        gap: 15px;
        min-width: 415px; /* 2 * 200px + 1 * 15px */
    }
    
    .banner-first-container {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        gap: 15px;
        min-width: 455px; /* 2 * 220px + 1 * 15px */
    }
    
    .cPrdlists_cols.Xbig {
        grid-column: span 2;
        grid-row: span 1; /* 태블릿에서는 세로를 1로 제한 */
    }
    
    .cPrdlists_cols.wide {
        grid-column: span 2; /* 태블릿에서도 2열 유지 */
    }
    
    .cPrdlists_box_img {
        height: 100px;
    }
    
    .cPrdlists_box_pos {
        padding: 12px;
        gap: 8px;
    }
    
    .company-logo {
        width: 35px;
        height: 35px;
        margin-bottom: 6px;
    }
    
    .company-name {
        font-size: 12px;
    }
    
    .job-title {
        font-size: 13px;
    }
    
    .new-btnJobApp {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .btnScraps {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
    
    .cPrdlists_box_pos_badge {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    /* 태블릿에서 배너 간격 조정 */
    .banner-section {
        margin-bottom: 20px;
    }
    
    /* 프레스티지 배너 이미지 비율 태블릿 조정 */
    .prestige .cPrdlists_box_img {
        height: 80px;
    }
}

/* 모바일 소형 화면 (480px 이하) - 초컴팩트 디자인 */
@media (max-width: 480px) {
    /* 컨테이너 여백 최소화 */
    .cPrdlists_wrap {
        padding: 0;
        margin: 0;
    }
    
    .cPrdlists_rows {
        margin-bottom: 8px;
    }
    
    /* 섹션 제목 더 컴팩트하게 */
    .cPrdlists_title {
        font-size: 15px;
        font-weight: 600;
        padding: 12px 15px;
        background: var(--bg-white);
        border-bottom: 1px solid var(--border-light);
    }
    
    /* 배너 그룹 여백 최소화 */
    .cPrdlists_rowsgrp {
        gap: 6px;
        padding: 8px;
    }
    
    /* 배너 카드 더 컴팩트하게 */
    .cPrdlists_cols {
        padding: 10px;
        min-height: 80px;
        border-radius: 4px;
    }
    
    /* 로고 영역 더 작게 */
    .cPrdlists_box_img,
    .company-logo,
    .company-logo-wide {
        flex: 0 0 45px;
        width: 45px;
        height: 45px;
    }
    
    /* 컨텐츠 영역 간격 최소화 */
    .cPrdlists_box {
        gap: 10px;
    }
    
    .cPrdlists_box_pos {
        gap: 3px;
    }
    
    /* 텍스트 크기 조정 */
    .company-name {
        font-size: 12px;
        font-weight: 600;
    }
    
    .job-title {
        font-size: 11px;
        line-height: 1.3;
    }
    
    /* 마감일 표시 더 작게 */
    .deadline-text {
        font-size: 9px;
        padding: 2px 5px;
        top: 10px;
        right: 10px;
    }
    
    /* 섹션 간격 최소화 */
    .cPrdlists_section {
        margin-bottom: 10px;
        border-radius: 6px;
    }
    
    /* 회사 초기값 아이콘 크기 조정 */
    .company-initial {
        font-size: 16px;
        font-weight: 700;
    }
}

/* 로딩 표시 */
.banner-loading {
    text-align: center;
    padding: 30px;
    position: relative;
}

.banner-loading::after {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #EC6521;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 배너 없음 표시 */
.banner-empty {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #6c757d;
    font-size: 16px;
    border: 1px dashed #dee2e6;
}

/* 뉴스 섹션 */
.news-section {
    margin-bottom: 40px;
    padding: 0 15px;
    background: var(--bg-light);
    border-radius: 2px;
    padding: 20px;
    border: 1px solid var(--border-light);
}

/* 뉴스 섹션 제목 */
.news-section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

/* 뉴스 섹션 제목 밑줄 */
.news-section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

/* 뉴스 슬라이더 컨테이너 */
.news-slider-container {
    position: relative;
    overflow: hidden;
}

/* 뉴스 슬라이더 */
.news-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 10px;
    gap: 15px;
}

/* 뉴스 슬라이더 스크롤바 숨김 */
.news-slider::-webkit-scrollbar {
    display: none;
}

/* 뉴스 카드 */
.news-card {
    min-width: 300px;
    flex: 0 0 300px;
    background: white;
    border-radius: 2px;
    padding: 15px;
    border: 1px solid var(--border-light);
    transition: all 0.15s;
}

/* 뉴스 카드 호버 효과 */
.news-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

/* 뉴스 카드 링크 */
.news-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* 뉴스 메타 정보 */
.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 10px;
}

/* 뉴스 제목 */
.news-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
    height: 44px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 뉴스 내용 */
.news-content {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    height: 63px;
    overflow: hidden;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* 뉴스 더보기 */
.news-more {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    text-align: right;
}

/* 뉴스 네비게이션 */
.news-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 -15px;
    z-index: 1;
}

/* 뉴스 이전/다음 버튼 공통 */
.news-prev,
.news-next {
    width: 30px;
    height: 30px;
    border-radius: 2px;
    background: var(--bg-white);
    border: 1px solid var(--border-default);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: var(--text-secondary);
    transition: all 0.15s;
    box-shadow: var(--shadow-sm);
}

/* 뉴스 이전/다음 버튼 호버 */
.news-prev:hover,
.news-next:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* 뉴스 이전 버튼 */
.news-prev {
    left: -15px;
}

/* 뉴스 다음 버튼 */
.news-next {
    right: -15px;
}

/* 반응형: 태블릿 */
@media (max-width: 768px) {
    .news-section {
        padding: 15px;
        margin-bottom: 30px;
    }
    
    .news-section-title {
        font-size: 20px;
    }
    
    .news-slider-container {
        padding: 0 10px;
    }
    
    .news-card {
        min-width: 250px;
        flex: 0 0 250px;
    }
    
    .news-navigation {
        display: none;
    }
}

/* 반응형: 모바일 */
@media (max-width: 480px) {
    .news-card {
        min-width: 220px;
        flex: 0 0 220px;
    }
    
    .news-title {
        font-size: 15px;
    }
    
    .news-content {
        font-size: 13px;
        height: 57px;
    }
}

/* 스페셜 배너 그라데이션 효과 */
.special-banner-item,
.supreme-banner-item {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.special-banner-item::before,
.supreme-banner-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 45, 91, 0.05), transparent);
    transition: all 0.3s;
    z-index: -1;
}

.special-banner-item:hover::before,
.supreme-banner-item:hover::before {
    left: 0;
}

/* 인크루트 스타일 추가 요소들 */

/* 마감일 표시 - 인크루트 스타일 (컴팩트 사이즈) */
.deadline-text {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
    white-space: nowrap;
    max-width: 80px;
    text-align: center;
    right: 0;
    letter-spacing: -0.1px;
}

.deadline-text.ongoing {
    background: #e8f5e8;
    color: #28a745;
}

.deadline-text.today {
    background: #fff3cd;
    color: #856404;
}

.deadline-text.urgent {
    background: #f8d7da;
    color: #721c24;
}

.deadline-text.normal {
    background: #d4edda;
    color: #155724;
}

.deadline-text.expired {
    background: #f8d7da;
    color: #721c24;
}

/* 직무 배지 */
.job-badges {
    margin: 8px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.job-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 2px;
    display: inline-block;
    letter-spacing: -0.2px;
}

.job-badge.salary {
    background: var(--incruit-badge-bg);
    color: var(--incruit-primary);
    border: 1px solid var(--incruit-primary);
}

.job-badge.urgent {
    background: #fff3cd;
    color: #856404;
}

.job-badge.newcomer {
    background: #d4edda;
    color: #155724;
}

.job-badge.experience {
    background: #d1ecf1;
    color: #0c5460;
}

/* 스크랩 버튼 */
.scrap-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-default);
    border-radius: 2px;
    background: var(--bg-white);
    cursor: pointer;
    font-size: 16px;
    color: var(--text-muted);
    transition: all 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scrap-btn:hover {
    border-color: var(--incruit-primary);
    color: var(--incruit-primary);
    background: var(--incruit-badge-bg);
}

.scrap-btn.scrapped {
    color: var(--incruit-primary);
    border-color: var(--incruit-primary);
    background: var(--incruit-badge-bg);
}

/* 스페셜 배너 개선 */
.special-banner-item .banner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.special-banner-item .banner-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
}

.special-banner-item .view-count {
    font-size: 12px;
    color: #999;
}

/* 슈프림 배너 개선 */
.supreme-banner-item .supreme-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 12px;
}

.supreme-banner-item .supreme-info {
    flex: 1;
    min-width: 0;
}

.supreme-banner-item .supreme-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
    font-size: 12px;
    color: #666;
}

.supreme-banner-item .company-initial {
    width: 40px;
    height: 40px;
    background: var(--incruit-primary);
    color: white;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

/* 퍼스트 배너 개선 */
.first-banner-item .company-initial {
    width: 100%;
    height: 100%;
    background: var(--incruit-primary);
    color: white;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.first-banner-item .job-title {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.first-banner-item .default-image {
    width: 100%;
    height: 100%;
    background: var(--incruit-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.first-banner-item .default-image::before {
    content: "🏢";
}

/* 추가 유틸리티 클래스 */
.btn-view-job {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--incruit-primary);
    color: white;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.15s;
    border: none;
    cursor: pointer;
    gap: 4px;
    letter-spacing: -0.2px;
}

.btn-view-job:hover {
    background: #001A35;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: var(--incruit-hover-shadow);
}

.btn-view-job i {
    font-size: 12px;
}

/* 인크루트 배지 스타일 개선 */
.incruit-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 6px;
    border-radius: 2px;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
    gap: 2px;
    line-height: 1.2;
    letter-spacing: -0.2px;
}

.incruit-badge.premium {
    background: var(--incruit-primary);
    color: white;
}

.incruit-badge.popular {
    background: var(--incruit-badge-bg);
    color: var(--incruit-primary);
    border: 1px solid rgba(236, 101, 33, 0.3);
}

.incruit-badge.new {
    background: #28a745;
    color: white;
}

.incruit-badge.urgent {
    background: #dc3545;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* 모바일 전용 - 완전한 리스트 스타일 비즈니스 디자인 */
@media (max-width: 768px) {
    /* 모바일 배너 컨테이너 - 리스트 형태 */
    .cPrdlists_rowsgrp {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 10px;
        background: var(--bg-light);
    }
    
    /* 모바일 배너 카드 - 비즈니스 프로페셔널 스타일 */
    .cPrdlists_cols {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        background: var(--bg-white);
        border: 1px solid var(--border-light);
        border-radius: 8px;
        padding: 0;
        min-height: 100px;
        transition: all 0.15s ease;
        position: relative;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        overflow: hidden;
        margin: 10px !important
    }
    
    .cPrdlists_cols:active {
        border-color: var(--primary);
        box-shadow: 0 2px 8px rgba(236, 101, 33, 0.15);
        transform: translateY(-1px);
    }
    
    /* 모든 특수 클래스 무력화 - 모바일에서는 동일한 스타일 */
    .cPrdlists_cols.Xbig,
    .cPrdlists_cols.wide,
    .cPrdlists_cols.noble {
        display: flex;
        flex-direction: row;
        align-items: center;
        min-height: 90px;
        max-height: none;
        grid-column: span 1;
        grid-row: span 1;
    }
    
    /* 모든 배너 타입 뱃지 숨김 */
    .cPrdlists_cols::before,
    .cPrdlists_cols.noble::before,
    .supreme-banner-item::before,
    .cPrdlists_box_pos_badge,
    .product-badge,
    .banner-badge,
    .grade-badge {
        display: none !important;
    }
    
    /* 모바일 배너 박스 - 3단 구조 (로고 + 컨텐츠 + 배너이미지) */
    .cPrdlists_box {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        width: 100%;
        padding: 0;
        gap: 0;
        height: 100px;
    }
    
    /* 회사 로고 영역 - 왼쪽 고정 */
    .cPrdlists_box_img,
    .company-logo,
    .company-logo-wide {
        display: none !important;
        flex: 0 0 60px;
        width: 60px;
        height: 100px;
        border-radius: 0;
        overflow: hidden;
        background: var(--bg-light);
        border-right: 1px solid var(--border-light);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .cPrdlists_box_img img,
    .company-logo img {
        width: 80%;
        height: 80%;
        object-fit: contain;
    }
    
    /* 컨텐츠 영역 - 중앙 확장 */
    .cPrdlists_box_pos {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 15px;
        gap: 6px;
        min-width: 0;
        background: var(--bg-white);
    }
    
    /* 배너 이미지 영역 - 오른쪽 고정 */
    .banner-image-section {
        flex: 0 0 180px;
        width: 180px;
        height: 100px;
        background: linear-gradient(135deg, var(--primary), #d4551a);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }
    
    .banner-image-section img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .banner-image-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        /* background: linear-gradient(135deg, rgba(236, 101, 33, 0.8), rgba(212, 85, 26, 0.9)); */
        z-index: 1;
    }
    
    .banner-image-section .banner-icon {
        position: relative;
        z-index: 2;
        color: white;
        font-size: 24px;
        opacity: 0.9;
    }
    
    /* 회사 정보 */
    .company-info {
        display: flex;
        flex-direction: column;
        gap: 2px;
        margin-bottom: 0;
    }
    
    /* 회사명 */
    .company-info .company-name,
    .company-name {
        font-size: 14px;
        font-weight: 700;
        color: var(--text-primary);
        margin: 0 0 4px 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        line-height: 1.2;
    }
    
    /* 채용 제목 */
    .job-title {
        font-size: 13px;
        font-weight: 400;
        color: var(--text-secondary);
        margin: 0 0 8px 0;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* 추가 정보 영역 */
    .job-meta {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 11px;
        color: var(--text-muted);
    }
    
    .job-location {
        background: var(--bg-light);
        padding: 2px 6px;
        border-radius: 3px;
        font-weight: 500;
    }
    
    /* 마감일 표시 - job-meta 첫 번째 요소로 이동 */
    .deadline-text {
        position: static;
        font-size: 10px;
        font-weight: 600;
        padding: 2px 6px;
        border-radius: 3px;
        white-space: nowrap;
        background: var(--primary);
        color: white;
        border: none;
        order: -1;
        margin-right: 8px;
    }
    
    .deadline-text.ongoing {
        background: #28a745;
        color: white;
    }
    
    .deadline-text.urgent {
        background: #dc3545;
        color: white;
    }
    
    .deadline-text.today {
        background: #ffc107;
        color: #212529;
    }
    
    .deadline-text.expired {
        background: #6c757d;
        color: white;
    }
    
    /* 버튼 및 액션 요소 숨김 - 모바일에서는 터치로 이동 */
    .new-btnJobApp,
    .btn-view-job,
    .btnScraps,
    .scrap-btn {
        display: none !important;
    }
    
    /* 섹션 제목 - 모바일 최적화 */
    .cPrdlists_title {
        font-size: 16px;
        font-weight: 600;
        padding: 15px;
        background: var(--bg-white);
        border-bottom: 1px solid var(--border-light);
        margin: 0;
        color: var(--text-primary);
        position: sticky;
        top: 0;
        z-index: 10;
    }
    
    /* 섹션 구분 */
    .cPrdlists_section {
        background: var(--bg-white);
        border-radius: 8px;
        border: 1px solid var(--border-light);
        margin-bottom: 15px;
        overflow: hidden;
    }
    
    /* 상품 정보 링크 숨김 - 모바일에서는 불필요 */
    .product-info {
        display: none;
    }
    
    /* 모바일에서 호버 효과 제거 */
    .cPrdlists_cols:hover {
        transform: none;
        box-shadow: none;
        border-color: var(--border-light);
    }
    
    /* 배너 컨테이너 여백 최소화 */
    .cPrdlists_wrap {
        padding: 0;
        margin: 0;
    }
    
    /* 배너 섹션 간격 최소화 */
    .cPrdlists_rows {
        margin-bottom: 10px;
    }
}