.hs_blog_wrapper {
    padding: 40px 0 120px;
    gap: 40px;
}

.hs_blog_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hs_page_wrapper {
    padding: 40px 0 140px;
    gap: 40px;
}

.hs_post_wrapper {
    flex: 1;
    gap: 30px;
    width: 100%;
}

.hs_post_date {
    gap: 8px;
    font-size: 14px;
    line-height: 1.2;
    color: #A5A5A5;
}
.post_page .hs_post_date{color: #C1C1C1;}

.hs_post_image {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    background-color: #F2F7FA;
    max-height: 600px;
}

.hs_post_image:before {
    background-image: inherit;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transform: scale(1.2);
    filter: blur(10px) brightness(0.93);
}

.hs_post_image img.loaded {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 0;
}

.hs_post_description p {
    margin: unset;
    margin-bottom: 12px;
}

.hs_post_description p:last-child {
    margin-bottom: unset;
}

.hs_blog_sidebar {
    position: sticky;
    top: 140px;
    width: 100%;
    max-width: 590px;
    max-height: fit-content;
    padding: 30px 20px;
    box-sizing: border-box;
    gap: 20px;
    background-color: #F7F6F6;
    border-radius: 5px;
}

.hs_blog_sidebar_ttl {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hs_blog_sidebar_cat_ttl {
    color: #007BC1;
    font-size: 18px;
    font-weight: 600;
}
.hs_fav_post {gap: 20px;}
.hs_fav_post_name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    transition: .3s;
}
.hs_fav_post_date {
    gap: 8px;
    font-size: 14px;
    line-height: 1.2;
    color: #C1C1C1;
}
.hs_fav_post_image {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    background-color: #F2F7FA;
    width: 150px;
    min-width: 150px;
    height: 100px;
}
.hs_fav_post_image:before {
    background-image: inherit;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transform: scale(1.2);
    filter: blur(10px) brightness(0.93);
}
.hs_fav_post_image img.loaded:not(.no_image) {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 0;
}
.hs_fav_post_image .no_image {
    height: 80%;
    width: 80%;
}
.hs_post_video_wrapper {
    display: flex;
    border-radius: 5px;
    background-color: #F2F7FA;
    overflow: hidden;
}
.hs_post_video_wrapper iframe {
    width: 100%;
    height: auto;
    max-height: 600px;
    aspect-ratio: 16 / 9;
}
.blog_page .hs_blog_wrapper{padding: 0 0 100px;}
.post_page .hs_page_wrapper{padding: 10px 0 100px;gap: 70px;align-items: flex-start;}
.post_page .hs_read_more{
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    padding: 12px;
    width: 100%;
    max-width: 250px;
    text-align: center;
    border: 1px solid var(--basic-company);
    border-radius: 5px;
    display: block;
    transition: all .5s ease;
}
.post_page .hs_read_more:hover{
    box-shadow: 0px 3px 17px 0px #006CA9A8;
    background-color: var(--basic-company);
    color: #FEFEFE;
}
.hs_post_description a{color: var(--basic-company);text-decoration: underline;}
.hs_post_description a:hover{text-decoration: none;}
