.articles{
    display: grid;
}

.article{
    width: 100%;
    padding-left : 20%;
    padding-right: 20%;
    font-size: 1;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid var(--border);
}

.article:hover {
    background: var(--card-hv);
}

.article_head {
    font-size: 1.1em;
    font-weight: bold;
    padding-bottom: 20px;
}

.article_body {
    text-align: justify;
}

.article_url {
    padding-top: 10px;
}

.article_date {
    text-align: left;
}

.article_image {
    height: 100px;
    float: left;
    padding-right: 20px;
}

.guide {
    font-size: .8em;
    padding: 5px;
    margin: 10px;
    position: static;
    left: 10%;
    width: fit-content;
    transition: all 1s ease-in-out;
}

.guide:hover {
    background: var(--card-hv);
}
