#outro{
    padding: 2.5rem 1rem;
}

@media (max-width:768px){
    .article_intro{
        display: flex;
        flex-direction: column-reverse;
    }
}

#title_section button {
    border:.0625rem solid var(--link_blue);
    display: inline-flex;
    border-radius: 2rem;
    padding: .25rem;
    overflow: hidden;
    margin-top: 1rem;
}

#title_section button + button {
    margin-top: 1rem;
}

#title_section button span {
    height: 2.5rem;
    line-height: 2.5rem;
    padding: 0 1.25rem;
}

button.favorites {
    max-width: 100%;
    justify-content: space-between;
    background-color: #fff !important;
    position: relative;
}

button.favorites input {
    opacity: 0;
    position: absolute;
    inset: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#title_section button.favorites span {
    color: var(--dark_gray);
}

button.favorites span::before {
    content: 'Add to';
}

button.favorites:has(input:checked) span::before {
    content: 'Remove from';
}

button.favorites span::after {
    content: ' Saved';
}

button.favorites .save {
    height: 2.5rem;
    width: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.5rem;
    background-color: var(--link_blue);
    transition: background-color .2s;
}

button.favorites .save:before {
    content: '';
    display: inline-flex;
    height: 1.5rem;
    width: 1.5rem;
    background-color: #FFF;
    mask-repeat: no-repeat;
}

@media only screen and (max-width:767px) {
    button.favorites .save:before{
        height: 1.75rem;
        width: 1.75rem;
    }
}

button.favorites:has(input:checked) .save:before {
    background-color: var(--red);
    -webkit-mask: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMTYgMnYxNy41ODJsLTQtMy41MTItNCAzLjUxMnYtMTcuNTgyaDh6bTItMmgtMTJ2MjRsNi01LjI2OSA2IDUuMjY5di0yNHoiLz48L3N2Zz4=');
    mask: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMTYgMnYxNy41ODJsLTQtMy41MTItNCAzLjUxMnYtMTcuNTgyaDh6bTItMmgtMTJ2MjRsNi01LjI2OSA2IDUuMjY5di0yNHoiLz48L3N2Zz4=');
    -webkit-mask-size: contain;
    mask-size: contain;
}

.article_picture {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 1;
    /* background: #FFF; */
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.article_description img{
    padding: 10px;
}


@media (max-width: 1200px) {
    body:not(:has(#connect)) .back {
        display: none;
    }

    body:not(:has(#connect)) .logo,body:not(:has(#connect)) header#bottom{
        display: block;
    }
}