.article-zone {
    width: 40%;
}

.article-title {
    font-size: 1.7rem;
    margin-bottom: .5rem;
}

.article-header {
    margin: 1.8rem 0rem;
    padding-bottom: 1rem;
    border-bottom: solid thin var(--border1);
}

.article-zone {
    width: 40%;
    margin: auto;
    margin-bottom: 3rem;
    max-width: 52rem;
}

.article-header-bottom {
    display: flex;
    justify-content: space-between;
    color: var(--font-color2);
}

.article-content {
    margin-bottom: 3rem;
}

.article-content img {
    /* max-height: 30rem; */
    width: 100%;
    height: auto;
}

.article-bottom {
    border-top: solid thin var(--border1);
    padding: 1.7rem 0;
}

.article-bottom ul {
    list-style: none;
    padding-left: 1.2rem;
}

.article-bottom ul li {
    padding-bottom: .35rem;
}

.article-bottom ul a {
    text-decoration: none;
}

/* .article-bottom ul a:hover {
    filter: brightness(1.3);
} */

.article-bottom .history-back {
    cursor: pointer;
    text-align: end;
    position: absolute;
    right: 0rem;
    color: var(--font-color2);
}

.article-bottom .history-back:hover {
    filter: brightness(1.3)
}

.article-bottom a:link {
    color: var(--font-color2);
}

.article-bottom a:visited {
    color: var(--font-color2);
}

.article-bottom a:hover {
    color: var(--font-color1);
    font-weight: bold;
}

.article-bottom a:active {
    color: var(--font-color2);
}

.content-tags {
    list-style: none;
    display: flex;
    padding: 0;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.content-tag::before {
    content: "#";
    color: var(--accent-color);
    margin-right: .2rem;
}
.content-tag {
    background-color: var(--border1);
    padding: .3rem .8rem;
    margin-right: .5rem;
    margin-top: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
    cursor: pointer;
    font-size: calc(.7rem + .2vw);
}
.content-tag:hover{
    filter: brightness(.9);
}
