.boardGallery { display: grid; gap: 3rem; grid-template-columns: repeat(3, 1fr);}
@media screen and (max-width:1023px) { /* Mobile, Tablet */
    .boardGallery { gap: 3.2rem 2rem; grid-template-columns: repeat(2, 1fr);}
}

.galleryCard { display: flex; flex-direction: column; }
.galleryCard a { display: flex; flex-direction: column; height: 100%; color: inherit; text-decoration: none; }
.galleryCard__thumb { position: relative; width: 100%; height: 100%; overflow: hidden; }
.galleryCard__thumb img { width: 100%; height: 100%; object-fit: cover; }
.galleryCard__thumb.placeholder::after { content: '이미지가 없습니다'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #909090; font-size: 0.9rem; }
.galleryCard__body { flex: 1; display: flex; flex-direction: column; padding: 1rem 0 0; }
.galleryCard__type { font-size: 1.5rem; color: var(--medium-grey); }
.galleryCard__title { font-size: 1.5rem; font-weight: 700; line-height: 2rem; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom:.2rem;}
.galleryCard__title .comment { margin-left: 0.4rem; display: inline-flex; align-items: center; }
.galleryCard__meta { display: flex; flex-wrap: wrap; }
.galleryCard__meta > span { font-size: 1.5rem; color: var(--medium-grey); line-height:2rem;}
.galleryCard__meta .view { display:none; padding-left: 1.2rem; position: relative; }
.galleryCard__meta .view::before { content: ''; position: absolute; left: 0; top: 50%; width: 0.9rem; height: 0.9rem; background: url('/assets/img/icon_view_gray.svg') center/contain no-repeat; transform: translateY(-50%); opacity: 0.6; }
.galleryNotice { grid-column: 1/-1; }
