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

/* 인크루트 색상 팔레트 */
:root {
    --incruit-primary: #EC6521;
    --incruit-secondary: #333333;
    --incruit-background: #f5f5f5;
    --incruit-card-bg: #ffffff;
    --incruit-text-primary: #333333;
    --incruit-text-secondary: #666666;
    --incruit-text-muted: #999999;
    --incruit-border: #e5e5e5;
    --incruit-badge-bg: #FFF4EC;
    --incruit-shadow: 0 2px 8px rgba(0,0,0,0.08);
    --incruit-hover-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* 메인 배너 컨테이너 - 인크루트 스타일 */
.cPrdlists_wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    overflow-x: auto; /* 수평 스크롤 허용 */
}

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

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

.cPrdlists_section {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    overflow: hidden;
}

.ver--2025 {
    border: 1px solid #f0f0f0;
}

/* 인크루트 제목 스타일 */
.cPrdlists_title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    padding: 24px 30px 20px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-info {
    font-size: 14px;
    color: var(--incruit-primary);
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
}

/* 배너 섹션 제목 아이콘 */
.banner-section-title::before {
    content: "🎯";
    font-size: 18px;
    filter: grayscale(0.3);
}

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

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

/* 프레스티지 섹션 - 더 큰 그리드 */
.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: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: relative;
}

.cPrdlists_cols:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--incruit-primary);
}

/* Xbig 클래스 - 프레스티지 2x2 배너 */
.cPrdlists_cols.Xbig {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    border: 2px solid var(--incruit-primary);
}

/* wide 클래스 - 프레스티지 1x2 배너 */
.cPrdlists_cols.wide {
    grid-column: span 2;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    border: 2px solid #5a67d8;
    max-height: 400px;
}

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

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

.cPrdlists_cols.wide .company-info .company-name {
    font-size: 18px;
    font-weight: 600;
    color: #5a67d8;
}

.cPrdlists_cols.wide .new-btnJobApp {
    background: linear-gradient(45deg, #5a67d8, #667eea);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.cPrdlists_cols.wide .new-btnJobApp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(90,103,216,0.3);
}

/* noble 클래스 - 슈페리어 프리미엄 배너 */
.cPrdlists_cols.noble {
    background: linear-gradient(135deg, #fff9f4 0%, #fff 100%);
    border-color: #ffb366;
}

.cPrdlists_cols.noble::before {
    content: "PREMIUM";
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff8c42, #ff6b1a);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
}

/* 인크루트 배너 박스 */
.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: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.cPrdlists_box_text {
    padding: 0 20px 20px;
    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: 8px;
    overflow: hidden;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.company-logo-wide{
    width: 160px;
    height: 50px;
    border-radius: 8px;
    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;
}

.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: 6px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.new-btnJobApp:hover {
    background: #d4551a;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.btnScraps {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    font-size: 14px;
    color: #999;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.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: 15px;
    margin-bottom: 16px;
    overflow-x: auto;
    min-width: 1075px; /* 5 * 200px + 4 * 15px */
}

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

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

/* 슈프림 프리미엄 뱃지 */
.supreme-banner-item::before {
    content: "PREMIUM";
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--incruit-primary), #d4551a);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    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: 8px;
    overflow: hidden;
    background: #f8f9fa;
    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: 20px;
    margin-bottom: 16px;
    overflow-x: auto;
    min-width: 1060px; /* 4 * 250px + 3 * 20px */
}

/* 퍼스트 배너 아이템 - 인크루트 스마트 카드 */
.first-banner-item {
    background: var(--incruit-card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--incruit-shadow);
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    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(-4px);
    box-shadow: var(--incruit-hover-shadow);
    border-color: var(--incruit-primary);
}

/* 퍼스트 배너 이미지 */
.first-banner-item .banner-image {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--incruit-badge-bg) 0%, #f1f1f1 100%);
}

/* 퍼스트 배너 이미지 내부 이미지 */
.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: linear-gradient(135deg, var(--incruit-primary) 0%, #d4551a 100%);
    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: 6px;
    overflow: hidden;
    background: #f8f9fa;
    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: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    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: 4px;
    font-weight: 500;
    border: 1px solid rgba(236, 101, 33, 0.2);
    white-space: nowrap;
}

/* 퍼스트 배너 스크랩 버튼 */
.first-banner-item .scrap-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--incruit-border);
    border-radius: 4px;
    background: var(--incruit-card-bg);
    cursor: pointer;
    font-size: 16px;
    color: #ccc;
    transition: all 0.3s ease;
    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: #EC6521;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
    transition: all 0.3s ease;
    text-align: center;
    margin-left: 8px;
    flex-shrink: 0;
}

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

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

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

/* 노트북 (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: 20px 25px 18px;
    }
}

/* 태블릿 (768px 이하) */
@media (max-width: 768px) {
    .cPrdlists_wrap {
        padding: 10px 5px;
        margin: 0;
    }
    
    .cPrdlists_rows {
        margin-bottom: 30px;
    }
    
    .cPrdlists_title {
        font-size: 16px;
        padding: 14px 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: 5px;
        max-width: 100%;
        margin: 0;
    }
    
    .cPrdlists_rows {
        margin-bottom: 20px;
    }
    
    .cPrdlists_title {
        font-size: 16px;
        padding: 12px 10px;
    }
    
    .product-info {
        font-size: 11px;
    }
    
    .cPrdlists_rowsgrp {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 10px;
    }
    
    /* 프레스티지(퍼스트) 배너 - 70% 크기로 축소 */
    .prestige .cPrdlists_cols {
        transform-origin: center;
    }
    
    .superior .cPrdlists_rowsgrp,
    .superior_line .cPrdlists_rowsgrp {
        grid-template-columns: 1fr; /* 모바일에서는 모두 1열 */
    }
    
    /* banner-container 클래스 반응형 - 모바일 */
    .banner-supreme-container,
    .banner-first-container {
        grid-template-columns: 1fr; /* 모바일에서는 모두 1열 */
        min-width: auto;
        padding: 0 5px;
    }
    
    .cPrdlists_cols.Xbig {
        grid-column: span 1;
        grid-row: span 1; /* 모바일에서는 일반 크기 */
    }
    
    .cPrdlists_cols.wide {
        grid-column: span 1; /* 모바일에서는 1열로 축소 */
    }
    
    .cPrdlists_cols.noble::before {
        font-size: 8px;
        padding: 2px 5px;
        top: 6px;
        right: 6px;
    }
    
    .cPrdlists_box_img {
        height: 80px;
    }
    
    .cPrdlists_box_pos {
        padding: 10px;
        gap: 6px;
    }
    
    .company-logo {
        width: 30px;
        height: 30px;
        margin-bottom: 5px;
    }
    
    .company-name {
        font-size: 11px;
    }
    
    .job-title {
        font-size: 12px;
    }
    
    .new-btnJobApp {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .btnScraps {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    
    .cPrdlists_box_pos_badge {
        font-size: 9px;
        padding: 2px 5px;
    }
    
    /* 모바일에서 배너 간격 조정 */
    .banner-section {
        margin-bottom: 15px;
    }
    
    /* 퍼스트 배너 이미지 비율 모바일 조정 */
    .prestige .cPrdlists_box_img {
        height: 50px; /* 모바일에서 이미지 높이 축소 */
    }
}

/* 로딩 표시 */
.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: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* 뉴스 섹션 제목 */
.news-section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    color: #333;
}

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

/* 뉴스 슬라이더 컨테이너 */
.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: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* 뉴스 카드 호버 효과 */
.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 뉴스 카드 링크 */
.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: #EC6521;
    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: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #495057;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

/* 뉴스 이전 버튼 */
.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(236, 101, 33, 0.1), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

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

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

/* 마감일 표시 - 인크루트 스타일 */
.deadline-text {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    white-space: nowrap;
    max-width: 100px;
    text-align: center;
    right: 0;
}

.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: 500;
    padding: 3px 8px;
    border-radius: 12px;
    display: inline-block;
}

.job-badge.salary {
    background: #FFF4EC;
    color: #EC6521;
    border: 1px solid #EC6521;
}

.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 #e5e5e5;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    font-size: 16px;
    color: #ccc;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scrap-btn:hover {
    border-color: #EC6521;
    color: #EC6521;
}

.scrap-btn.scrapped {
    color: #EC6521;
    border-color: #EC6521;
}

/* 스페셜 배너 개선 */
.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: #EC6521;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

/* 퍼스트 배너 개선 */
.first-banner-item .company-initial {
    width: 100%;
    height: 100%;
    background: #EC6521;
    color: white;
    border-radius: 8px;
    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: linear-gradient(135deg, #EC6521 0%, #d4551a 100%);
    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: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    gap: 4px;
}

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

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

/* 인크루트 배지 스타일 개선 */
.incruit-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    gap: 4px;
}

.incruit-badge.premium {
    background: linear-gradient(135deg, var(--incruit-primary), #d4551a);
    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.7; }
}

/* 반응형 개선 */
@media (max-width: 768px) {
    .scrap-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .job-badge {
        font-size: 10px;
        padding: 2px 6px;
    }
    
    .deadline-text {
        font-size: 11px;
        padding: 3px 6px;
    }
    
    .btn-view-job {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .incruit-badge {
        font-size: 10px;
        padding: 3px 6px;
    }
}