body,
.content-list-container,
.content-list-inner-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.content-list-container {
  width: 100%;
}
.content-list-inner-container {
  width: 100%;
  max-width: 1440px;
  background-color: #1a1b1f;
  margin: 0 auto;
}
.content-list-inner-bg {
  width: 100%;
  background-color: #fafafa;
  padding: 20px 0 40px;
  box-sizing: border-box;
}

/* 최신 콘텐츠 영역 */
.content-wrap {
  width: 100%;
  padding: 0 16px;
}
h3 {
  padding: 16px;
  font-size: 20px;
  font-weight: 600;
}
.content-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 -4px;
}
.content-list .content-item {
  position: relative;
  width: calc(100% / 3);
  background-color: #fff;
  padding: 4px;
  box-sizing: border-box;
}
.content-list .content-item .cont-item-inner {
  cursor: pointer;
}
.content-list .content-item .con-image {
  width: 100%;
  padding-bottom: 75%;
  position: relative;
  overflow: hidden;
}
.content-list .content-item .con-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-list .content-item .con-text-area {
  padding: 12px 12px 8px;
  background-color: #fff;
}
.content-list .content-item .con-text-area .con-cate {
  font-size: 11px;
  line-height: 14px;
  font-weight: 600;
  color: #000;
}
.content-list .content-item .con-text-area .con-tit {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #000;
  padding-top: 4px;
  word-break: keep-all;
}
.content-list .content-item .con-text-area .con-con {
  font-size: 11px;
  line-height: 14px;
  font-weight: 400;
  color: #666;
  padding: 4px 0 8px;
  /* 한 줄 말줄임 */
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.con-image-list {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #fff;
  padding: 8px 12px 12px;
}
.con-image-list .con-image-item {
  position: relative;
  width: 72px;
  height: 86px;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: inline-block;
}
.con-image-list .con-image-item:nth-of-type(4):before {
  content: "";
  position: absolute;
  inset: 0px;
  background-color: rgb(0, 0, 0);
  opacity: 0.4;
  z-index: 10;
}
.con-image-list .con-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.con-image-list .con-image-item span {
  display: inline-block;
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.cont-status-wrap {
  display: flex;
  align-items: center;
  gap: 0;
}
.cont-status-wrap .cont-status {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cont-status-wrap .cont-status .cont-status-time {
  font-size: 11px;
  line-height: 14px;
  font-weight: 600;
  color: #666;
}
.cont-status-wrap .cont-status .cont-status-view {
  display: flex;
  align-items: center;
  gap: 2px;
}
.cont-status-view .view-icon {
  width: 12px;
  height: 12px;
  background: url(../image/view-icon.png) no-repeat center/100%;
  margin-top: 1px;
}
.cont-status-view .view-num {
  font-size: 11px;
  line-height: 14px;
  font-weight: 600;
  color: #666;
}
.con-brand-wrap {
  display: flex;
  align-items: center;
}
.con-brand-wrap::before {
  content: "";
  display: inline-block;
  margin: 0px 8px;
  width: 1px;
  height: 9px;
  background-color: #ebebeb;
}
.con-brand-wrap .brand-txt,
.con-brand-wrap .brand-txt-etc {
  font-size: 11px;
  line-height: 14px;
  font-weight: 600;
  color: #666;
}

/* 반응형 */
@media screen and (max-width: 1024px) {
  .content-list .content-item {
    width: calc(100% / 2);
  }
  .content-wrap {
    width: 100%;
    padding: 0 8px;
  }
}

@media screen and (max-width: 768px) {
  .content-list .content-item {
    width: 100%;
  }
}
