.lt {
  position: relative;
  width: 100%;
  font-family: 'Galmuri11', monospace;
  font-size: 11px;
  line-height: 1.5;

  border: 1px solid #555;
  border-radius: 6px;
  background: #fff;
  margin-bottom: 15px;
  box-sizing: border-box;

  /* ✅ 전체 고정 높이 */
  height: 150px;

  display: flex;
  flex-direction: column;
}

/* 초록 띠 + 제목 */
.lt_title {
  flex: 0 0 auto;            /* 위에 고정 */
  background: #B3BDB3;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  padding: 5px 10px;
  box-sizing: border-box;
  z-index: 2;
}

/* 리스트 영역만 스크롤 */
.lt ul {
  flex: 1 1 auto;            /* 남는 공간 다 차지 */
  margin: 0;
  padding: 8px 10px;
  list-style: none;

  overflow-y: auto;          /* ✅ 스크롤은 여기서만 발생 */
  overflow-x: hidden;
}

.lt li {
  padding: 3px 0;
  border-bottom: 1px solid #eee;
}
.lt li:last-child {
  border-bottom: none;
}

/* 제목 */
.lt-subject {
  font-weight: normal;
  margin-bottom: 2px;
  display: inline-block;
}

/* 날짜 */
.lt-date {
  font-size: 9px;
  color: #888;
  text-align: right;
}

/* 아이콘 */
.material-icons {
  font-size: 12px !important;
  color: #B3BDB3 !important;
  vertical-align: middle;
}

.lt-prefix {
  font-weight: bold;
  color: #555;
}
