@import url('colors.css');

article {
    border-bottom: 1px solid rgb(27, 27, 27);
    padding: 10px;
    padding-top: 14px;
    padding-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: 0.2s;
    cursor: pointer;

}

article:hover {
    background-color: var(--white1-hover);

}

.articleTopBar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


.articleUser {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.articleUser > img {
    height: 34px;
    border: 0px solid black;
    border-radius: 50%;
}

.articleUser > div {
    height: 34px;

}

.articleUser > div > div {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.articleUserName {
    color: var(--black2);
    transition: 0.2s;
}

.articleUserName:hover {
    color: var(--black2-hover);
    text-decoration: underline;
}

.articleUserLink {
    color: var(--grey2);
    transition: 0.2s;
}

.articleUserLink:hover {
    color: var(--grey2-hover);
}

.articleUser > div > p {
    color: var(--grey2);
    font-size: 12px;
    padding: 0px;
    margin: 0px;
    transition: 0.2s;
}

.articleUser > div > p:hover {
    color: var(--grey2-hover);

}

.articleBoard {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
}

.articleBoardTitle {
    color: var(--grey1);
    transition: 0.2s;
}

.articleBoardTitle:hover {
    color: var(--grey1-hover);
    text-decoration: underline;
}

.articleBoardLink {
    color: var(--grey2);
    transition: 0.2s;
}
.articleBoardLink:hover {
    color: var(--grey2-hover);
}

.articleContent {
    margin-top: 10px;
    padding-left: 5px;
    padding-right: 5px;
}   

.articleInteraction {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.articleInteraction > div {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    padding-left: 5px;
    padding-right: 5px;
}


.articleInteraction > div > div {
    display: flex;
    flex-direction: row;
    height: 15px;
    gap: 5px;
    border: 1px solid var(--grey1);
    border-radius: 25px;
    padding: 10px;
    width: 50px;
    justify-content: flex-start;
    transition: 0.2s;
}

.articleInteraction > div > div:hover {
    background-color: var(--white1-hover-hover);
}


.articleInteraction > div > div > svg{
    height: 15px;
    padding: 0px;
    margin: 0px;
    transition: 0.2s;
    overflow: visible;
}

.articleInteraction > div > div > svg > path{
    fill: none;
    stroke-miterlimit: 10;
    stroke-width: 40px;
    stroke: var(--grey1);
    transition: 0.2s;
}

.articleInteraction > div > div > svg > circle{
    fill: none;
    stroke-miterlimit: 10;
    stroke-width: 40px;
    stroke: var(--grey1);
    transition: 0.2s;
}

.articleInteraction > div > div > p {
    font-size: 12px;
    padding: 0px;
    margin: 0px;
    color: var(--grey1);
    float: left;
}

@media (max-width: 500px) {
    .articleBoard {
        display: none;

    }
}