@charset "utf-8";

/* ==========================================================================
   GNUBOARD 5 LATEST (PIC_LIST) MODERN DARK THEME
   ========================================================================== */

.pic_li_lt {
  position: relative;
  flex: 1 1 calc(33.333% - 14px);
  min-width: 280px;
  background: var(--bg-surface, #111827);
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
  border-radius: var(--radius-md, 10px);
  padding: 18px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pic_li_lt:hover {
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.pic_li_lt .lat_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
}
.pic_li_lt .lat_title a {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-highlight, #fff);
}
.pic_li_lt .lat_title a:hover {
  color: var(--accent-primary, #6366f1);
}

.pic_li_lt .lt_more {
  position: absolute;
  top: 16px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--bg-surface-elevated, #1a2234);
  color: var(--text-muted, #94a3b8);
  font-size: 12px;
  transition: all 0.2s ease;
}
.pic_li_lt .lt_more:hover {
  background: var(--accent-primary, #6366f1);
  color: #fff;
}

.pic_li_lt ul {
  padding: 0;
  margin: 0;
}
.pic_li_lt li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.04));
  font-size: 13px;
}
.pic_li_lt li:last-child {
  border-bottom: 0;
}

/* 첫 번째 이미지 썸네일 */
.pic_li_lt li .lt_img {
  display: none;
}
.pic_li_lt li:first-child .lt_img {
  display: block;
  margin: 0 0 12px;
  border-radius: var(--radius-sm, 6px);
  overflow: hidden;
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
}
.pic_li_lt li:first-child .lt_img img,
.pic_li_lt li .lt_img video {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.pic_li_lt li:first-child:hover .lt_img img {
  transform: scale(1.04);
}

.pic_li_lt li .pic_li_tit {
  display: inline-block;
  color: var(--text-main, #f1f5f9);
  font-weight: 500;
  max-width: 75%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}
.pic_li_lt li a:hover {
  color: var(--accent-primary, #6366f1);
}

.pic_li_lt .lt_cmt {
  display: inline-block;
  background: rgba(99, 102, 241, 0.15);
  color: var(--accent-primary, #6366f1);
  font-size: 11px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 10px;
  margin-left: 6px;
  vertical-align: middle;
}

.pic_li_lt li .new_icon {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.15);
  padding: 1px 5px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
}
.pic_li_lt li .hot_icon {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.15);
  padding: 1px 5px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
}

.pic_li_lt .lt_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-sub, #64748b);
  margin-top: 4px;
}
.pic_li_lt .empty_li {
  padding: 40px 0;
  text-align: center;
  color: var(--text-sub, #64748b);
}