h1, h2, h3, h4, h5, h6 {
	font-family:yekan, Sans-serif;
	color:#201B38;
}

.my-posts-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(32%, 1fr));
	gap: 20px;
	font-family:yekan, Sans-serif;
	justify-content:center;
}
.my-posts-list .post-item {
	border: 1px solid #eee;
	padding: 25px;
	border-radius: 15px;
 
	background: #fff;
	transition: all 0.3s ease;
	display: flex;
 box-shadow: 0px 50px 70px 0px #CCE5EB4D;

  overflow: hidden;
}
.my-posts-list .post-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
 
.post-item-image {
  border-radius: 500px !important;
    height: 185px !important;
  width: 32%;
}
.post-item-image a{
	border-radius:500px;
	display:block;
	transform: translate(100px,-30px);
}
.post-item-image img{
border-radius: 500px !important;
  height: 200px !important;
  width: 200px;
  object-fit: cover;
  max-width: inherit !important;
}

.post-item-content {
	width:67%
}

.post-item-content .title  {
	 
		color: #201B38;
  font-size: 18px;
  margin-bottom: 5px;
  font-family: yekan, Sans-serif;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: clip;
  text-overflow: ellipsis ellipsis;
  text-overflow: ellipsis " [..]";
  text-overflow: clip;
  white-space: nowrap;
  overflow: hidden;
}


.post-item-content .title:hover  {
	color:#0DB9C6;
}

.post-item-title {
	margin-bottom:15px;
}
.post-cats a{
	font-weight:300;
	color:#201B38;
	font-size:13px
}
.post-excerpt {
	font-weight:400;
	color:#201B38;
	font-size:14px;
	margin-bottom:15px
}

.post-item-content .read-more {
	
	color:#0DB9C6;
	display:flex;
	align-items:center;
	font-size:13px;
	gap: 5px;
}

.post-item-content .read-more svg { 
fill:#0DB9C6;
}
