#tag-body {
    margin-left: 5%;
    margin-top: 3%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#tag-body h1 {
    width: 95%;
    padding-bottom: 1%;
    border-bottom: solid 4px rgb(230, 237, 96);
}

.tag-post-container h3 {
    width: 100%;
    font-size: 1.6vw;
}

.tag-post-container img {
    width: 100%;
}

.tag-post-container li {
    margin-bottom: 3%;
}

.tag-post-container ul {
    padding-left: 3%;
}

.tag-post-container {
    width: 35%;
    margin-right: 5%;
}

.tag-post-mobile-list {
    display: none;
}

@media only screen and (max-width: 767px){
    .tag-post-container {
        width: 45%;
    }
    .tag-post-container h3 {
        font-size: 16px;
    }
    .tag-post-mobile-list {
        display: inline;
    }
    .tag-post-desktop-list {
        display: none;
    }
}