* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body::before {
    content: "";
    display: block;
    height: 56px;
}
body {
    background-color: whitesmoke;
}

.top h1::after {
    content: "";
    display: block;
    height: 10px;
    width: 100%;
    background-color: green;
}

.blog-single {
    min-height: 220px;
    padding: 25px 15px;
    border-radius: 6px;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
    background-color: #fff;
    transition: all 0.5s ease;
}

.blog-single::after {
    content: "";
    display: block;
    transition: all 0.3s ease;
    background-color: green;
    height: 2px;
    width: 0;
}

.blog-single:hover::after {
    width: 100%;
}
.blog-single:hover {
    -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
}

.blog-single:hover img {
    transform: scale(1.05);
}

.post-content h3 a {
    transition: all 0.1s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #222;
}

.post-content h3 a:hover {
    color: #325eff;
}

.post-content h6 {
    font-weight: 600;
    font-size: 13px;
    color: #555;
    margin: 0 0 12px;
}

.post-content h6 a {
    color: #325eff;
    display: inline-block;
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.post-content h6 small {
    padding: 0 6px;
    font-weight: 700;
}

.post-content p {
    text-indent: 2rem;
    word-wrap: break-word;
    word-break: normal;
    overflow: hidden;

    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
/* #endregion */
/* end blog */
