.qsyj-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin: 0 0 16px;
}

.qsyj-section-heading h2 {
  margin: 0;
  color: var(--qsyj-green-950);
  font-size: 28px;
}

.qsyj-section-heading h3 {
  margin: 0;
  color: var(--qsyj-green-950);
  font-size: 24px;
}

.qsyj-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.qsyj-card-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.qsyj-card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.qsyj-card {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--qsyj-border);
  border-radius: var(--qsyj-radius);
  overflow: hidden;
  box-shadow: var(--qsyj-shadow);
  display: flex;
  flex-direction: column;
}

.qsyj-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef1ed;
}

.qsyj-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qsyj-card-content {
  padding: 17px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.qsyj-card h3 {
  margin: 8px 0;
  font-size: 20px;
  line-height: 1.4;
}

.qsyj-card p {
  margin: 0 0 14px;
  color: var(--qsyj-muted);
  font-size: 15px;
}

.qsyj-card-meta,
.qsyj-feed-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--qsyj-muted);
  font-size: 14px;
}

.qsyj-card-meta {
  margin-top: auto;
  justify-content: space-between;
}

.qsyj-type-badge,
.qsyj-soft-badge,
.qsyj-feed-category {
  display: inline-flex;
  width: max-content;
  padding: 3px 9px;
  border-radius: 7px;
  background: #e8f4ed;
  color: var(--qsyj-green-900);
  font-size: 14px;
  font-weight: 700;
}

.qsyj-soft-badge {
  background: #f5eddb;
  color: #7c5a19;
}

.qsyj-feed-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.qsyj-feed-item {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 44px;
  gap: 16px;
  align-items: center;
  padding: 11px;
  background: #fff;
  border: 1px solid var(--qsyj-border);
  border-radius: var(--qsyj-radius);
  box-shadow: 0 4px 15px rgba(4, 63, 45, .05);
}

.qsyj-feed-item.is-featured {
  background: linear-gradient(135deg, #fffaf0, #fff);
}

.qsyj-feed-thumb {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 11px;
  overflow: hidden;
  background: #eef1ed;
}

.qsyj-feed-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qsyj-media-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .55);
  color: #fff;
}

.qsyj-feed-body {
  min-width: 0;
}

.qsyj-feed-body h3 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.42;
}

.qsyj-feed-meta {
  flex-wrap: wrap;
}

.qsyj-favorite-btn {
  min-width: 42px;
  min-height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #6b7770;
  font-size: 30px;
  cursor: pointer;
}

.qsyj-favorite-btn.is-favorite {
  color: #c14b49;
}

.qsyj-feed-loader,
.qsyj-load-more-fallback {
  margin: 18px auto;
  color: var(--qsyj-muted);
  text-align: center;
}

.qsyj-load-more-fallback {
  display: none;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--qsyj-border);
  border-radius: 999px;
  background: #fff;
}

.qsyj-congxin-card {
  padding: 22px;
  border: 1px solid #e5e0d1;
  border-radius: var(--qsyj-radius-lg);
  background: linear-gradient(135deg, #fff, #f7f5ec);
  box-shadow: var(--qsyj-shadow);
}

.qsyj-congxin-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.qsyj-congxin-head > div:first-child {
  display: flex;
  align-items: center;
  gap: 11px;
}

.qsyj-congxin-head h2 {
  margin: 0;
  color: var(--qsyj-green-900);
  font-family: var(--qsyj-serif);
  font-size: 31px;
}

.qsyj-congxin-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--qsyj-green-900);
  color: #fff;
  font-size: 26px;
}

.qsyj-congxin-date {
  display: flex;
  gap: 14px;
  font-size: 15px;
  font-weight: 650;
}

.qsyj-status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 17px 0;
}

.qsyj-status-field {
  min-width: 0;
  min-height: 62px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid #e4e2da;
  border-radius: 13px;
  background: #fff;
}

.qsyj-status-icon {
  color: var(--qsyj-green-700);
  font-size: 25px;
  text-align: center;
}

.qsyj-status-copy {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 9px;
}

.qsyj-status-copy b {
  color: var(--qsyj-green-950);
  font-size: 16px;
  white-space: nowrap;
}

.qsyj-status-copy select {
  min-width: 0;
  width: 100%;
  height: 38px;
  padding: 0 24px 0 3px;
  border: 0;
  outline: 0;
  background-color: transparent;
  color: var(--qsyj-ink);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.qsyj-status-copy select:focus-visible {
  border-radius: 5px;
  outline: 3px solid rgba(24, 114, 79, .22);
}

.qsyj-congxin-action {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 9px;
  background: linear-gradient(90deg, var(--qsyj-green-900), #397e43);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.qsyj-congxin-action:disabled {
  cursor: wait;
  opacity: .7;
}

.qsyj-congxin-result {
  margin-top: 15px;
  padding: 16px;
  border-radius: 12px;
  background: #eef7f1;
}

.qsyj-yongnian-slim {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid #dfb456;
  border-radius: 16px;
  background: #fffaf1;
  color: #4f432f;
}

.qsyj-yongnian-slim strong {
  color: #b8862c;
  font-family: var(--qsyj-serif);
  font-size: 27px;
  white-space: nowrap;
}

.qsyj-yongnian-slim span {
  font-size: 17px;
}

.qsyj-yongnian-slim i {
  margin-left: auto;
  color: #a37321;
  font-size: 27px;
  font-style: normal;
}

.qsyj-home-article-card {
  min-width: 0;
  min-height: 174px;
  display: grid;
  grid-template-columns: 44% minmax(0, 1fr) 36px;
  align-items: stretch;
  gap: 12px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid var(--qsyj-border);
  border-radius: var(--qsyj-radius);
  background: #fff;
  box-shadow: 0 4px 16px rgba(4, 63, 45, .05);
}

.qsyj-home-article-thumb {
  position: relative;
  display: block;
  min-height: 152px;
  overflow: hidden;
  border-radius: 11px;
  background: #eef1ed;
}

.qsyj-home-article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qsyj-home-article-body {
  min-width: 0;
  padding: 5px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.qsyj-home-article-body h3 {
  margin: 10px 0 8px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 18px;
  line-height: 1.42;
}

.qsyj-home-article-body time {
  margin-top: auto;
  color: var(--qsyj-muted);
  font-size: 13px;
}

.qsyj-empty-state {
  padding: 38px;
  border: 1px solid var(--qsyj-border);
  border-radius: var(--qsyj-radius);
  background: #fff;
  text-align: center;
}

.qsyj-empty-state.is-compact {
  min-height: 0;
  padding: 25px 21px;
}

.qsyj-empty-state h3 {
  margin: 0 0 8px;
  color: var(--qsyj-green-950);
  font-size: 23px;
}

.qsyj-empty-state p {
  margin: 0;
  color: var(--qsyj-muted);
}

.qsyj-empty-action {
  display: inline-flex;
  margin-top: 14px;
  color: var(--qsyj-green-900);
  font-weight: 700;
}

.qsyj-inline-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.qsyj-secondary-link {
  color: var(--qsyj-green-900);
  font-weight: 700;
}

.qsyj-kicker {
  color: var(--qsyj-green-700);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.qsyj-comments {
  margin-top: 32px;
  padding: 28px;
  border-radius: var(--qsyj-radius);
  background: #fff;
}
