#activity {
  padding: var(--content-spacing);
  background: var(--elsel-white-2);
}

#activity > .eg-container > .eg-wrapper > .heading {
  padding-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: start;
}

#activity > .eg-container > .eg-wrapper > .heading > h2 {
  color: var(--elsel-black);
  font-family: "DM Serif Display";
  font-size: var(--font-36);
  font-weight: 400;
  line-height: 1;
}

#activity > .eg-container > .eg-wrapper > .content {
  display: grid;
  grid-template-columns: var(--col-4);
  gap: 1rem;
}

#activity .content > .product-box > figure > img {
  aspect-ratio: 487/362;
  object-fit: cover;
  border-radius: 15px;
}

#activity .content > .product-box > .description {
  align-items: center;
}

@media (max-width: 992px) {
  #activity > .eg-container > .eg-wrapper > .content {
    grid-template-columns: var(--col-6);
  }
}

@media (max-width: 576px) {
  #activity > .eg-container > .eg-wrapper > .content {
    grid-template-columns: var(--col-12);
  }
}
