@charset "utf-8";

/* 새글 스킨 (latest) */
.pic_lt {
  width: 100%;
  position:relative;
  display: flex;
  flex-flow: column;
  gap: var(--gap-5);
}
.pic_lt .lat_header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--gap-2-5);
  border-bottom: 1px solid var(--gray-color);
}
.pic_lt .lat_title {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--font-size-xl);
  font-weight: 300;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--navy-color);
}

.pic_lt .lt_more {
  white-space: nowrap;
  font-size: var(--font-size-md);
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--navy-color);
}
.pic_lt ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-7);
}
.pic_lt li {
  display: flex;
  flex-flow: column;
}
.pic_lt li .lt_img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--gap-2-5);
}
.pic_lt li .lt_img img, .pic_lt li .lt_img video{
  width:100%;
  height:100%;
  object-fit: cover;
}
.pic_lt li .lt_title {
  font-size: var(--font-size-md);
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.02em;
}

.pic_lt .profile_img img{border-radius:50%}

.lt_info {
  width: 100%;  
  margin-top: 5px;
}
.lt_info .lt_nick {}
.lt_info .lt_date {
  font-size: var(--font-size-md);
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #888888;
}

.pic_lt .empty_li {line-height:145px ;color:#666;text-align:center;padding:0}
.pic_lt .empty_li:before {background:none;padding:0}

.pic_lt .lt_cmt {background:#e9eff5;color:#3a8afd;font-size:11px;height:16px;line-height:16px;padding:0 5px;border-radius:3px;vertical-align:middle}


@media (max-width: 768px) {
  .pic_lt {
    gap: var(--gap-2-5);
  }
  .pic_lt .lat_title {
    gap: var(--gap-2-5);
    font-size: var(--font-size-base);
  }
  .pic_lt .lat_title>img{
    width: var(--gap-3);
    height: auto;
  }
  .pic_lt .lt_more {
    font-size: var(--font-size-2xs);
  }
  .pic_lt ul {
    grid-template-columns: repeat(2, 1fr);
    row-gap: var(--gap-5);
    column-gap: var(--gap-4);
  }
  .pic_lt li .lt_img {
    height: 29.33vw;
    margin-bottom: 1.33vw;
  }
  .pic_lt li .lt_title {
    font-size: var(--font-size-2xs);
  }
  
  .lt_info {
    margin-top: 0.8vw;
  }
  .lt_info .lt_date {
    font-size: var(--font-size-2xs);
  }
}