/*=============================
	12. Latest Post
===============================*/
.section-title-wrap {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    position: relative;
    padding-bottom: 20px;
}
.section-title .title {
    margin-bottom: 0;
    font-size: 28px;
}
.section-title-line {
    width: 100%;
    height: 5px;
    position: absolute;
    left: 0;
    bottom: 0;
    border: 1px solid var(--sjm-border-color);
    border-left: none;
    border-right: none;
}
.section-title-line::before {
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
    width: 40px;
    height: 5px;
    background: var(--sjm-primary-color);
}
.section-title-line::after {
    content: "";
    position: absolute;
    left: 36px;
    top: -1.5px;
    width: 10px;
    height: 6px;
    background: var(--sjm-white);
    clip-path: polygon(40% 0, 100% 0%, 60% 100%, 0 100%);
}
.view-all-btn .link-btn {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    border-radius: 4px;
    border: 1px solid #CFCFCF;
    padding: 10px 17px;
    color: var(--sjm-secondary-color);
    gap: 10px;
    --arrow-hover-move-x: 110%;
    --arrow-hover-move-y: 100%;
}
.view-all-btn .link-btn .svg-icon svg {
    color: var(--sjm-primary-color);
    width: 10px;
    transition: all 0.3s ease-out 0s;
    transform: translateY(-2px);
}
.view-all-btn .link-btn svg path {
    transition: transform .38s cubic-bezier(.37, .08, .02, .93), opacity .18s ease-out;
}
.view-all-btn .link-btn svg path:nth-of-type(1) {
    transform: translateX(0) translateY(0);
    opacity: 1;
    transition-delay: .15s, .15s;
}
.view-all-btn .link-btn svg path:nth-of-type(2) {
    transform: translateX(calc(-1 * var(--arrow-hover-move-x))) translateY(var(--arrow-hover-move-y));
    opacity: .5;
    transition-delay: 0s, 0s;
}
.view-all-btn .link-btn:hover svg path:nth-of-type(1) {
    transform: translateX(var(--arrow-hover-move-x)) translateY(calc(-1 * var(--arrow-hover-move-y)));
    opacity: 0;
    transition-delay: 0s, 0s;
}
.view-all-btn .link-btn:hover svg path:nth-of-type(2) {
    transform: translateX(0) translateY(0);
    opacity: 1;
    transition-delay: .15s, .15s;
}
.view-all-btn .link-btn:hover {
    border-color: var(--sjm-secondary-color);
    color: var(--sjm-white);
    background: var(--sjm-secondary-color);
}
.view-all-btn .link-btn:hover .svg-icon svg {
    color: var(--sjm-white);
}
.latest-post-inner-wrap > .row > .col-70 {
    width: 69.7%;
    flex: 0 0 auto;
}
.latest-post-inner-wrap > .row > .col-30 {
    width: 30.3%;
    flex: 0 0 auto;
}
.latest-post-item-wrap > .row > .col-66 {
    width: 66.5%;
}
.latest-post-item-wrap > .row > .col-34 {
    width: 33.5%;
}
.latest-post-item.big-post .featured-post-thumb img {
    height: 390px;
    object-fit: cover;
    width: 100%;
}
.latest-post-item.big-post .featured-post-content {
    padding: 30px 0 0;
}
.latest-post-item.big-post .featured-post-content p {
    width: 90%;
    margin: 0 auto;
}
.latest-post-item.big-post .featured-post-content .post-title {
    font-size: 28px;
}
.latest-post-item.big-post:hover .featured-post-content .post-title a {
    background-size: 100% 2px;
}
.latest-post-item.big-post .blog-post-meta .list-wrap {
    margin-bottom: 12px;
}
.latest-post-item.small-post .featured-post-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.latest-post-item.small-post .featured-post-content .post-title {
    font-size: 20px;
    line-height: 1.4;
}
.latest-post-item.small-post {
    margin-bottom: 20px;
}
.sidebar-wrap {
    margin-left: 40px;
    position: sticky;
    top: 100px;
}
.sidebar-wrap.sidebar-wrap-two {
    top: 70px;
}
.sidebar-avatar {
    text-align: center;
    position: relative;
    background: var(--sjm-gray-three);
    padding: 100px 30px 45px;
    margin-top: 100px;
    z-index: 1;
}
.sidebar-avatar::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 6px;
    background: var(--sjm-primary-color);
}
.sidebar-avatar-thumb {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 180px;
    margin-top: -100px;
}
.sidebar-avatar-thumb img {
    border-radius: 50%;
}
.sidebar-avatar-content .title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}
.sidebar-avatar-content p {
    margin-bottom: 20px;
}
.avatar-social .list-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.avatar-social .list-wrap li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sjm-primary-color);
    color: var(--sjm-white);
    border-radius: 50%;
    font-size: 15px;
}
.avatar-social .list-wrap li a:hover {
    background: var(--sjm-secondary-color);
}
.sidebar-avatar-shape img {
    position: absolute;
    z-index: -1;
}
.sidebar-avatar-shape img:nth-child(1) {
    right: 0;
    top: 0;
}
.sidebar-avatar-shape img:nth-child(2) {
    left: 0;
    bottom: 0;
}
.sidebar-widget {
    margin-bottom: 25px;
}
.sidebar-widget:last-child {
    margin-bottom: 0;
}
.widget-title {
    position: relative;
    padding-bottom: 20px;
}
.widget-title .title {
    margin-bottom: 0;
    font-size: 22px;
}
.sidebar-social-wrap .list-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}
.sidebar-social-wrap .list-wrap li a {
    display: flex;
    align-items: center;
    background: var(--sjm-teal);
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--sjm-secondary-color);
    gap: 10px;
    border-radius: 4px;
    padding: 10px 20px;
    min-width: 162px;
    justify-content: center;
}
.sidebar-social-wrap .list-wrap li a i {
    font-size: 18px;
}
.sidebar-social-wrap .list-wrap li a:hover {
    background: var(--sjm-primary-color);
    color: var(--sjm-white);
}

/* latest-post-two */
.sidebar-avatar-two {
    background: var(--sjm-gray-three);
    border-radius: 6px;
    padding: 25px 40px 40px;
    text-align: center;
}
.sidebar-avatar-two .sidebar-avatar-thumb {
    position: inherit;
    width: 170px;
    margin-top: 0;
    transform: translateX(0);
    border: 5px solid var(--sjm-white);
    border-radius: 50%;
    margin: 0 auto 20px;
    filter: drop-shadow(0px 20px 50px rgba(0, 0, 0, 0.10));
}
.sidebar-avatar-two .sidebar-avatar-content p {
    margin-bottom: 20px;
    color: #6D757F;
    line-height: 1.5;
}
.sidebar-avatar-two .avatar-social .list-wrap li a {
    width: 50px;
    height: 50px;
    background: var(--sjm-white);
    color: var(--sjm-secondary-color);
    border-radius: 50%;
    font-size: 20px;
    border: 1px solid #D0D0D0;
}
.sidebar-avatar-two .avatar-social .list-wrap li a:hover {
    background: var(--sjm-primary-color);
    border-color: var(--sjm-primary-color);
    color: var(--sjm-white);
}
.sidebar-social-wrap.sidebar-social-two .list-wrap li a {
    background: #F0F0F0;
}
.sidebar-social-wrap.sidebar-social-two .list-wrap li a:hover {
    background: var(--sjm-primary-color);
}


/*=============================
	23. Editor Post
===============================*/
.editor-post-item {
    display: flex;
    gap: 30px;
}
.editor-post-thumb {
    border-radius: 6px;
    overflow: hidden;
    width: 160px;
    flex: 0 0 auto;
}
.editor-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.editor-post-item:hover .editor-post-thumb img {
    transform: scale(1.1);
}
.editor-post-content .post-title {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
}
.editor-post-item:hover .editor-post-content .post-title a {
    background-size: 100% 1px;
}
.editor-post-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.editor-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}
.editor-nav .slick-arrow {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 4px;
    padding: 0;
    border: 1px solid #CFCFCF;
    color: var(--sjm-primary-color);
    font-size: 14px;
}
.editor-nav .slick-arrow:hover {
    background: var(--sjm-primary-color);
    border-color: var(--sjm-primary-color);
    color: var(--sjm-white);
}
.editor-post-active [class*="col-"] {
    padding: 0 15px;
}

/* editor-post-two */
.editor-post-item.editor-post-two {
    flex-direction: row-reverse;
    margin-bottom: 30px;
}

/* editor-post-three */
.editor-post-area-three {
    background: #F9F9F9;
    padding: 70px 0;
}
.editor-post-active-two .col-lg-3 {
    padding: 0 20px;
}
.editor-post-three {
    position: relative;
}
.editor-post-three::before {
    content: "";
    position: absolute;
    right: -20px;
    top: 0;
    width: 1px;
    height: 100%;
    background: var(--sjm-border-color);
}
.editor-post-active-two .slick-active:last-child .editor-post-three::before {
    display: none;
}
.editor-post-thumb-three {
    overflow: hidden;
    position: relative;
    margin-bottom: 18px;
}
.editor-post-thumb-three .paly-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sjm-white);
    border-radius: 50%;
    font-size: 18px;
}
.editor-post-thumb-three .paly-btn:hover {
    background: var(--sjm-primary-color);
    color: var(--sjm-white);
}
.editor-post-thumb-three img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.editor-post-three:hover .editor-post-thumb-three img {
    transform: scale(1.1);
}
.editor-post-content-three .post-title {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.3;
}
.editor-post-three:hover .editor-post-content-three .post-title a {
    background-size: 100% 1px;
}
.editor-post-content-three .blog-post-meta .list-wrap {
    justify-content: flex-start;
}
.editor-post-content-three .post-tag-four {
    margin-bottom: 10px;
}
.editor-nav-two {
    display: flex;
    align-items: center;
    gap: 5px;
}
.editor-nav-two .slick-arrow {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 4px;
    padding: 0;
    border: 1px solid #CFCFCF;
    font-size: 14px;
}
.editor-nav-two .slick-arrow:hover {
    background: var(--sjm-primary-color);
    border-color: var(--sjm-primary-color);
    color: var(--sjm-white);
}