/* Hero Section */
.hero-section {
    background: transparent;
    padding: 3rem 0;
  }

  .hero-section .section-header {
    margin-bottom: 0.75rem;
  }

  .hero-section .section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
  }

  .hero-images-container {
    background: var(--white);
    border-radius: var(--border-radius-2xl);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
  }
  
  .hero-thumb { 
    border-radius: var(--border-radius-xl); 
    overflow: hidden; 
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  }
  
  .hero-thumb:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
  }
  
  .hero-thumb .ratio {
    background: var(--gray-100);
  }

  /* PC에서는 그리드 표시, 슬라이드 숨김 */
  .hero-carousel-mobile {
    display: none !important;
  }

  .hero-grid-pc {
    display: flex !important;
  }

  /* 이미지 로딩 최적화 */
  .hero-thumb img,
  .card-job img {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
  }

  .hero-thumb img[src],
  .card-job img[src] {
    animation: none;
  }

  @keyframes shimmer {
    0% {
      background-position: -200% 0;
    }
    100% {
      background-position: 200% 0;
    }
  }

  /* 이미지 페이드인 효과 */
  .hero-thumb img {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }

  .hero-thumb img.loaded {
    opacity: 1;
  }
  
  /* Section Styles */
  .section-title { 
    font-weight: 800; 
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
  }
  
  .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
  }

  .btn-more {
    background: var(--white);
    border: 1.5px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.875rem;
    padding: 12px 24px;
    border-radius: 32px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    box-shadow: var(--shadow-xs);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 10;
  }

  .btn-more:hover {
    background: var(--primary-color);
    color: white !important;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  .btn-more:active {
    transform: translateY(0);
  }
  
  /* Card Styles */
  .card-job { 
    border: 1px solid var(--border-color); 
    border-radius: var(--border-radius-xl); 
    overflow: hidden; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    background: var(--white);
    box-shadow: var(--shadow-sm);
  }
  
  .card-job:hover { 
    transform: translateY(-8px); 
    box-shadow: var(--shadow-xl);
    border-color: rgba(var(--brand-color-rgb), 0.2);
  }
  
  .card-job .thumb { 
    background: var(--gray-100);
    position: relative;
    overflow: hidden;
  }
  
  .card-job .thumb img {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .card-job:hover .thumb img {
    transform: scale(1.05);
  }
  
  .card-job .badge {
    font-weight: 600;
    font-size: 0.7rem;
    padding: 4px 10px;
    background: transparent;
    color: #333333;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
  }

  /* VIP 카드 컨텐츠 스타일 */
  .vip-section .card-job .p-3 .small {
    color: #333333 !important;
    font-size: 0.95rem !important;
  }

  .card-job .p-3 .small {
    color: #333333 !important;
  }

  .card-job .p-3 .text-secondary {
    color: #333333 !important;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
  }

  .vip-section .card-job .p-3 .d-flex .small {
    color: #333333 !important;
    font-size: 0.95rem !important;
  }

  .card-job .p-3 .d-flex .small {
    color: #333333 !important;
    font-size: 0.8rem;
  }

  /* VIP 섹션 배지 크기 */
  .vip-section .card-job .badge {
    font-size: 0.75rem !important;
    padding: 5px 11px !important;
  }
  
  .card-job h6 {
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.5;
    margin: 16px 0;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
  }
  
  .meta { 
    font-size: 0.875rem; 
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
  }
  
  /* Sidebar Styles */
  .sidebar .card {
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
  }
  
  .sidebar .card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
  }
  
  .category-chip {
    font-size: 13px;
    color: #000000;
    border: 1px solid var(--border-color);
    padding: 5px 15px;
    border-radius: 24px;
    background: var(--white);
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    font-weight: 700;
  }
  
  .category-chip:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }

  /* 분야별 채용정보 그리드 - 반응형 */
  .field-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
  }

  .field-grid li {
    margin-bottom: 0;
  }

  .quick-grid .btn { 
    border: 1px solid var(--border-color); 
    background: var(--white); 
    color: var(--text-primary);
    border-radius: var(--border-radius-xl);
    padding: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    font-weight: 600;
    box-shadow: var(--shadow-xs);
    font-size: 12px;
  }
  
  .quick-grid .btn:hover { 
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
  }
  
  .quick-grid .btn i {
    font-size: 30px;
    margin-bottom: 12px;
    color: #A50808;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .quick-grid .btn:hover i {
      color: #fff !important;
  }
  
  .list-inline-gap > li { 
    margin-bottom: 8px; 
  }
  
  /* Content Sections */
  .content-section {
    padding: 4rem 0;
  }
  
  .content-section:nth-child(even) {
    background: rgba(249, 250, 251, 0.6);
  }
  
  /* Notice Section */
  .notice-item { 
    border-top: 1px solid var(--border-color); 
    padding: 20px 0; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
  }
  
  .notice-item:hover {
    background: var(--primary-accent);
    padding-left: 20px;
    padding-right: 20px;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: var(--border-radius-lg);
  }
  
  /* PC용 프리미엄 그리드 */
  .premium-grid-pc {
    display: flex !important;
    flex-wrap: wrap;
  }

  /* PC용 5열 그리드 (그랜드 섹션용) */
  .grand-grid-pc {
    display: flex !important;
    flex-wrap: wrap;
    gap: 12px;
  }

  .grand-grid-pc .col-5-custom {
    flex: 0 0 calc((100% - 48px) / 5);
    max-width: calc((100% - 48px) / 5);
    box-sizing: border-box;
  }

  /* PC용 라인 리스트 스타일 */
  .line-section-pc {
    background: rgba(249, 250, 251, 0.6);
  }

  .line-list-pc {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .line-list-item-pc {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 20px 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xs);
  }

  .line-list-item-pc:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(var(--brand-color-rgb), 0.3);
  }

  .line-list-region-badge {
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 100px;
    text-align: center;
  }

  .line-list-company {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
    min-width: 180px;
    flex-shrink: 0;
  }

  .line-list-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
  }

  .line-list-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .line-list-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    min-width: 0;
  }

  .line-list-salary {
    color: var(--brand-color);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 500px;
  }

  .line-list-divider {
    color: var(--border-color);
  }

  .line-list-btn {
    background: var(--white);
    border: 1.5px solid var(--brand-color);
    color: var(--brand-color);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
  }

  .line-list-btn:hover {
    background: var(--brand-color);
    color: white;
    transform: translateX(4px);
  }

  .line-list-meta-pc {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    flex-shrink: 0;
  }

  .line-list-dot-pc {
    color: var(--border-color);
  }

  .line-list-empty-pc {
    padding: 20px 0;
  }

/* 그랜드 5열 반응형 */
@media (max-width: 1200px) {
  .grand-grid-pc .col-5-custom {
    flex: 0 0 calc((100% - 36px) / 4);
    max-width: calc((100% - 36px) / 4);
  }
}

@media (max-width: 992px) {
  .grand-grid-pc .col-5-custom {
    flex: 0 0 calc((100% - 24px) / 3);
    max-width: calc((100% - 24px) / 3);
  }
}

@media (max-width: 576px) {
  .grand-grid-pc .col-5-custom {
    flex: 0 0 calc((100% - 12px) / 2);
    max-width: calc((100% - 12px) / 2);
  }
}

  /* Mobile Responsive for Main */
  @media (max-width: 768px) {
    .section-title {
      font-size: 1.5rem;
    }

    .card-job h6 {
      font-size: 1rem;
    }

    .hero-thumb {
      border-radius: var(--border-radius-lg);
    }

    .card-job {
      border-radius: var(--border-radius-lg);
    }

    .hero-section {
      padding: 0;
      margin-top: 0;
      padding-top: 1.5rem;
    }

    .hero-section .container {
      padding: 0;
      max-width: 100%;
    }

    .hero-section .row {
      margin: 0;
    }

    .hero-section .col-12,
    .hero-section .col-lg-7 {
      padding: 0;
    }

    /* VVIP 채용정보 헤더 상단 여백 */
    .hero-section .col-12:first-child .section-header {
      padding: 0 16px;
    }

    .hero-section .row.g-2 {
      --bs-gutter-x: 0;
      --bs-gutter-y: 0;
    }

    .content-section {
      padding: 2rem 0;
    }

    .hero-images-container {
      padding: 0;
      border-radius: 0;
      box-shadow: none;
      border: none;
      background: transparent;
    }

    .hero-carousel-mobile .hero-thumb {
      border-radius: 0;
      box-shadow: none;
    }

    .hero-carousel-mobile .ratio {
      background: #f0f0f0;
    }

    .hero-carousel-mobile img {
      background: transparent;
    }

    .hero-carousel-mobile .carousel-item {
      background: #f0f0f0;
    }

    .hero-carousel-mobile .carousel-inner {
      background: #f0f0f0;
    }

    /* 슬라이드 전환 시 이미지 유지 */
    .hero-carousel-mobile .carousel-item-next,
    .hero-carousel-mobile .carousel-item-prev,
    .hero-carousel-mobile .carousel-item.active {
      display: block;
    }

    .hero-carousel-mobile .carousel-item img {
      opacity: 1 !important;
    }

    .section-title {
      font-size: 1.25rem;
    }

    /* 모바일에서 사이드바 숨김 (PC 전용) */
    .category-sidebar,
    .quick-menu-sidebar {
      display: none !important;
    }

    /* 모바일에서 히어로 이미지 영역 전체 너비 사용 */
    .hero-section .col-lg-7 {
      flex: 0 0 100%;
      max-width: 100%;
    }

    /* 모바일에서 PC 그리드 숨기고 슬라이드 표시 */
    .hero-images-container .hero-grid-pc {
      display: none !important;
    }

    .hero-images-container .hero-carousel-mobile {
      display: block !important;
    }

    /* 모바일 슬라이드 스타일 */
    .hero-carousel-mobile .carousel-item {
      padding: 0;
    }

    .hero-carousel-mobile .hero-thumb {
      margin: 0;
    }

    .hero-carousel-mobile .carousel-indicators {
      position: absolute;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex !important;
      justify-content: center;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .hero-carousel-mobile .carousel-indicators button {
      width: 10px !important;
      height: 10px !important;
      border-radius: 50% !important;
      background-color: rgba(255, 255, 255, 0.6) !important;
      border: none !important;
      margin: 0 5px !important;
      padding: 0 !important;
      opacity: 1 !important;
      box-sizing: border-box !important;
    }

    .hero-carousel-mobile .carousel-indicators button.active {
      background-color: var(--brand-color) !important;
    }

    /* 모바일에서 카드 2개씩 표시 */
    .content-section .col-md-6,
    .content-section .col-xl-3,
    .content-section .col-lg-3 {
      flex: 0 0 50%;
      max-width: 50%;
    }

    /* 카드 내부 패딩 축소 */
    .card-job .p-3 {
      padding: 6px !important;
    }

    .card-job h6 {
      font-size: 0.875rem;
      margin: 6px 0;
    }

    /* VIP 섹션 Bootstrap gutter 완전 제거 */
    .vip-section .row.g-4,
    .vip-section .vip-grid-pc.g-4 {
      --bs-gutter-x: 2px !important;
      --bs-gutter-y: 2px !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
    }

    /* VIP 섹션 카드 마진 제거 */
    .vip-section .card-job {
      margin-bottom: 0 !important;
      margin-top: 0 !important;
    }

    /* VIP 카드 컬럼 마진/패딩 제거 */
    .vip-section .vip-grid-pc > .col-12,
    .vip-section .vip-grid-pc > [class*="col-"] {
      margin-top: 0 !important;
      margin-bottom: 0 !important;
      padding-top: 1px !important;
      padding-bottom: 1px !important;
      padding-left: 1px !important;
      padding-right: 1px !important;
    }

    /* VIP 카드 article 마진 제거 */
    .vip-section .card-job.h-100 {
      margin: 0 !important;
    }

    /* VIP 카드 thumb 마진 제거 */
    .vip-section .card-job .thumb {
      margin: 0 !important;
    }

    /* 모바일 VIP 카드 텍스트 스타일 */
    .card-job .p-3 .text-secondary {
      font-size: 0.9rem !important;
      font-weight: 700;
      margin-bottom: 3px !important;
      line-height: 1.3;
    }

    .card-job .p-3 .d-flex {
      margin-bottom: 1px !important;
      gap: 4px !important;
    }

    .card-job .p-3 .d-flex .small {
      font-size: 0.68rem !important;
    }

    .card-job .badge {
      font-size: 0.6rem !important;
      padding: 2px 6px !important;
    }

    .card-job .meta {
      font-size: 0.75rem;
    }

    /* 설명 높이 축소 */
    .card-job .small.text-muted {
      height: 32px !important;
    }
  }

  @media (max-width: 991.98px) {
  }

/* ==========================================
   모바일 전용 퀵메뉴
   ========================================== */
.mobile-quick-menu-section {
  display: none;
}

@media (max-width: 768px) {
  .mobile-quick-menu-section {
    display: block;
    background: #ffffff;
    padding: 24px 4px;
  }

  .mobile-quick-menu-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 2px;
  }

  .mobile-quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    flex: 1;
    padding: 8px 0;
    transition: all 0.2s ease;
  }

  .mobile-quick-item:active {
    transform: scale(0.95);
  }

  .mobile-quick-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
  }

  .mobile-quick-icon svg {
    width: 100%;
    height: 100%;
  }

  /* SVG 아이콘 색상 - 브랜드 컬러 사용 */
  .mobile-quick-icon .icon-bg {
    fill: rgba(var(--brand-color-rgb), 0.1);
  }

  .mobile-quick-icon .icon-stroke {
    stroke: var(--brand-color);
  }

  .mobile-quick-icon .icon-fill {
    fill: var(--brand-color);
  }

  .mobile-quick-label {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    line-height: 1.3;
  }
}

/* ==========================================
   모바일 전용 지역 선택기
   ========================================== */
.mobile-region-selector-section {
  display: none;
}

/* 기본 상태에서 숨김 */
.region-modal {
  display: none;
}

@media (max-width: 768px) {
  .mobile-region-selector-section {
    display: block;
    background: #ffffff;
    padding: 0 16px 16px;
  }

  .mobile-region-selector {
    position: relative;
    overflow: visible;
  }

  .mobile-region-selector-section {
    overflow: visible;
  }

  .mobile-region-selector-section .container {
    overflow: visible;
  }

  .region-select-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .region-select-box:active {
    border-color: var(--brand-color);
  }

  .region-select-icon {
    color: var(--brand-color);
    font-size: 18px;
    margin-right: 10px;
  }

  .region-select-text {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
  }

  .region-select-arrow {
    color: #9ca3af;
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .region-select-arrow.rotate {
    transform: rotate(180deg);
  }

  /* 지역 모달 - 드롭다운 형태 */
  .region-modal {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1001;
  }

  .region-modal-content {
    padding: 16px;
  }

  .region-modal-header {
    display: flex;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #f3f4f6;
    gap: 10px;
  }

  .region-modal-header .region-select-icon {
    color: var(--brand-color);
    font-size: 20px;
  }

  .region-modal-header span {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
  }

  .region-modal-header .bi-chevron-up {
    color: #9ca3af;
    font-size: 16px;
  }

  .region-modal-content {
    padding: 0;
  }

  #regionStep1,
  #regionStep2 {
    padding: 16px;
  }

  /* 지역 그리드 */
  .region-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }

  .region-chip {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 8px;
    font-size: 13px;
    font-weight: 500;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
  }

  .region-chip:active {
    transform: scale(0.95);
  }

  .region-chip.active {
    background: var(--brand-color);
    border-color: var(--brand-color);
    color: #ffffff;
  }

  /* 세부지역 스와이프 컨테이너 */
  .region-pages-container {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  .region-pages-container::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }

  .region-pages-wrapper {
    display: flex;
    width: max-content;
  }

  .region-page {
    flex-shrink: 0 !important;
    scroll-snap-align: start;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(5, auto) !important;
    gap: 10px !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    align-content: start !important;
  }

  .region-page .region-chip {
    padding: 14px 16px !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    border-radius: 25px !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    border: 1px solid #e5e7eb !important;
    background: #ffffff !important;
    color: #4b5563 !important;
  }

  .region-page .region-chip.active {
    background: rgba(var(--brand-color-rgb), 0.1) !important;
    border-color: var(--brand-color) !important;
    color: var(--brand-color) !important;
  }

  /* 페이지네이션 */
  .region-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  .pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e5e7eb;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    padding: 0;
  }

  .pagination-dot.active {
    background: var(--brand-color);
    transform: scale(1.2);
  }

  /* 공고보기 버튼 */
  .region-search-btn {
    width: calc(100% - 32px);
    margin: 16px;
    background: var(--brand-color);
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .region-search-btn:active {
    transform: scale(0.98);
    opacity: 0.9;
  }
}

/* ==========================================
   광고 빈 슬롯 스타일 (투명 마사지 배경)
   ========================================== */
.ad-empty-card {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
    url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=800&h=600&fit=crop');
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius-xl);
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  transition: all 0.3s ease;
}

.ad-empty-card:hover {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)),
    url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=800&h=600&fit=crop');
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.ad-empty-card a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ad-empty-logo-lg {
  max-width: 160px;
  height: auto;
  opacity: 0.95;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.ad-empty-text {
  font-size: 20px;
  font-weight: 700;
  color: #495057;
  margin: 12px 0;
}

.btn-ad-apply {
  background-color: var(--brand-color);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-ad-apply:hover {
  background-color: #8a0606;
  transform: scale(1.05);
  color: #fff;
}

/* 라인 섹션용 빈 슬롯 */
.ad-empty-card-line {
  min-height: 120px;
  padding: 20px;
}

.ad-empty-card-line .ad-empty-logo-lg {
  max-width: 120px;
}

.ad-empty-card-line .ad-empty-text {
  font-size: 14px;
}

.ad-empty-card-line .btn-ad-apply {
  padding: 8px 20px;
  font-size: 13px;
}

/* ==========================================
   광고 모집 플레이스홀더
   ========================================== */
.ad-placeholder {
  position: relative;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=800&h=600&fit=crop');
  background-size: cover;
  background-position: center;
  border: 2px dashed #dee2e6;
  border-radius: var(--border-radius-xl);
  transition: all 0.3s ease;
  min-height: 300px;
}

.ad-placeholder:hover {
  border-color: var(--brand-color);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
    url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=800&h=600&fit=crop');
  box-shadow: 0 4px 12px rgba(var(--brand-color-rgb), 0.15);
  transform: translateY(-4px);
}

.ad-placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  height: 100%;
  min-height: 300px;
  text-align: center;
}

.ad-placeholder-logo {
  width: 180px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ad-placeholder-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.2));
  image-rendering: auto;
  image-rendering: -webkit-optimize-contrast;
}

.ad-placeholder-title {
  font-size: 18px;
  font-weight: 700;
  color: #495057;
  margin: 0 0 8px 0;
}

.ad-placeholder-text {
  font-size: 14px;
  color: #6c757d;
  margin: 0 0 20px 0;
}

.ad-placeholder-btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--brand-color);
  color: #ffffff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.ad-placeholder:hover .ad-placeholder-btn {
  background: #8a0606;
  transform: scale(1.05);
}

/* ==========================================
   5칼럼 그리드 (그랜드 섹션용)
   ========================================== */
@media (min-width: 1200px) {
  .col-xl-2-4 {
    flex: 0 0 auto;
    width: 20%; /* 100% / 5 = 20% */
  }
}

/* 모바일에서 광고 플레이스홀더 최소 높이 조정 */
@media (max-width: 767.98px) {
  .ad-placeholder-content {
    min-height: 250px;
    padding: 30px 15px;
  }

  .ad-placeholder-logo {
    width: 140px;
    height: 90px;
  }

  .ad-placeholder-title {
    font-size: 16px;
  }

  .ad-placeholder-text {
    font-size: 13px;
  }
}

/* ==========================================
   VIP 채용정보 섹션 스타일
   ========================================== */

/* PC/모바일 표시 제어 */
.pc-only {
  display: block;
}

/* row 요소용 pc-only - flex 유지 */
.row.pc-only {
  display: flex;
}

.mobile-only {
  display: none;
}

/* inline 요소용 pc-only */
span.pc-only,
a.pc-only {
  display: inline-block;
}

/* 섹션 타이틀 래퍼 */
.section-title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 광고안내 링크 */
.ad-info-link {
  font-size: 13px;
  color: #9ca3af;
  text-decoration: none;
}

.ad-info-link:hover {
  color: var(--brand-color);
}

/* 페이지 인디케이터 */
.vip-page-indicator {
  font-size: 11px;
  color: #6b7280;
  font-weight: 400;
}

.vip-page-indicator .current-page {
  color: var(--brand-color);
  font-weight: 700;
}

@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  /* VIP 섹션: 모바일에서 2x2 카드 그리드 스와이프 */
  .vip-section .container {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }

  .vip-section .section-header {
    margin-bottom: 12px !important;
    padding: 0 4px;
  }

  .vip-section .vip-grid-pc {
    display: flex !important;
    flex-wrap: wrap !important;
    overflow-x: visible;
    overflow-y: visible;
    gap: 4px !important;
    row-gap: 4px !important;
    padding-bottom: 2px;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .vip-section .vip-grid-pc::-webkit-scrollbar {
    display: none;
  }

  .vip-section .vip-grid-pc > .col-12,
  .vip-section .vip-grid-pc > [class*="col-"] {
    flex: 0 0 calc(50% - 2px) !important;
    max-width: calc(50% - 2px) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .vip-section .vip-swipe-container {
    display: block !important;
  }

  .vip-section .row.g-4.vip-grid-pc {
    display: none !important;
  }

  .vip-section .vip-page-indicator {
    background: var(--white);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.7rem;
    padding: 6px 12px;
    border-radius: 16px;
    font-weight: 500;
    box-shadow: var(--shadow-xs);
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
  }

  .vip-section .btn-more {
    display: none !important;
  }

  /* 프리미엄 섹션: 모바일에서 리스트 스와이프 (VIP 스타일) */
  .premium-section {
    padding-top: 0.5rem !important;
  }

  .premium-section .section-header {
    margin-bottom: 4px !important;
  }

  .premium-section .row.g-4 {
    display: none !important;
  }

  .premium-section .premium-swipe-container {
    display: block !important;
  }

  /* 프리미엄 스와이프 컨테이너 (VIP 스타일 복제) */
  .premium-swipe-container {
    display: none;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .premium-swipe-container::-webkit-scrollbar {
    display: none;
  }

  .premium-swipe-wrapper {
    display: flex;
    width: max-content;
  }

  .premium-swipe-page {
    flex-shrink: 0;
    width: calc(100vw - 48px);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-sizing: border-box;
    padding-right: 12px;
  }

  .premium-swipe-page:last-child {
    padding-right: 0;
  }

  /* 프리미엄 카드 */
  .premium-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 4px 16px;
  }

  /* 프리미엄 리스트 아이템 */
  .premium-list-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
  }

  .premium-list-item:last-child {
    border-bottom: none;
  }

  .premium-list-item:active {
    background: #f9fafb;
  }

  .premium-list-thumb {
    flex-shrink: 0;
    width: 132px;
    height: 88px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 10px;
  }

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

  .premium-list-content {
    flex: 1;
    min-width: 0;
  }

  .premium-list-company {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .premium-list-desc {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 6px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
  }

  /* 새로운 프리미엄 리스트 스타일 - 상호명, 제목, 지역, 금액 */
  .premium-list-shop {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .premium-list-title {
    font-size: 13px;
    font-weight: 400;
    color: #4b5563;
    margin: 0 0 8px 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    height: auto;
    max-height: 36px;
  }

  .premium-list-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
  }

  .premium-list-region {
    color: #6b7280;
    font-weight: 500;
  }

  .premium-list-salary {
    color: var(--brand-color);
    font-weight: 600;
  }

  .premium-list-type {
    color: var(--brand-color);
    font-weight: 500;
  }

  /* 프리미엄 페이지 인디케이터 - 버튼 스타일 */
  .premium-page-indicator {
    background: var(--white);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.7rem;
    padding: 6px 12px;
    border-radius: 16px;
    font-weight: 500;
    box-shadow: var(--shadow-xs);
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  .premium-page-indicator .current-page {
    color: var(--brand-color);
    font-weight: 600;
  }

  /* VIP 스와이프 컨테이너 */
  .vip-swipe-container {
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .vip-swipe-container::-webkit-scrollbar {
    display: none;
  }

  .vip-swipe-wrapper {
    display: flex;
    width: max-content;
  }

  .vip-swipe-page {
    flex-shrink: 0;
    width: calc(100vw - 24px);
    scroll-snap-align: start;
    box-sizing: border-box;
    padding-right: 8px;
  }

  .vip-swipe-page:last-child {
    padding-right: 0;
  }

  /* VIP 모바일 그리드 (2x2) */
  .vip-grid-mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }

  .vip-grid-item {
    text-decoration: none;
    color: inherit;
  }

  .vip-grid-item .card-job {
    height: 100%;
    margin: 0;
  }

  .vip-grid-item .card-job .p-3 {
    padding: 8px !important;
  }

  .vip-grid-item .card-job .text-secondary {
    font-size: 11px !important;
    line-height: 1.3;
    margin-bottom: 4px !important;
  }

  .vip-grid-item .card-job .badge {
    font-size: 9px !important;
    padding: 2px 4px !important;
  }

  .vip-grid-item .card-job .small {
    font-size: 10px !important;
  }

  .vip-grid-item .card-job .d-flex {
    margin-bottom: 2px !important;
  }

  /* VIP 카드 (레거시, 리스트용) */
  .vip-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 4px 16px;
  }

  /* VIP 리스트 아이템 */
  .vip-list-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
  }

  .vip-list-item:last-child {
    border-bottom: none;
  }

  .vip-list-item:active {
    background: #f9fafb;
  }

  .vip-list-thumb {
    flex-shrink: 0;
    width: 132px;
    height: 88px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 10px;
  }

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

  .vip-list-content {
    flex: 1;
    min-width: 0;
  }

  .vip-list-company {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .vip-list-desc {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 6px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
  }

  .vip-list-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
  }

  .vip-list-region {
    color: #9ca3af;
  }

  .vip-list-type {
    color: var(--brand-color);
    font-weight: 500;
  }

  /* 페이지 인디케이터 스타일 */
  .vip-page-indicator {
    font-size: 13px;
    color: #6b7280;
  }

  .vip-page-indicator .current-page {
    color: var(--brand-color);
    font-weight: 700;
  }

  /* 그랜드 섹션 스타일 - VIP와 동일 */
  .grand-section .container {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }

  .grand-section .section-header {
    margin-bottom: 12px !important;
    padding: 0 4px;
  }

  .grand-section .grand-grid-pc {
    display: none !important;
  }

  .grand-section .grand-swipe-container {
    display: block !important;
  }

  /* 그랜드 페이지 인디케이터 */
  .grand-page-indicator {
    background: var(--white);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.7rem;
    padding: 6px 12px;
    border-radius: 16px;
    font-weight: 500;
    box-shadow: var(--shadow-xs);
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
  }

  .grand-page-indicator .current-page {
    color: var(--brand-color);
    font-weight: 700;
  }

  /* 그랜드 스와이프 컨테이너 */
  .grand-swipe-container {
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .grand-swipe-container::-webkit-scrollbar {
    display: none;
  }

  .grand-swipe-wrapper {
    display: flex;
    width: max-content;
  }

  .grand-swipe-page {
    flex-shrink: 0;
    width: calc(100vw - 24px);
    scroll-snap-align: start;
    box-sizing: border-box;
    padding-right: 8px;
  }

  .grand-swipe-page:last-child {
    padding-right: 0;
  }

  /* 그랜드 모바일 그리드 (2x2) */
  .grand-grid-mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }

  .grand-grid-item {
    text-decoration: none;
    color: inherit;
  }

  .grand-grid-item .card-job {
    height: 100%;
    margin: 0;
  }

  .grand-grid-item .card-job .p-3 {
    padding: 8px !important;
  }

  .grand-grid-item .card-job .text-secondary {
    font-size: 13px !important;
    line-height: 1.3;
    margin-bottom: 4px !important;
  }

  .grand-grid-item .card-job .badge {
    font-size: 11px !important;
    padding: 3px 6px !important;
  }

  .grand-grid-item .card-job .small {
    font-size: 12px !important;
  }

  .grand-grid-item .card-job .d-flex {
    margin-bottom: 2px !important;
  }

  /* 모바일에서 공지사항 & 매체소식 숨김 */
  .notice-media-section {
    display: none !important;
  }

  /* 라인 채용정보 섹션 스타일 */
  .line-section .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .line-section .section-header {
    margin-bottom: 12px !important;
    padding: 0;
  }

  /* 라인 페이지 인디케이터 */
  .line-page-indicator {
    background: var(--white);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.7rem;
    padding: 6px 12px;
    border-radius: 16px;
    font-weight: 500;
    box-shadow: var(--shadow-xs);
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
  }

  .line-page-indicator .current-page {
    color: var(--brand-color);
    font-weight: 700;
  }

  /* 라인 스와이프 컨테이너 */
  .line-swipe-container {
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .line-swipe-container::-webkit-scrollbar {
    display: none;
  }

  .line-swipe-wrapper {
    display: flex;
    width: max-content;
  }

  .line-swipe-page {
    flex-shrink: 0;
    width: calc(100vw - 24px);
    scroll-snap-align: start;
    box-sizing: border-box;
    padding-right: 8px;
  }

  .line-swipe-page:last-child {
    padding-right: 0;
  }

  /* 라인 리스트 스타일 */
  .line-list {
    background: transparent;
    border-radius: 0;
    border: none;
    overflow: visible;
  }

  .line-list-item {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.15s ease;
    margin-bottom: 0.25cm;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
  }

  .line-list-item:last-child {
    margin-bottom: 0;
  }

  .line-list-item:active {
    background-color: var(--bg-light);
  }

  .line-list-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .line-list-shop {
    font-size: 14px;
    font-weight: 700;
    color: #6b7280;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
  }

  .line-list-title {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
  }

  .line-list-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    margin-top: 4px;
  }

  .line-list-region {
    color: #6b7280;
    font-weight: 500;
  }

  .line-list-dot {
    color: #d1d5db;
  }

  .line-list-salary {
    color: var(--brand-color);
    font-weight: 600;
  }

  .line-list-empty {
    padding: 40px 16px;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
  }

  .line-list-empty p {
    margin: 0;
  }
}

/* ==================== 마사지 소식 섹션 ==================== */
.news-section {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.news-scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0 -12px;
  padding: 0 12px;
}

.news-scroll-container::-webkit-scrollbar {
  display: none;
}

.news-scroll-wrapper {
  display: flex;
  gap: 12px;
  padding-bottom: 8px;
}

.news-card {
  flex-shrink: 0;
  width: 200px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.news-card-thumb {
  width: 100%;
  height: 120px;
  overflow: hidden;
  background: #f3f4f6;
}

.news-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-content {
  padding: 12px;
}

.news-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 8px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 40px;
}

.news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #9ca3af;
}

.news-card-date {
  color: #6b7280;
}

.news-card-views {
  color: #9ca3af;
}

/* 더보기 카드 */
.news-more-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  min-height: 180px;
  background: #f9fafb;
  border: 2px dashed #e5e7eb;
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
}

.news-more-card:hover {
  background: #f3f4f6;
  border-color: var(--brand-color);
  color: var(--brand-color);
}

.news-more-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 24px;
}

.news-more-card:hover .news-more-icon {
  background: var(--brand-color);
  color: #fff;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
  .news-card {
    width: 160px;
  }

  .news-card-thumb {
    height: 100px;
  }

  .news-card-title {
    font-size: 13px;
    height: 36px;
  }

  .news-card-content {
    padding: 10px;
  }

  .news-more-card {
    width: 50px;
    min-height: 156px;
    font-size: 9px;
    border-width: 1px;
  }

  .news-more-icon {
    width: 24px;
    height: 24px;
    font-size: 12px;
    margin-bottom: 4px;
  }

  /* 마사지 소식 더보기 버튼 축소 */
  .news-section .btn-more {
    font-size: 0.7rem;
    padding: 6px 12px;
  }
}