#feedList.v3-owner-feed {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 12px;
  background: #f2f3f5;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.home-title {
  position: relative;
  padding: 14px 12px 10px;
  background: #f5f6fa;
}

.home-title-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 420px;
  margin: 0 auto;
}

.home-title-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gray-2);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transform: translateY(-50%);
}

.home-title-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-title-text {
  min-width: 0;
  text-align: center;
}

.home-title h1 {
  margin: 0 0 5px;
  color: var(--gray-6);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.home-title p {
  margin: 0;
  color: var(--gray-5);
  font-size: 13px;
  line-height: 1.3;
}

.sw {
  padding: 8px 12px 4px;
}

.sb {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 14px;
  background: #fff;
  border: 1.5px solid var(--gray-2);
  border-radius: 20px;
  transition: border-color 0.2s;
}

.sb:focus-within {
  border-color: var(--primary);
}

.sb .si {
  margin-right: 8px;
  color: var(--gray-4);
  font-size: 16px;
}

.sb input {
  flex: 1;
  height: 100%;
  color: var(--gray-6);
  font-size: 14px;
  background: transparent;
}

.sb input::placeholder {
  color: var(--gray-4);
}

.sbtn {
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin-left: 8px;
  padding: 0 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  background: var(--primary);
  border-radius: 14px;
}

.sbtn:active {
  opacity: 0.85;
}

.filter-panel {
  padding: 2px 12px 4px;
  overflow: hidden;
  background: #f5f7fa;
  border-bottom: 1px solid #edf1f7;
}

.fts {
  width: 100%;
  min-width: 0;
  flex: 1 1 auto;
}

.tags-container {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  gap: 8px;
  padding: 2px;
  background: #fff;
  border-radius: 11px;
  box-shadow: none;
}

.biz-tags,
.intent-tags {
  min-width: 0;
  display: grid;
  flex-wrap: nowrap;
  align-items: center;
  gap: 4px;
}

.biz-tags {
  flex: 1 1 auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-content: stretch;
}

.intent-tags {
  flex: 0 0 78px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: stretch;
}

.intent-sep {
  display: none;
}

.tag-btn {
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  padding: 0 4px;
  color: #595959;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 11px;
  outline: none;
  transition: all 0.2s ease;
}

.tag-btn:hover {
  color: #40a9ff;
  border-color: #40a9ff;
}

.tag-btn.act {
  color: #fff;
  background: #1677ff;
  border-color: #1677ff;
  box-shadow: none;
}

.tag-btn.secondary {
  color: #ff7d00;
  border-color: #ff7d00;
}

.tag-btn.secondary:hover {
  color: #ff7d00;
  background: #fff7e6;
  border-color: #ff7d00;
}

.tag-btn.secondary.act {
  color: #fff;
  background: #ff7d00;
  border-color: #ff7d00;
  box-shadow: none;
}

.filter-panel.is-wish .tag-btn.secondary,
.tag-btn.secondary.disabled {
  pointer-events: none;
  opacity: 0.45 !important;
  box-shadow: none;
}

.tag-btn:active {
  transform: scale(0.95);
}

.lm {
  padding: 16px;
  color: var(--gray-4);
  font-size: 13px;
  text-align: center;
}

.lm .ls {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
  border: 2px solid var(--gray-2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.site-legal {
  padding: 18px 12px;
  color: var(--gray-4);
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}

.site-legal a {
  color: var(--gray-4);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .filter-panel {
    padding: 2px 12px 4px;
    background: #f5f7fa;
  }

  #filterTabs > .tags-container {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 76px;
    align-items: center;
    justify-content: stretch;
    box-sizing: border-box;
    gap: 6px;
    padding: 2px;
    overflow: visible;
  }

  #filterTabs .biz-tags,
  #filterTabs .intent-tags {
    width: 100%;
    gap: 4px;
  }

  #filterTabs .biz-tags {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  #filterTabs .intent-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #filterTabs > .tags-container .tag-btn {
    min-width: 0;
    height: 22px;
    padding: 0 2px;
    font-size: 11px;
  }
}

@media (min-width: 1024px) {
  .sw {
    max-width: 600px;
    margin: 0 auto;
  }

  .filter-panel {
    max-width: 760px;
    justify-content: center;
    margin: 0 auto;
  }
}
