.blog-section {
    width: 100%;
    min-height: 600px;
}

button.tags-action i,
button.pagination-action i {
    font-size: 44px;
    color: var(--purple-one);
}

.smart-nav-first-section {
    display: var(--smart-nav-first-section-display);
    margin-bottom: 5px;
    margin-left: 5px;
    margin-top: 20px;
}

.smart-nav-second-section {
    display: flex;
    margin-bottom: 50px;
}

.smart-nav-block {
    width: 76px;
    height: 76px;
    display: inline-block;
    background-color: var(--black-one);
    margin-left: -5px;
    clip-path: polygon(76px 0, 76px 76px, 0 76px);
}

.smart-nav-tags-container {
    display: inline-flex;
    width: calc(100% - 81px);
    height: 76px;
    margin-left: 5px;
}

.tags {
    width: calc(100% - 50px);
    height: 76px;
    background-color: var(--black-one);
}
.tags .tags-items {
    width: 100%;
    height: 100%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.tags .tags-items a {
    background-color: var(--black-two);
    margin: 0 10px;
    padding: 4px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    color: var(--white-one);
}

.tags .tags-items a:hover {
    background-color: var(--orange-one);
}

.tags .tags-items a.active {
    background-color: var(--orange-one);
}

.tags .tags-items a.active:hover {
    background-color: var(--black-two);
}

.tags .tags-items span {
    color: var(--black-two);
    background-color: var(--purple-one);
    border-radius: 20%;
    padding: 0 3px;
    font-size: 0.8em;
    font-weight: bold;
}

.pagination span.current,
.pagination a {
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    cursor: pointer;
    border: 3px solid var(--black-one);
}

.pagination span.current {
    color: var(--orange-one);
    font-weight: bold;
}

.pagination a {
    color: var(--white-one);
    text-decoration: none;
    font-weight: bold;
}

.pagination span.current:hover,
.pagination a:hover {
    border: 3px solid var(--orange-one);
    transition: border var(--transition-duration);
}

.tags-action {
    width: 50px;
    height: 76px;
    display: inline-block;
    background-color: var(--black-two);
    border: 3px solid var(--black-three);
}

button.tags-action.active i,
button.pagination-action.active i {
    color: var(--orange-one);
}

.smart-nav-pagination-container {
    display: inline-block;
    width: 76px;
    min-height: 585px;
    margin-right: 5px;
}

.pagination {
    height: calc(100% - 50px);
    width: 76px;
    line-height: 0;
    font-size: 1.3em;
    background-color: var(--black-one);
    flex-direction: column;
    align-items: center;
}

.pagination-action {
    height: 50px;
    width: 76px;
    background-color: var(--black-two);
    border: 3px solid var(--black-three);
}

.content {
    min-height: 600px;
    min-width: calc(100% - 86px);
    display: inline-block;
}

.blog-post-card {
    background-color: var(--black-three);
    display: inline-flex;
    width: var(--blog-post-card-width);
    min-height: var(--blog-post-card-height);
    margin: 1%;
    border: 3px solid var(--black-one);
    padding: 10px;
}

.blog-post-card:hover {
    background-color: var(--black-one);
}

.blogpost-card-container {
    width: 100%;
}

.post-description,
.blog-post-card-top {
    width: 100%;
}
.blog-post-card-top {
    height: 70%;
}

.blog-post-card-top .post-title {
    font-size: 2em;
    line-height: 2em;
    font-weight: bold;
    text-transform: capitalize;
    color: var(--orange-one);
    text-decoration: none;
}

.blog-post-card-top .post-title:hover {
    color: var(--purple-one);
}

.blog-post-card-top .post-date {
    font-weight: bold;
}

.post-description {
    height: 30%;
}

.blog-post-read-me {
    height: 10%;
}

.blog-post-read-me {
    text-decoration: none;
    color: var(--orange-one);
    font-weight: bold;
    text-transform: capitalize;
}

.blog-post-read-me:hover {
    color: var(--purple-one);
}