/* ===== Latest Card Skin ===== */
.latest-card-wrap {
  padding: 0.5rem 0;
}

/* ── 카드 기본 ── */
.lc-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.28s ease, transform 0.28s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.lc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

/* ── 썸네일 ── */
.lc-card__thumb-link {
  display: block;
  overflow: hidden;
}

.lc-card__thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;   /* 이미지 비율 고정 */
  overflow: hidden;
  background: #f0f0f0;
}

.lc-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.38s ease;
  display: block;
}

.lc-card:hover .lc-card__thumb {
  transform: scale(1.06);
}

/* ── 텍스트 영역 ── */
.lc-card__body {
  padding: 2rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
  background-color: #ffe9e9;
}

/* ── 제목: 3줄 말줄임 ── */
.lc-card__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lc-card__title a {
  color: inherit;
  text-decoration: none;
}

.lc-card__title a:hover {
  color: #3b82f6;
}

/* ── 날짜 / 댓글 ── */
.lc-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.3rem;
}

.lc-card__date {
  font-size: 18px;
  color: #a39494;
}

.lc-card__comment {
  font-size: 0.78rem;
  color: #aaa;
}

/* ── 게시물 없음 ── */
.lc-empty {
  text-align: center;
  padding: 2.5rem 0;
  color: #999;
  font-size: 0.9rem;
}
