#youtubeContainer {
  margin-bottom:150px;
}
.youtubeSearch {
  width:70%;
  height:70px;
  border-radius: 20px;
  background-color:var(--color-f8);
  border:solid 1px var(--color-e8);
  padding:0 32px;
  margin:0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-top:70px;
}
.youtubeSearch input {
  width:100%;
  height:100%;
  font-size:18px;
  font-weight: 500;
  background-color: transparent;
  border:none;
  outline:none;
}
.youtubeSearch img {
  width:32px;
  height:32px;
}

.youtubeList {
  margin-top:110px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap:62px 20px;
  flex-wrap:wrap;
}
.youtubeList div {
  width:23.5%;
  cursor: pointer;
}
.youtubeList div div {
  width:100%;
  height:250px;
  border-radius: 20px;
  overflow:hidden;
}
.youtubeList div div img {
  width:100%;
  height:100%;
  object-fit: cover;
}
.youtubeList div h2 {
  margin-top:16px;
  padding:0 8px;
  font-size: 20px;
  font-weight: 600;

  overflow:hidden;
  text-overflow:ellipsis;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient: vertical;
}


.youtubeMoreBtn {
  margin-top:80px;
  display:flex;
  justify-content: center;
}
.moreBtn {
  width:auto; 
  display:inline-flex;
  justify-content: center;
  align-items: center;
  gap:8px;

  color:var(--color-main);
  background-color: transparent;
  border: solid 1px var(--color-main);
  border-radius: 20px;

  padding:20px 72px;
  height:76px;
  font-weight: 500;
  line-height: 1.8;

  cursor: pointer;
  transition:.3s;
  font-size:20px;
}
.moreBtn img {
  width:14px;
  height:14px;
}

.moreBtn:hover {
  background-color: var(--color-main10);
}


.searchNull {
  display: flex;
  justify-content: center;
  margin:140px 0 150px 0;
}
.searchNull div {
  display: flex;
  justify-content: center;
  gap:30px;
  flex-wrap:wrap;
}
.searchNull div img {
 width:120px; 
}
.searchNull div p {
  font-size:20px;
  line-height: 1.8;
  width:100%;
  text-align:center;
}



