.s-title {
    font-size: clamp(24px, 4vw, 36px);
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
}
.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-block: 1.5rem;
    width: 100%;
}
.blog-meta i {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: 0.4s;
    color: var(--color1);
}
.blog-meta .category_post {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.tag_post a:not(:nth-child(1)),
.category_post a:not(:nth-last-child(1)) {
    position: relative;
    padding-left: 0.5rem;
}
.tag_post a:not(:nth-last-child(1)):before,
.category_post a:not(:nth-last-child(1)):before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -3px;
}
.tag_post a:not(:nth-last-child(1)):before {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color2);
}
.category_post a:not(:nth-last-child(1)):before {
    content: "/";
}
.thumbnail-post-img {
    display: flex;
    text-align: center;
    margin-block: 1.5rem;
    position: relative;
}
.thumbnail-post-img img {
    border-radius: 1rem;
    width: 100%;
    height: auto;
}
.access_item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}
.access_item li a {
    padding: 0.75rem 1rem;
    position: relative;
    display: flex;
    text-transform: uppercase;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    border: 1px solid #eee;
    overflow: hidden;
    border-radius: 0.75rem;
}
.access_item li a:before,
.access_item li a:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 1;
    -webkit-transform: translate(105%, 0);
    transform: translate(105%, 0);
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: var(--color1);
    background-color: var(--color1);
}
.access_item li a:after {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.access_item li a:hover:before,
.access_item li a:hover:after {
    opacity: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}
.tag_post {
    padding-block: 1.5rem;
    margin-top: 1.5rem;
    border-block: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}
.tag_post i {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: 0.4s;
    color: var(--color1);
}
.post-content-excerpt {
    background: #eee;
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}
@media only screen and (max-width: 576px) {
    .thumbnail-post-img {
        margin-block: 1rem;
    }
    .blog-meta {
        margin-block: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .fixed_share {
        flex-direction: row;
    }
}



