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

#cinema > .eg-container {
  max-width: 1120px;
}

#cinema > .eg-container > .eg-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

#cinema > .eg-container > .eg-wrapper > .heading {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#cinema .heading > h2 {
  color: var(--agora-blue);
  font-size: var(--font-28);
  font-weight: 700;
}

#cinema .heading > p {
  color: var(--agora-black);
  font-size: var(--font-18);
  font-weight: 400;
}

#cinema > .eg-container > .eg-wrapper > .content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

#cinema .content > .box > .left {
  width: 25%;
}

#cinema .content > .box > .left > img {
  width: 100%;
  height: 100%;
  aspect-ratio: 33/49;
  border-radius: 10px;
  object-fit: contain;
}

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

#cinema .content > .box > .right > .group {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: start;
}

#cinema .content > .box > .right > .group:nth-of-type(1) {
  flex-wrap: wrap;
}

#cinema .content > .box > .right > .group > .age {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#cinema .content > .box > .right > b {
  color: var(--agora-blue);
  font-size: var(--font-26);
  font-weight: 700;
}

#cinema .content > .box > .right > p {
  color: var(--agora-blue);
  font-size: var(--font-16);
  font-weight: 400;
  line-height: var(--line-26);
}

@media (max-width: 992px) {
  #cinema .content > .box > .left {
    width: 35%;
  }
  #cinema .content > .box > .right {
    width: 65%;
  }
}

@media (max-width: 768px) {
  #cinema > .eg-container > .eg-wrapper > .content > .box {
    flex-direction: column;
    padding: 1rem;
  }
  #cinema .content > .box > .left,
  #cinema .content > .box > .right {
    width: 100%;
  }
}

@media (max-width: 576px) {
  #cinema .content > .box > .right > .group:nth-of-type(2) {
    flex-direction: column;
    width: 100%;
  }
  #cinema .content > .box > .right > .group > a {
    width: 100%;
  }
}
