.wg-list {
  padding: 4rem 0;
}
.wg-list__items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.wg-list__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  min-height: clamp(400px, 55vh, 700px);
  border-radius: 5px;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  text-decoration: none;
  cursor: pointer;
}
.wg-list__item:hover {
  text-decoration: none;
}
.wg-list__item-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.wg-list__item-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 600ms ease;
}
.wg-list__item:hover .wg-list__item-bg img {
  transform: scale(1.03);
}
.wg-list__item-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(58.65deg, #1F3642 0%, rgba(0, 0, 0, 0) 119.72%);
}
.wg-list__item-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: inherit;
}
.wg-list__item-title {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: clamp(44px, 8.7vw, 131px);
  font-weight: 400;
  color: #F3E9E0;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-transform: capitalize;
  margin: 0;
}
.wg-list__item-lower {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  max-width: clamp(280px, 42vw, 640px);
  margin-top: auto;
  padding-top: 2rem;
}
.wg-list__item-desc {
  color: #F6F3F0;
  line-height: 1.7;
  letter-spacing: -0.01em;
  margin: 0;
}
.wg-list__item-link {
  pointer-events: none;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  font-size: clamp(10px, 0.85vw, 13px) !important;
  letter-spacing: 1.5px;
  transition: color 200ms ease;
}
.wg-list__item:hover .wg-list__item-link {
  color: #A3D4F2;
}
@media screen and (max-width: 1024px) {
  .wg-list {
    padding: 3rem 1%;
  }
  .wg-list__item-title {
    font-size: clamp(38px, 6.5vw, 90px);
  }
}
@media screen and (max-width: 900px) {
  .wg-list {
    padding: 2rem 0;
  }
  .wg-list__item {
    border-radius: 0;
    min-height: clamp(320px, 55vw, 500px);
  }
}/*# sourceMappingURL=working-group-list.css.map */