Content
카드 제목행은 최대 크기로 주어(max-content) 늘어나는 것을 방지한다
.cards { /* 카드 컨테이너 */
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
grid-gap: 20px; /* 카드간 간격 */
} .card { /* 각 카드 컬럼 */
display: grid;
grid-template-rows: max-content 300px 1fr;
} .card img {
object-fit: cover; width: 100%; height: 100%; /* 카드 이미지 */
}