.work {
  background: #0E0E10;
}

.work-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.work-header .label {
  margin-bottom: 0.8rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.work-card {
  background: #141417;
  overflow: hidden;
  transition: transform 0.4s ease, background 0.4s ease;
  cursor: default;
}
.work-card:hover {
  transform: translateY(-6px);
  background: #1A1A1E;
}

.work-artwork {
  aspect-ratio: 1 / 1;
  background: #1C1C20;
  position: relative;
  overflow: hidden;
}
.work-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.8);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
}
.work-card:hover .work-artwork img {
  transform: scale(1.06);
  filter: brightness(0.9) saturate(0.9);
}

.work-play {
  border: 0;
  width: 100%;
  padding: 0;
  color: inherit;
  cursor: pointer;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: rgba(10, 10, 11, 0.4);
}
.work-card:hover .work-play {
  opacity: 1;
}
.work-play svg {
  width: 48px;
  height: 48px;
  stroke: #F0EDE8;
  fill: none;
  stroke-width: 1.2;
  transition: transform 0.3s ease;
}
.work-card:hover .work-play svg {
  transform: scale(1.1);
}

.work-info {
  padding: 1.3rem 1.2rem 1.5rem;
}

.work-artist {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D4A373;
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.work-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #F0EDE8;
  margin-bottom: 0.3rem;
}
.work-title a {
  color: inherit;
  text-decoration: none;
}

.work-genre {
  font-size: 0.78rem;
  color: #6B6864;
  font-weight: 300;
}

@media (max-width: 1024px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
}
