.case-list-container {
  margin: 0 auto;
  box-sizing: border-box;
}
.case-list-container > * {
  box-sizing: border-box;
}
.case-list-grid {
  padding: 20px 0;
}
@media (max-width: 767px) {
  .case-list-grid.swiper {
    overflow: hidden;
  }
  .case-list-grid .swiper-wrapper {
    display: flex;
  }
  .case-list-grid .swiper-slide {
    width: auto;
    flex-shrink: 0;
    height: auto;
  }
}
@media (min-width: 768px) {
  .case-list-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 20px 25px;
    overflow: visible !important;
  }
  .case-list-grid .swiper-wrapper {
    display: contents;
  }
  .case-list-grid .swiper-slide {
    display: contents;
  }
}
@media (min-width: 1200px) {
  .case-list-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.case-list-card {
  display: block;
  background: white;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 10px 10px 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;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .case-list-card {
    width: calc(100vw - 80px);
    max-width: 320px;
    margin: 0 12px;
  }
}
.case-list-card.case-list-animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@media (min-width: 768px) {
  .case-list-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
  .case-list-card:hover .case-list-card-type {
    transform: scale(1.05);
  }
}
.case-list-card-inner {
  position: relative;
  padding: 24px 24px 0 24px;
}
.case-list-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}
.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;
  position: relative;
  z-index: 1;
}
.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;
  z-index: 1;
}
.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;
  padding: 0 24px;
}
.case-list-info-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 24px 16px 24px;
  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 24px;
}
.case-list-amount-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  min-height: 28px;
  padding: 0 24px;
}
.case-list-amount-row:last-child {
  padding-bottom: 32px;
  margin-bottom: 0;
}
.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;
}
@media (max-width: 767px) {
  .case-list-grid .swiper-pagination {
    position: relative;
    margin-top: 24px;
    bottom: auto;
    text-align: center;
  }
  .case-list-grid .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #d0d0d0;
    opacity: 1;
    margin: 0 4px;
    transition: all 0.3s ease;
  }
  .case-list-grid .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #667eea;
    width: 24px;
    border-radius: 4px;
  }
}
@media (min-width: 768px) {
  .case-list-grid .swiper-pagination {
    display: none;
  }
}
/*# sourceMappingURL=3525f32a945d1875630fdff4148795d544c3e892.index.scss.map */
