main > section:first-child {
  padding: 54px 15px 0px;
  max-width: 1040px;
  margin: auto;
}

.title {
  font-size: var(--font-l1);
  color: var(--global-blackblue);
  font-family: var(--font-n1);
  font-weight: bold;
  margin-bottom: 20px;
}

.new {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 24px 0px;
  border-bottom: 1px solid var(--global-lightgray);
  transition: all 0.4s;
}
.new:hover {
  border-bottom: 2px solid var(--global-darkgray);
}

.new-img {
  width: 205px;
  height: 115px;
  border-radius: 16px;
  margin-right: 16px;
  overflow: hidden;
  position: relative;
}
.new-img img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.new-content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.new-content .new-tag {
  color: var(--global-black);
  font-weight: 400;
  margin-bottom: 8px;
  margin-right: 8px;
}
.new-content .new-date {
  color: var(--global-darkgray);
  font-weight: 400;
  margin-bottom: 8px;
}
.new-content .new-title {
  color: var(--global-darkgray);
  font-weight: 700;
  width: 100%;
}