.work-content {
  width: 80vw;
  max-width: 90%;
}
@media screen and (max-width: 540px) {
  .work-content {
    width: 100%;
  }
}

.work-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 540px) {
  .work-flex {
    gap: 0;
    margin-top: 2rem;
  }
}
.work-flex::after {
  content: "";
  width: 33%;
}

.work-item {
  width: 33%;
  padding: 2vw;
  height: auto;
  padding-bottom: 2.4rem;
  box-sizing: border-box;
  border-right: 1px solid #d0d0d0;
  text-decoration: none;
  transition: 0.3s;
}
.work-item:hover {
  background-color: #f0f0f0;
  transition: 0.3s;
}
@media screen and (max-width: 540px) {
  .work-item {
    width: 50%;
  }
}
.work-item .work-thumbnail {
  overflow: hidden;
  height: 16.3vw;
  width: auto;
}
@media screen and (max-width: 540px) {
  .work-item .work-thumbnail {
    height: 8.3rem;
  }
}
.work-item .work-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.work-item:hover .work-thumbnail img {
  transform: scale(1.1);
}
.work-item .work-txt .category {
  font-size: 0.75rem;
  border: 1px solid #000000;
  border-radius: 999px;
  padding: 0.1rem 0.6rem;
  box-sizing: border-box;
  margin: 1rem 0 0.4rem;
  display: inline-block;
  color: #000000;
}
.work-item .work-txt .txts {
  font-size: 1rem;
  color: #000000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 540px) {
  .work-item .work-txt .txts {
    font-size: 0.94rem;
  }
}/*# sourceMappingURL=work.css.map */