.section-card-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 28px;
  padding: 32px 0;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.section-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 370px;
  min-height: 370px;
  max-height: 370px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border: 1.5px solid #e0e7ff;
  overflow: hidden;
  text-decoration: none;
  color: #222;
  transition: none;
}
.section-card-image {
  width: 100%;
  height: 220px;
  min-height: 220px;
  max-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}
.section-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  border: none;
  background: #fff;
}
.section-card-info {
  width: 100%;
  height: 150px;
  min-height: 150px;
  max-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 18px 14px 14px 14px;
  min-width: 0;
  box-sizing: border-box;
}
.section-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #111;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-word;
  text-align: center;
  width: 100%;
  max-height: 4.8rem;
}
.section-card-price {
  font-size: 1.15rem;
  font-weight: 600;
  color: #111;
  background: #e0e7ff;
  border-radius: 8px;
  padding: 6px 0;
  width: 95%;
  text-align: center;
}
.section-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  padding: 0 0 28px;
  flex-wrap: wrap;
}
.section-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  text-decoration: none;
  color: #111;
  background: #fff;
  font-weight: 600;
}
.section-page-link.is-active {
  border-color: #111;
  background: #111;
  color: #fff;
}
@media (max-width: 1024px) {
  .section-card-list {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    padding: 12px 1% !important;
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    justify-items: center !important;
    place-items: center !important;
  }
  .section-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    flex-direction: column !important;
    align-items: center !important;
    min-height: auto !important;
    max-height: none !important;
    height: auto !important;
    border-radius: 14px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }
  .section-card-image {
    width: 100% !important;
    min-width: 0 !important;
    justify-content: center !important;
    min-height: 100px !important;
    height: 38vw !important;
    max-height: 42vw !important;
    box-sizing: border-box !important;
  }
  .section-card-info {
    width: 100% !important;
    padding: 18px 12px 16px 12px !important;
    align-items: center !important;
    min-height: 130px !important;
    max-height: none !important;
    height: auto !important;
    box-sizing: border-box !important;
    justify-content: flex-start !important;
  }
  .section-card-title {
    font-size: 2rem !important;
    text-align: center !important;
    line-height: 1.4 !important;
    max-height: none !important;
    margin-bottom: 14px !important;
    -webkit-line-clamp: 5 !important;
    font-weight: 700 !important;
  }
  .section-card-price {
    font-size: 1.8rem !important;
    width: 100% !important;
    margin-top: auto !important;
    padding: 10px 0 !important;
    font-weight: 600 !important;
  }
  .section-pagination {
    padding: 4px 0 20px;
    gap: 6px;
  }
  .section-page-link {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    font-size: 0.95rem;
  }
}
