.ft-category-page .ft-hero-inner {
  grid-template-columns: minmax(0, 1fr);
  max-width: 980px;
  gap: 24px;
}

.ft-category-page .ft-collection-grid,
.ft-category-page .ft-use-grid {
  display: grid;
  gap: 22px;
}

.ft-category-page .ft-collection-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ft-category-page .ft-use-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ft-category-page .ft-note-band {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid var(--ft-line);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
  box-shadow: var(--ft-shadow);
  color: var(--ft-text-mid);
  font-size: 14px;
  line-height: 1.85;
}

.ft-category-page .ft-note-band strong {
  color: var(--ft-primary-dark);
}

@media (max-width: 1080px) {
  .ft-category-page .ft-collection-grid,
  .ft-category-page .ft-use-grid {
    grid-template-columns: 1fr;
  }
}
