.wrap-anime-view-info {
  height: max-content;
  display: grid;
  grid-template: auto / repeat(1, 1fr);
  text-align: center;
  justify-items: center;
  gap: 1rem;
  
  .info-wrap {
    width: 100%;
    height: 100%;
    border-left: var(--border);
    background: var(--info-wrap-bg);
    border-radius: var(--radius);
    padding: 0 1rem;
    
    span {
      display: block;
      width: 100%;
      height: max-content;
      padding: 0.5rem;
      border-radius: var(--radius);
      
      &:nth-child(2n) {
        background: var(--info-span-color);
      }
    }
  }
}


/*description anime*/
.description-anime {
  margin: 3rem 0;
  width: 100%;
  max-width: 1000px;
  border-radius: var(--radius);
  border-left: var(--border);
  background: var(--description-anime-bg);
  padding: 1rem;
  
  &[open] .summary {
    margin-bottom: 1rem;
  }
}


.video-anime-trailer {
  width: 100%;
  max-width: 1000px;
  height: auto;
  aspect-ratio: 16/8;
  margin: 0 0 8rem 0;
  border-radius: var(--radius);
}



@media (min-width: 700px) {
  .wrap-anime-view-info {
    grid-template: auto / 1fr 1fr;
  }
}