blockquote.multi-item, blockquote.reply-card {
    margin: 0 !important;
}
.reply-card, .multi-item {
    transition:0.2s;
    cursor:pointer;
}
.reply-card:hover, .multi-item:hover {
    background:rgba(15,20,24,.02);
}
body.dark .reply-card:hover, body.dark .multi-item:hover {
    background:hsla(0,0%,100%,.02);
}
.reply-card .multi-item {
    background: unset;
}
.multi-item {
	padding: 15px;
	border-bottom: 1px solid var(--borderColor);
}
.post-date {
	text-align: left;
	color: #526470;
	font-weight: 500;
}
.multi-item .post-title {
	font-weight: bold;
	margin-bottom: 5px;
	font-size: 15px;
}
.post-summary {
	font-size: 15px;
}
.post-thumbnail img, .post-thumbnail video {
	border-radius: 15px;
	width: 100%;
	max-height: 350px;
	object-fit: cover;
	margin-top: 15px;
}
.post-thumbnail video {
    object-fit: contain;
    background: #000;
}
.post-link {
	margin-top: 10px;
	display: block;
	color: var(--primary);
	font-weight: 500;
}
.post-actions {
	display: flex;
	align-items: center;
	padding: 10px 0px;
	gap: 20px;
	justify-content: space-between;
}
.action-box .action-text, .like-option .like-count, .repost-option .repost-count {
	font-weight: normal;
	font-size: 14px;
}
.post-actions svg {
	width: 17px;
	height: 17px;
}
.repost-option svg {
	width: 20px;
	height: 20px;
}
.like-option, .repost-option {
	display: flex;
	gap: 5px;
	cursor: pointer;
	align-items: center;
}
.multi-item .post-detail {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: normal;
}
.multi-item .post-detail a {
	color: var(--primary);
	border-radius: 10px;
	padding: 10px 0px;
	font-size: 14px;
}
.multi-item .post-detail div {
	font-size: 14px;
}
.search-wrapper .field-body {
    height: unset;
}
.multi-item.english {
	text-align: left;
}
.multi-item.persian, .multi-item.arabic {
	text-align: right;
}
.multi-item {
	padding: 15px;
	border-bottom: 1px solid var(--borderColor);
	display: grid;
	grid-template-columns: 50px auto;
}
.avatar-wrapper img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}
.post-author {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 5px;
}
.author-display-name {
	display: flex;
	align-items: center;
}
.author-display-name h6 {
	margin: 0;
	font-size: 15px;
}
.author-display-name svg {
	width: 18px;
	height: 18px;
}
.author-username {
	font-size: 15px;
	direction: ltr;
	color: var(--detailColor);
}
/** post actions **/
.action-box {
    display: flex;
    align-items: center;
    gap: 0;
    cursor: pointer;
    transition:0.3s;
}
.action-box .icon-box {
    display: flex;
    height: 35px;
    align-items: center;
    width: 35px;
    border-radius:50%;
    justify-content: center;
    transition:0.3s;
}
.post-actions svg {
    width: 20px;
    height: 20px;
}
.action-box .text-box span {
    font-size: 13.5px;
    display: flex;
    align-items: center;
    color: var(--textColor);
    font-family:Nunito;
    transform:translateX(3px);
    font-weight:normal;
}
.action-box:hover .icon-box {
    background: rgba(29,155,240,0.1) !important;
}
.action-box:hover .icon-box svg, .action-box:hover .icon-box svg path {
    fill: rgb(29, 155, 240) !important;
}
.action-box:hover .text-box span {
    color: rgb(29, 155, 240) !important;
}
.action-box.like:hover .icon-box {
    background: rgba(249,24,128,0.1) !important;
}
.action-box.like:hover .icon-box svg, .action-box.like:hover .icon-box svg path {
    fill: #F91880 !important;
}
.action-box.like:hover .text-box span {
    color:#F91880 !important;
}
.action-box.repost:hover .icon-box {
    background: rgba(0,186,124,0.1) !important;
}
.action-box.repost:hover .icon-box svg, .action-box.repost:hover .icon-box svg path {
    fill: #00BA7C !important;
}
.action-box.repost:hover .text-box span {
    color:#00BA7C !important;
}
@media screen and (max-width: 1000px) {
    .search-body {
        min-height: 500px;
    }
}
@media screen and (max-width: 480px) {
    .multi-item {
        padding: 15px 10px;
    }
}