.lean-library {
    background: linear-gradient(to right, #063998, #1B7BFF);

    a.btn {
        background: white;
    }

    .icon{
        font-size:30px
    }
}

.lean-library__layout {
    display: grid;
    grid-template-columns: 6fr 7fr;
    gap: 4rem;
}

.lean-library__right {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2.5rem;
}

.lean-library__logo{
    aspect-ratio: 237 / 51;
    width: 200px;
}

@media (max-width: 1300px) {
    .lean-library__right {
        grid-template-columns: 1fr 300px;
        gap: 2rem;
    }
}

@media (max-width: 1100px) {
    .lean-library__layout {
        grid-template-columns: 1fr;
    }
    .lean-library__right{
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .lean-library__logo{
        width: 150px;
        margin-bottom:2rem;
    }

    .lean-library__right {
        grid-template-columns: 1fr 300px;
        overflow: hidden;
        margin-right: -1rem;
    }

    .icon{
        font-size: 24px;
    }
    .icon + span{
        font-size: 14px;
    }

}

.nav-biblioteca{
    background: #E4E7F8;
    padding-block: 1rem;
    display: flex;
    gap:1rem;
}

.nav-pill{
    background: #F7F9FD;
    font-size: 15px;
    font-weight: 400;
    height: 30px;
    border-radius: 1rem;
}

.nav-pill:hover{
    background: white;
}

.wrap-pills{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap:0.75rem;
}