div[data-wrapper="info"]{
    position: relative;
    left: -2rem;
    top: -1rem;
    width: calc(100% + 4rem);
    background-color: white;
    height: calc(100% + 1rem);
    margin-bottom: -1rem;
 }

div[data-wrapper="info"]::after{
    content: " ";
    background-color: white;
    position: fixed;
    top: 0;
    height: calc(100vh - 2rem);
    width: 100%;
    max-width: calc(var(--mw) + 4rem);
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--bs);
    z-index: -1;
}

div[data-wrapper="info"]::before{
    content: " ";
    position: absolute;
    height: 25vh;
    width: 100%;
    max-width: calc(var(--mw) + 4rem);
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--bs_inset);
    z-index: 2;
}

.wrappers div[data-wrapper="info"] > *{
    box-shadow: none;
    margin-bottom: 0;
}

div[data-wrapper="info"] > img{
    min-width: 100%;
    height: 25vh;
    object-fit: cover;
    object-position: center;
    
}

.wrappers div[data-wrapper="info"] > div:first-of-type{
    /* box-shadow: var(--rbs); */
    border-bottom: 2px solid var(--gray_dark);
    position: relative;
    z-index: 1;
}

.wrappers div[data-wrapper="info"] > div{
    padding: 1rem 2rem;
}

div[data-wrapper="info"] .title{
    align-items: center;
}

div[data-wrapper="info"] .title > *{
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
}

div[data-wrapper="info"] .title > div{
    width: calc(100% - 6rem);
}

div[data-wrapper="info"] .title h2{
    color: var(--accent);
}

div[data-wrapper="info"] .title span{
    font-size: 1.25rem;
}

div[data-wrapper="info"] .logo{
    width: 4rem;
    height: 4rem;
    margin-right: 1rem;
}

div[data-wrapper="info"] .description{
    text-align: justify;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

div[data-wrapper="info"] .description *{
    max-width: 100%;
}

div[data-wrapper="info"] .description h1, div[data-wrapper="info"] .description h2, div[data-wrapper="info"] .description h3{
    color: var(--accent);
}

div[data-wrapper="info"] .description img{
    height: auto;
}

div[data-wrapper="info"] .description p:not(p:last-of-type){
    margin-bottom: 1rem;
}

div[data-wrapper="info"] .privacy{
    padding-top: 1rem;
    padding-bottom: 1rem;
}

div[data-wrapper="info"] .privacy h3{
    color: var(--accent);
}

div[data-wrapper="info"] .privacy p, div[data-wrapper="info"] .privacy a{
    display: inline;
}

div[data-wrapper="info"] .version{
    font-size: 80%;
}