main{
    min-height: 70vh;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: var(--space-32);
  align-items: stretch;
}
.card-grid li { display: flex; }

.card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 0.5px solid #e8e8e8;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card-link:hover { transform: translateY(-4px); border-color: #ccc; }
.card-link:hover .card-thumb img { transform: scale(1.05); }

.card-thumb { aspect-ratio: 16/9; overflow: hidden; background: #f5f5f5; }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }

.card-body { padding: 14px 16px; display: flex; flex-direction: column; gap: 7px; flex: 1; }

.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #e6f1fb;
  color: #185fa5;
  padding: 3px 9px;
  border-radius: 20px;
  align-self: flex-start;
}
.card-title { font-size: 14px; font-weight: 500; margin: 0; line-height: 1.45; 
display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;}
.card-desc {
  font-size: 12px;
  color: #666;
  margin: 0;
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #999;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}

h1.pillar-h1 {
    text-align: center;
    margin-top: var(--space-24);
    text-shadow: var(--shadow-ambinent-light);
    font-weight: 500;
    color: var(--rust-light);
    letter-spacing: var(--space-4);
}