@charset "utf-8";

#new_lat {
  background-color: #fafafa;
  margin-bottom: 10px;
  
  /* 시각적 분리를 위한 배경 레벨 조정 */
  backdrop-filter: blur(2px); /* 살짝 흐릿하게 배경 겹침 효과 */
  -webkit-backdrop-filter: blur(2px);
}

#new_lat .lat_title {
    font-size: 14px;
    font-weight: 600;
    color: #2e2e2e;
    padding: 15px;
    padding-bottom:13px;
    display:flex;
    align-items:center;
    width: 100%;
    justify-content: space-between;
}

#new_lat .lat_title a {
    color: inherit;
    text-decoration: none;
}

#new_lat .tbl_head_lt {
    padding: 8px 20px;
}

#new_lat .post-list {
    list-style: none;
    margin: 0;
    padding: 0;
    grid-template-columns: none;
}



#new_lat .post-item {
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}

#new_lat .post-item:last-child {
    border-bottom: none;
}

#new_lat .lat_board_link {
    font-size: 12px;
    color: #525bf4;
}

#new_lat .lat_board_link:hover {
    color: #293fcb;
}

#new_lat .post-title-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#new_lat .post-title-wrapper a {
    text-decoration: none;
    color: #222;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#new_lat .new_cmt {
    flex-shrink: 0;
    color: #ef4444;
    font-size: 13px;
    font-weight: 500;
}

#new_lat .post-info {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 4px;
}

#new_lat .empty_table {
    text-align: center;
    color: #9ca3af;
    padding: 20px 0;
    font-size: 14px;
}

.post-title {
    color: #3e3e3e;
    font-weight: 500;
    font-size: 14.2px;
}

.post-title:hover {
    color: #525bf4;
}

#new_lat .lat_board_link,
#new_lat .post-title {
    display: block;
    width: 100%;
}

.lat_slider_wrapper {
    position: relative;
    overflow: hidden;
    padding: 7px 20px;
}

.lat_slider_container {
    overflow: hidden;
}

.lat_slider_track {
    display: flex;
    transition: transform 0.2s ease-in-out;
}

.lat_slider_slide {
    flex: 0 0 100%;
    box-sizing: border-box;
}

.lat_slider_prev, .lat_slider_next {
    width: 32px;
    height: 24px;
    border: none;
    border-radius: 8px;
    background: #eee;
    color: #080808;
    cursor: pointer;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 2px;
    user-select: none;
    line-height: 24px; 
}

.lat_slider_prev:focus,
.lat_slider_next:focus {
    outline: none;
}

.lt_bt_wrapper {
  display: flex;
  justify-content: center;  
  align-items: center;   
  padding-bottom: 1px;
}

.lat_slider_prev.disabled,
.lat_slider_next.disabled {
    opacity: 0.7;
    pointer-events: none;
    cursor: default;
}