.bdt-post-list {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 30px;
	position: relative;
}

.bdt-post-list .bdt-item {
	gap: 15px;
	width: 100%;
}

.bdt-post-list .bdt-title {
	font-size: clamp(14px, 1.5vw, 18px);
	font-weight: 700;
	margin-bottom: 5px;
	margin-top: 0;
}

.bdt-post-list .bdt-title a {
	color: #444;
}

.bdt-post-list .bdt-title a:hover {
	color: #000;
}

.bdt-post-list .bdt-image {
	height: 100%;
}

.bdt-post-list .bdt-image img {
	width: 80px;
	min-width: 80px;
	height: 100%;
	object-fit: cover;
}

.bdt-post-list div#bdt-loading-image {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(255, 255, 255, 0);
	background-image: radial-gradient(at center center, #fff 0%, rgba(255, 255, 255, .92) 100%);
}

.bdt-post-list .bdt-circle-border {
	width: 100px;
	height: 100px;
	padding: 3px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background: #1e87f0;
	background: linear-gradient(0deg, rgba(63, 249, 220, .1) 33%, #1e87f0 100%);
	animation: spin .8s linear 0s infinite;
}

.bdt-post-list .bdt-circle-core {
	width: 100%;
	height: 100%;
	background-color: #fff;
	border-radius: 50%;
}