#events {
  padding: var(--content-spacing);
}

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

#events > .eg-container > .eg-wrapper > .box {
  position: relative;
  border-radius: 10px;
  background: var(--agora-white-2);
  padding: 1rem;
  display: flex;
  gap: 1rem;
}

#events .box > .left {
  width: 40%;
}

#events .box > .left > img {
  width: 100%;
  height: 100%;
  aspect-ratio: 253/356;
  border-radius: 10px;
  object-fit: contain;
}

#events .box > .right {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
}

#events .box > .right > .description {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
  margin-top: auto;
}

#events .box > .right > .description > b {
  color: var(--agora-blue);
  font-size: var(--font-22);
  font-weight: 600;
  letter-spacing: -0.48px;
}

#events .box > .right > .description > p {
  color: var(--agora-blue);
  font-size: var(--font-18);
  font-weight: 400;
  letter-spacing: -0.4px;
}

#events .box > .right > .inspect {
  margin-top: auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--agora-blue);
  font-size: var(--font-18);
  font-weight: 600;
  letter-spacing: -0.36px;
}

#events .box > .right > .inspect > .icon {
  border-radius: 100%;
  background: var(--agora-white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
}

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

@media (max-width: 576px) {
  #events > .eg-container > .eg-wrapper > .box {
    flex-direction: column;
  }
  #events .box > .left,
  #events .box > .right {
    width: 100%;
  }
}
