.noResourceMsg {
	font-size: 18px;
	font-weight: 600;
	color: #222;
	text-align: center;
	padding: 100px 0;
}

.topIntro {
  padding: 131px 0 80px;
  text-align: center;
}
.topIntro .title{
  font-weight: 700;
  font-size: 48px;
  line-height: 57px;
  margin-top: 30px;
}

.topIntro .robotLogo {
  max-width: 161px;
}

.topIntro .descBox {
  margin-top: 8px;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
}

.galleryArea {
  max-width: 1440px;
  padding-bottom: 120px;
  box-sizing: border-box;
}

.galleryArea .galleryList {
  width: 100%;
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(3, 1fr);
}

.galleryArea .galleryList > li{
  background: #fff;
  box-shadow: 0px 1px 24px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  cursor: pointer;
} 
.galleryArea .galleryList li .galleryImg {
  width: 100%;
  height: 273px;
}
.galleryArea .galleryList li .galleryImg > img{
  width: 100%;
  height: 100%;
  border-radius: 16px 16px 0 0;
  object-fit: cover;
}
.galleryArea .galleryList .galleryCont {
  text-align: center;
  padding: 18px 20px;
}
.galleryArea .galleryList .galleryCont .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
}
.galleryArea .galleryList .galleryCont .txt {
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: #586063;
  padding: 4px 0 10px;
}
.galleryArea .galleryList .galleryCont .date {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #939FA4;
}

.pagingArea.mobile .moreBtn {
  margin: 40px auto 0; 
  width: 110px;
  background: #FFFFFF;
  border: 1px solid #939FA4;
  border-radius: 100px;
  padding: 12px 24px;
  display: none;
}

.pagingArea.pc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
}

.pagingArea.pc .btn{
  box-sizing: border-box;
  width: 59px;
  height: 59px;
  background: #FFFFFF;
  box-shadow: 0px 1px 24px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
}

.pagingArea.pc .btn.next > img{
  transform: rotate(180deg);
}

.pagingArea.pc ul{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}


.pagingArea.pc ul li {
  width: 59px;
  height: 59px;
  box-sizing: border-box;
  background: #FFFFFF;
  box-shadow: 0px 1px 24px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
}
.pagingArea.pc ul li button {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #333;
}
.pagingArea.pc ul li button.active {
  background: #1AB6E4;
  color: #fff;
}

.pagingArea.pc ul li button:focus,
.pagingArea.pc ul li button:hover {
  background: #1AB6E4;
  color: #fff;
}

@media screen and (max-width: 1280px) {
  .galleryArea .galleryList {
    width: 100%;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
  
}
/* 모바일 기준 998px*/
@media screen and (max-width: 998px) {
  .topIntro {
    padding: 30px 0 40px;
    text-align: center;
  }
  .topIntro .title{
    font-size: 36px;
    margin-top: 10px;
  }
  
  .topIntro .robotLogo {
    max-width: 102px;
  }
  
  .topIntro .descBox {
    margin-top: 8px;
    font-size: 18px;
    line-height: 27px;
  }

  .topIntro .descBox span {
    display: block;
  }

  .galleryArea {
    max-width: 1440px;
    padding: 20px 0 40px;
    box-sizing: border-box;
  }
  
  .galleryArea .galleryList {
    width: 100%;
    display: grid;
    gap: 0px;
    grid-template-columns: repeat(1, 1fr);
  }
  
  .galleryArea .galleryList > li{
    background: #fff;
    box-shadow: none;
    border-radius: 0;
    border-bottom: 1px solid #EDEDED; 
  } 

  .galleryArea .galleryList.customer > li{
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    padding: 20px 0;
  } 

  .galleryArea .galleryList > li > a{
    display: flex;
    gap: 16px;
    /* align-items: center; */
    padding: 20px 0;
  } 
  .galleryArea .galleryList li .galleryImg {
    width: 80px;
    height: 73px;
  }
  .galleryArea .galleryList li .galleryImg img{
    min-width: 80px;
    min-height: 73px;
    border-radius: 16px;
    object-fit: cover;
  }

  .galleryArea .galleryList .galleryCont {
    text-align: left;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
  }

  .galleryArea .galleryList .galleryCont .title {
    font-size: 18px;
    line-height: 24px;
  }

  .galleryArea .galleryList .galleryCont .txt {
    font-size: 14px;
    line-height: 17px;
    padding: 4px 0 10px;
    white-space: pre-wrap;
  }

  .galleryArea .galleryList .galleryCont .date {
    font-size: 12px;
    display: none;
  }
  
  .pagingArea.mobile .moreBtn {
    display: block;
  }

  .pagingArea.pc {
    display: none;
  }
}
