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

.home-info-card {
  min-width: 0;
}

.home-info-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}

.home-info-card h2 {
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--renju-text);
  font-size: 1.35rem;
  line-height: 1.4;
  text-align: left;
}

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

.home-info-table td {
  padding: 12px 4px;
  border-bottom: 1px solid var(--renju-border);
  vertical-align: middle;
  background: transparent;
}

.home-info-table tbody tr:hover td {
  background: rgba(226, 239, 234, 0.48);
}

.home-info-date {
  width: 112px;
  padding-right: 14px !important;
  white-space: nowrap;
  color: var(--renju-text-muted);
  font-size: 0.94rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.home-info-title,
.home-info-content {
  overflow-wrap: anywhere;
  color: var(--renju-text);
}

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

.home-info-title a:hover,
.home-info-content a:hover {
  color: var(--renju-link-hover);
}

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

.home-info-more {
  flex: 0 0 auto;
  min-height: 0;
  margin: 0;
  padding: 4px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--renju-primary-dark);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  box-shadow: none;
}

.home-info-more:hover,
.home-info-more:focus-visible {
  border: 0;
  background: transparent;
  color: var(--renju-link-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
  transform: none;
}

.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;
    gap: 28px;
  }
}

@media (max-width: 560px) {
  .home-info-grid {
    margin-top: 22px;
  }

  .home-info-card h2 {
    font-size: 1.2rem;
  }

  .home-info-table td {
    padding: 10px 2px;
  }

  .home-info-date {
    width: 96px;
    padding-right: 10px !important;
    font-size: 0.86rem;
  }

  .home-info-title,
  .home-info-content {
    font-size: 0.95rem;
  }

  .home-info-more {
    font-size: 0.86rem;
  }
}
