/* Latest Posts Display Plugin Styles */
.lpd-posts-wrapper {
    display: flex;
    gap: 50px;
	font-family: "Poppins", Sans-serif;
	color: #000;
}

.lpd-posts-main {
    width: 50%;
}

.lpd-main-image {
    width: 100%;
    border-radius: 50px !important;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1) !important;
	margin-bottom: 25px;
}

.lpd-title {
    font-size: 1.5rem;
    margin: 10px 0;
}

.lpd-description {
    font-size: 16px;
	margin-bottom:16px !important;
}

.lpd-read-more-btn,.lpd-read-more-btn:hover {
    display: inline-block;
    color: white;
    background-color: var(--e-global-color-843d0a2);
    text-decoration: none !important;
    border-radius: 50px;
    padding: 5px 20px;
}


.lpd-posts-sidebar {
	width: 50%;
    background: #f3f3f3;
    border-radius: 50px 0 0 50px;
    padding: 50px 50px 50px 25px;
	position:relative;
}

.lpd-sidebar-post-list {
    list-style: none;
    padding: 0;
}

.lpd-sidebar-post {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
}

.lpd-sidebar-post:before {
    content: '';
    width: 5px;
    height: 0;
    background: var( --e-global-color-843d0a2 );
    position: absolute;
    display: block;
    left: 0px;
    border-radius: 50px;
	transition: .7s;
}

.lpd-active-post:before {
    height: 70px;
	transition: .7s;
}

.lpd-sidebar-image {
    margin-right: 10px;
    border-radius: 50%;
	width: 120px !important;
    border-radius: 15px !important;
	transition: .7s;
}

.lpd-active-post .lpd-sidebar-image, .lpd-sidebar-post:hover .lpd-sidebar-image {
    filter: grayscale(1);
    transition: .7s;
}

.lpd-sidebar-title {
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

.lpd-active-post .lpd-sidebar-title {
    color: var( --e-global-color-843d0a2 );
	font-weight: 800;
}

.lpd-sidebar-date {
    font-size: 14px;
    color: gray;
}
/* .lpd-sidebar-post-list{
	overflow-y: scroll;
    height: 440px;
}
.lpd-sidebar-post-list::-webkit-scrollbar {
  width: 12px;
}

.lpd-sidebar-post-list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    border-radius: 10px;
    background-color: #e8e9f3;
}

.lpd-sidebar-post-list::-webkit-scrollbar-thumb {
  border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px #2b3fe1; 
	  height:100px;
     background-color:#7F0F12;
} */