/* 网址分类的方形卡片只改内部排版；外层仍复用主题的卡片背景、边框和悬停动效。 */
.wpnav-section-grid:has(.wpnav-resource-card--site-square) {
  grid-template-columns: repeat(auto-fill, minmax(142px, 1fr));
  gap: 14px;
}
.wpnav-resource-card--site-square {
  position: relative;
  display: block;
  min-height: 130px;
  overflow: hidden;
}
.wpnav-resource-card--site-square .wpnav-resource-card-link {
  height: 100%;
  padding: 24px 10px 16px !important;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  text-align: center;
}
.wpnav-resource-card--site-square .wpnav-resource-icon { width: 44px; height: 44px; }
.wpnav-resource-card--site-square .wpnav-resource-body { width: 100%; flex: none; align-items: center; gap: 3px; }
.wpnav-resource-card--site-square .wpnav-resource-title-row { width: 100%; }
.wpnav-resource-card--site-square .wpnav-resource-title { display: block; overflow: hidden; text-overflow: ellipsis; }
.wpnav-resource-card--site-square .wpnav-resource-platforms {
  position: absolute;
  top: 5px;
  right: 8px;
  z-index: 1;
  justify-content: center;
  min-height: 15px;
  margin-top: 0;
}
.wpnav-resource-card--site-square .wpnav-resource-platforms { display: flex !important; }
.wpnav-resource-card--site-square .wpnav-resource-desc { display: none !important; }
.wpnav-resource-card--site-square .wpnav-resource-title-row { justify-content: center; }
.wpnav-resource-card--site-square .wpnav-resource-body { text-align: center; }
.wpnav-cat-grid-item:has(.wpnav-resource-card--site-square) { min-width: 0; }
.wpnav-resource-card--site-square .wpnav-resource-platform-text {
  display: block;
  max-width: 100%;
  overflow: hidden;
  color: var(--wpnav-text-faint);
  font-size: 12px;
  line-height: 1.35;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.wpnav-resource-card--site-square .wpnav-resource-detail-btn { display: none; }
.wpnav-resource-card--site-square .wpnav-resource-corner-badge { top: 6px; right: 6px; }
@media (max-width: 640px) {
  .wpnav-section-grid:has(.wpnav-resource-card--site-square) { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .wpnav-resource-card--site-square { min-height: 124px; }
}
