.worked-header {
  margin: 0 1rem 1rem 1rem;
  background: transparent;
}

.worked-title {
  font-size: 2rem;
  letter-spacing: 0.02em;
  color: black;
  padding: 0.7rem 0;
}

.worked-row {
  margin-left: 0.3rem;
  margin-right: 0.3rem;
}
.worked-col {
  padding-bottom: 1.8rem;
}
.worked-col:nth-child(3n + 1) {
  border-left: none;
}

.worked-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.worked-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.worked-image .image-hover-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.worked-image .image-hover-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.worked-image .image-hover-wrapper .img-base {
  z-index: 1;
}

.worked-image .image-hover-wrapper .img-hover {
  z-index: 2;
  opacity: 0;
  transition: opacity 1s ease;
}

.worked-image .image-hover-wrapper:hover .img-hover {
  opacity: 1;
}

.worked-name {
  padding-top: 0.5rem;
  padding-left: 0.1rem;
  font-size: 24px;
  color: black;
  font-weight: 500;
  line-height: 1.1;
  text-align: left;
}

@media (max-width: 900px) {
  .col-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 600px) {
  .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .worked-title {
    font-size: 1.4rem;
  }
}
