.cases-section {
  background: linear-gradient(180deg, #DFE2E8 0%, #D6DAE2 100%);
  padding: 72px 0 80px;
}

.cases-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.cases-header {
  text-align: left;
  margin-bottom: 48px;
}

.cases-label {
  color: #7C8494;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.cases-title {
  color: #0B0F1A;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -1px;
}

/* 카드 그리드 */
.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* 개별 카드 */
.case-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

/* 상단 골드 라인 */
.case-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #C9A96E, #E2C992);
}

/* NEW 뱃지 */
.case-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #0B0F1A;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* 업체명 */
.case-name {
  color: #0B0F1A;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  margin-top: 4px;
}

/* 카테고리 */
.case-category {
  color: #7C8494;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

/* 설명 */
.case-note {
  color: #5E6577;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* 경고 문구 */
.case-alert {
  color: #9CA3AF;
  font-size: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F0F0F0;
}

/* 상태 */
.case-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.case-status-badge {
  color: #C9A96E;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.case-phone {
  color: #7C8494;
  font-size: 13px;
}

/* 카드 버튼 통일 */
.case-btn {
  display: block;
  width: 100%;
  padding: 14px;
  color: #475569;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border: 1.5px solid #CBD5E1;
  border-radius: 10px;
  transition: all 0.25s;
  background: transparent;
  margin-bottom: 10px;
}

.case-btn:last-child {
  margin-bottom: 0;
}

.case-btn:hover {
  color: #ffffff;
  background: #475569;
  border-color: #475569;
}

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

.page-btn {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #7C8494;
  background: rgba(255,255,255,0.5);
  transition: all 0.2s;
}

.page-btn:hover {
  background: #ffffff;
  color: #0B0F1A;
}

.page-btn.active {
  background: #0B0F1A;
  color: #ffffff;
}
