.home-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 22px 0 8px;
}

.home-info-card {
  min-width: 0;
  overflow: hidden;
  background: var(--renju-surface);
  border: 1px solid var(--renju-border);
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(53, 87, 77, 0.07);
}

.home-info-card h2 {
  margin: 0;
  padding: 11px 14px;
  background: var(--renju-primary);
  color: #FCF7EF;
  font-size: 1.12rem;
  text-align: center;
}

.home-info-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.home-info-table th,
.home-info-table td {
  padding: 9px 12px;
  border-bottom: 1px solid #E4DCCF;
  vertical-align: top;
}

.home-info-table th {
  background: var(--renju-primary-soft);
  color: var(--renju-primary-dark);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: left;
}

.home-info-table tbody tr:nth-child(even) td {
  background: #F0E8DC;
}

.home-info-table tbody tr:hover td {
  background: var(--renju-primary-soft);
}

.home-info-table tbody tr:last-child td {
  border-bottom: 0;
}

.home-info-date {
  width: 108px;
  white-space: nowrap;
  color: var(--renju-text-muted);
  font-variant-numeric: tabular-nums;
}

.home-info-title,
.home-info-content {
  overflow-wrap: anywhere;
}

.home-info-title a,
.home-info-title a:visited,
.home-info-content a,
.home-info-content a:visited {
  color: var(--renju-link);
  font-weight: 600;
}

.home-info-featured a,
.home-info-featured a:visited {
  color: #A9663E;
  font-weight: 700;
}

.home-info-actions {
  padding: 10px 12px 12px;
  text-align: center;
  border-top: 1px solid var(--renju-border);
}

.home-info-more {
  min-height: 34px;
  padding: 6px 14px;
  font-size: 0.92rem;
}

.home-info-more[hidden] {
  display: none;
}

.home-info-loading,
.home-info-empty {
  color: var(--renju-text-muted);
  text-align: center;
}

@media (max-width: 820px) {
  .home-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .home-info-table th,
  .home-info-table td {
    padding: 8px 9px;
  }

  .home-info-date {
    width: 92px;
    font-size: 0.9rem;
  }
}
