.dd_list_title_str {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 6.4rem;
  border-bottom: 1px solid var(--body-color);
}
.dd_list_title_str a {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
  float: right;
  line-height: 6.4rem;
}

.dd_list_title a {
  display: flex;
  justify-content: space-between;
  gap: 1.6rem;
  line-height: 5rem;
  border-bottom: 1px solid var(--line-color);
}
.dd_list_title strong {
  flex: 0 0 calc(100% - 12rem);
  min-width: 0;
  font-size: 1.7rem;
  font-weight: 400;
  /* 한 줄 말줄임 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .dd_list_title strong {
    flex: 0 0 32rem;
    min-width: 0;
    font-size: 1.7rem;
    font-weight: 400;
    /* 한 줄 말줄임 */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.dd_list_title p {
  font-size: 1.6rem;
  margin-bottom: 2.4rem;
}

.dd_list_title small {
  margin-left: auto;
  white-space: nowrap;
  color: var(--body-color);
  font-size: 1.6rem;
  opacity: 0.5;
}

/* 말줄임 유틸리티 클래스 */
/* 한 줄 말줄임 */
.ellipsis-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 2줄 말줄임 */
.ellipsis-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 3줄 말줄임 */
.ellipsis-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
