@charset "utf-8";

/* ==========================================================================
   GNUBOARD 5 LATEST (PIC_BLOCK - GALLERY) DARK THEME
   ========================================================================== */

.pic_lt {
  position: relative;
  background: var(--bg-surface, #111827);
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
  border-radius: var(--radius-md, 10px);
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

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

.pic_lt ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
}
.pic_lt li {
  list-style: none;
  background: var(--bg-surface-elevated, #1a2234);
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.05));
  border-radius: var(--radius-sm, 6px);
  overflow: hidden;
  padding: 10px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.pic_lt li:hover {
  transform: translateY(-3px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.pic_lt li .lt_img {
  margin-bottom: 10px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: #080b13;
}
.pic_lt li .lt_img img,
.pic_lt li .lt_img video {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.pic_lt li:hover .lt_img img {
  transform: scale(1.06);
}

.pic_lt li a {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-main, #f1f5f9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}
.pic_lt li a:hover {
  color: var(--accent-primary, #6366f1);
}

.pic_lt .lt_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-sub, #64748b);
}

.pic_lt .lt_cmt {
  background: rgba(99, 102, 241, 0.15);
  color: var(--accent-primary, #6366f1);
  font-size: 10px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 8px;
}

.pic_lt .empty_li {
  grid-column: 1 / -1;
  padding: 40px 0;
  text-align: center;
  color: var(--text-sub, #64748b);
  background: transparent;
  border: 0;
}