.case-list-container {
  max-width: 1520px;
  margin: 0 auto;
  box-sizing: border-box;
}
.case-list-container > * {
  box-sizing: border-box;
}
.case-list-container .case-list-category {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 40px 0;
  padding: 0;
  list-style: none;
  border: none;
}
.case-list-container .case-list-category:after {
  display: none;
}
.case-list-container .case-list-category > li {
  float: none;
  border: none;
  margin: 0;
  position: relative;
}
.case-list-container .case-list-category > li > a {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 24px;
  border-radius: 999px;
  background: white;
  color: #666;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  float: none;
  line-height: normal;
}
.case-list-container .case-list-category > li:hover > a {
  color: #333;
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.case-list-container .case-list-category > li.on > a {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
  border-color: transparent;
  border-top: none;
}
.case-list-container .case-list-category > li ul {
  display: block;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 160px;
  background: white;
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  margin: 0;
}
.case-list-container .case-list-category > li ul li {
  display: block;
  float: none;
  width: 100%;
  margin: 0;
  border: none;
}
.case-list-container .case-list-category > li ul li a {
  display: block;
  width: 100%;
  height: auto;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: #666;
  background: transparent;
  box-shadow: none;
  text-align: left;
  border: none;
}
.case-list-container .case-list-category > li ul li a:hover {
  background: #f0f0f0;
  color: #333;
  transform: none;
}
.case-list-container .case-list-category > li ul li.on_ > a {
  color: #764ba2;
  background: rgba(118, 75, 162, 0.1);
  font-weight: 700;
}
.case-list-container .case-list-category > li:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 767px) {
  .case-list-container .case-list-category {
    flex-wrap: nowrap;
    justify-content: center;
    overflow-x: auto;
    padding: 4px 20px 10px 20px;
    margin: 0 -20px 20px -20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .case-list-container .case-list-category::-webkit-scrollbar {
    display: none;
  }
  .case-list-container .case-list-category > li {
    flex: 0 0 auto;
  }
  .case-list-container .case-list-category > li > a {
    height: 36px;
    padding: 0 16px;
    font-size: 14px;
    white-space: nowrap;
  }
  .case-list-container .case-list-category > li:hover > a {
    transform: none;
  }
  .case-list-container .case-list-category > li ul {
    left: 0;
    transform: translateY(10px);
    min-width: 140px;
  }
  .case-list-container .case-list-category > li:hover ul {
    transform: translateY(0);
  }
}
.case-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
@media (min-width: 768px) {
  .case-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .case-list-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.case-list-card {
  display: block;
  background: white;
  border-radius: 20px;
  padding: 24px 24px 32px 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  text-decoration: none;
  color: inherit;
  position: relative;
}
.case-list-card.case-list-animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.case-list-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.case-list-card:hover .case-list-card-type {
  transform: scale(1.05);
}
.case-list-checkbox {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
}
.case-list-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #764ba2;
}
.case-list-card-type {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
.case-list-type-recovery {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}
.case-list-type-bankruptcy {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}
.case-list-card-header {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  height: 200px;
}
.case-list-circle-chart {
  position: relative;
  width: 180px;
  height: 180px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}
.case-list-circle-bg {
  fill: none;
  stroke: #f0f0f0;
  stroke-width: 10;
}
.case-list-circle-progress {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.case-list-circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -35%);
  text-align: center;
}
.case-list-percentage {
  font-size: 35px;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 5px;
  animation: case-list-pulse 2s ease-in-out infinite;
}
@keyframes case-list-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.case-list-label {
  font-size: 12px;
  color: #666;
  font-weight: 600;
}
.case-list-card-title {
  font-size: 16px;
  color: #222;
  margin-bottom: 16px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}
.case-list-info-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #555;
  padding: 12px;
  border-radius: 8px;
  background-color: #eff1f3;
  justify-content: center;
  font-weight: 600;
}
.case-list-info-icon {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.case-list-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
  margin: 20px 0;
}
.case-list-amount-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  min-height: 28px;
}
.case-list-amount-label {
  font-size: 15px;
  color: #999;
  font-weight: 500;
}
.case-list-amount-value {
  font-size: 16px;
  color: #333;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.case-list-total-debt {
  color: #666;
}
.case-list-relief-amount {
  font-size: 20px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}
.list-bottom {
  max-width: 1520px;
  margin: 40px auto;
  padding: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .list-bottom {
    flex-direction: column;
    gap: 20px;
  }
}
.pagination {
  margin: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.pagination a, .pagination strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 6px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  color: #555;
}
.pagination a:hover, .pagination strong:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #333;
}
.pagination strong {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}
.pagination strong:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: translateY(-2px);
}
.pagination .direction {
  padding: 0 12px;
  font-size: 13px;
  color: #666;
}
.pagination .direction i {
  font-size: 12px;
}
.pagination .direction:hover {
  color: #333;
}
.btn-area {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .btn-area {
    position: static;
    width: 100%;
    justify-content: flex-end;
  }
}
.btn-write {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-write:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.4);
  color: white;
}
.btn-basic {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  background: white;
  color: #555;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-basic:hover {
  background: #f0f0f0;
  border-color: #999;
  color: #333;
}
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: white;
  color: #666;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-icon:hover {
  background: #f0f0f0;
  color: #333;
  transform: rotate(90deg);
}
/*# sourceMappingURL=474770203d63f5ee1da664fc158f78deaf1ee743.list.scss.map */
