@charset "UTF-8";
/* --------------------- sec 1 start--------------------- */
.sec_1 .container .wrapper .category button {
  min-width: unset;
}
.sec_1 .container .wrapper .list_area ul {
  border-top: 2px solid #000;
}
.sec_1 .container .wrapper .list_area ul .list_item {
  border-bottom: 1px solid #ddd;
  position: relative;
}
.sec_1 .container .wrapper .list_area ul .list_item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  background: #4380d6;
  filter: blur(3px);
  opacity: 0.05;
  transition: 0.5s;
  z-index: -1;
}
.sec_1 .container .wrapper .list_area ul .list_item:hover::after {
  height: 100%;
}
.sec_1 .container .wrapper .list_area ul .list_item .list_link {
  padding: 35px 0;
}
.sec_1 .container .wrapper .list_area ul .list_item .list_link dl {
  width: calc(100% - 6.15vw - 90px);
}
.sec_1 .container .wrapper .list_area ul .list_item .list_link dl dt {
  font-size: clamp(19px, 1.25vw, 24px);
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.sec_1 .container .wrapper .list_area ul .list_item .list_link dl dt span {
  color: #4380d6;
}
.sec_1 .container .wrapper .list_area ul .list_item .list_link dl dd {
  font-size: clamp(16px, 0.94vw, 18px);
  line-height: 1.67; /* 30px */
  color: #666666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  word-break: break-all;
}
.sec_1 .container .wrapper .list_area ul .list_item .list_link .date {
  white-space: nowrap;
  font-size: 15px;
  color: #aaaaaa;
}

/* --------------------- RWD --------------------- */
@media (max-width: 750px) {
  .sec_1 .container .wrapper .list_area ul .list_item .list_link {
    flex-wrap: wrap;
    padding: clamp(20px, 5.33vw, 40px) 0;
  }
  .sec_1 .container .wrapper .list_area ul .list_item .list_link dl {
    width: 100%;
  }
  .sec_1 .container .wrapper .list_area ul .list_item .list_link dl dt {
    font-size: clamp(16px, 4.8vw, 36px);
    line-height: 1.44; /* 52px */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
    white-space: wrap;
    padding-bottom: 0;
  }
  .sec_1 .container .wrapper .list_area ul .list_item .list_link dl dt span {
    display: block;
  }
  .sec_1 .container .wrapper .list_area ul .list_item .list_link dl dd {
    font-size: clamp(14px, 4vw, 30px);
    line-height: 1.67; /* 50px */
  }
  .sec_1 .container .wrapper .list_area ul .list_item .list_link .date {
    font-size: clamp(13px, 3.47vw, 26px);
    line-height: 1.19; /* 31px */
  }
}
/* 버튼 hover용 */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #1e3960;
  }
}
@keyframes pulse_green {
  0% {
    box-shadow: 0 0 0 0 #82a006;
  }
}
@keyframes pulse_red {
  0% {
    box-shadow: 0 0 0 0 #d65047;
  }
}
@keyframes pulse_yellow {
  0% {
    box-shadow: 0 0 0 0 #eeab00;
  }
}
@keyframes pulse_white {
  0% {
    box-shadow: 0 0 0 0 #fff;
  }
}
@keyframes pulse_sky_blue {
  0% {
    box-shadow: 0 0 0 0 #4380d6;
  }
}