.anime-layout{
    display:grid;
    grid-template-columns:320px 1fr 320px;
    gap:40px;
    align-items:start;
}
.anime-left{
    width:320px;
}
.anime-content{

    min-width:0;
}

.anime-title{

    font-size:56px;

    margin-bottom:20px;
}

.anime-cover,
.character-cover{
    width:320px;
    height:460px;
    overflow:hidden;
    border-radius:20px;
}

.anime-cover img,
.character-cover img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:20px;
}
.anime-infobox{

    background:#171B26;

    border:1px solid var(--border);

    border-radius:20px;

    overflow:hidden;

    position:sticky;

    top:100px;
}

.infobox-header{

    padding:20px;

    border-bottom:1px solid var(--border);

    font-size:20px;

    font-weight:700;
}

.infobox-row{

    display:flex;

    justify-content:space-between;

    padding:15px 20px;

    border-bottom:1px solid var(--border);
}

.infobox-label{

    color:var(--muted);
}

.infobox-value{

    text-align:right;
}

@media(max-width:1024px){

    .anime-layout{

        grid-template-columns:1fr;
    }

}