.card-1 {
	min-width: 290px;
	position: relative;
	margin: 0.25rem;
	padding: 0;
	border-color: var(--tblr-border-color);
	border-style: solid;
	border-width: 1px;
	overflow: hidden;
	width: 100%;
	max-width: 362px;
	max-height: 308px;
	min-height: 308px;
	flex: 1;
	--tblr-card-border-radius: 8px
	border-radius: var(--tblr-card-border-radius);
}

.top-icons {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 10px;
	margin-left: 16px;
	margin-right: 16px;

	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 3;

}

.thumbnail-image {
	display: flex;
	/*flex: 1 0 1;*/
	justify-content: center;
	align-items: center;
	align-self: center;
	border-bottom: 1px solid;
	border-color: var(--tblr-border-color);
	height: 128px;
	overflow: hidden;
	width: 100%;
}

.thumbnail-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-info {
	display: flex;
	padding: 16px;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	align-self: stretch;
	position: relative;
}

.h4 {
	color: #161616;
	align-self: stretch;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 20px; /* 125% */
}

.card-description {
	align-self: stretch;
	color: #616876;
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px; /* 142.857% */
}

.indicators-container {
	display: flex;
	max-width: 386px;
	align-items: center;
	gap: 10px;
	align-self: start;
	/*justify-content: space-between;*/
	justify-content: center;
}

.indicators-item {
	display: flex;
	align-items: center;
	gap: 4px;
	align-self: stretch;
	/*justify-content: space-between;*/
}

.tooltip-like-text {
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s, opacity 0.3s ease-in-out;
}

.indicators-item:hover .tooltip-like-text {
	visibility: visible;
	opacity: 1;
	font-size: 12px;
}

.indicators-text {
	font-family: Inter;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 12px; /* 100% */
}

.user-name-tooltip::after {
	content: "name";
	position: absolute;
	bottom: -25px;
	left: 50%;
	transform: translateX(-50%);
	padding: 5px;
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
	border-radius: 4px;
	font-size: 12px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease-in-out;
}

.user-name-tooltip:hover::after {
	opacity: 1;
}

.user-avatar {
	border-radius: 40px;
	border: 2px solid #FFF;
	box-shadow: 0px 2px 1px 0px rgba(29, 39, 59, 0.07);
	background: #FFF;

	--tblr-avatar-size: 2.5rem;
	--tblr-avatar-bg: var(--tblr-bg-surface-secondary);
	--tblr-avatar-shadow: inset rgba(var(--tblr-body-color-rgb), 0.04) 0 0 0 1px;
}

.theme-dark .card-tooltip-content {
	color: currentColor;
	background-color: rgba(0, 0, 0, 0.7);
}

.theme-dark .tooltip-like-text {
	color: #000000;
	background-color: rgba(255, 255, 255, 0.7);
}

.theme-dark .user-avatar {
	border: none !important;
	box-shadow: none !important;
	background: transparent !important;

	--tblr-avatar-bg: transparent !important;
	--tblr-avatar-shadow: none !important;
}
