.escort-grid {
	max-width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto;
	grid-gap: 20px;
}

.escort-grid img.escort-img {
	max-width: 100%;
	width: 100%;
}

.escort-name {
	margin: 0;
}

.escort-profile-card {
	position: relative;
}

.escort-profile-card a {
	text-decoration: none;
}



.escort-profile-card .escort-img {
	display: block;
	width: 100%;
	transition: filter 0.3s ease;
}

.escort-profile-card .image-container:hover .escort-img {
	filter: brightness(30%);
}

.escort-profile-card {
	perspective: 1000px;
	/* Other styles */
}






.escort-profile-card .image-container {
	transform-style: preserve-3d;
		position: relative;
	display: block;
	overflow: hidden;
}








.escort-profile-card .overlay-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) translateY(10px) translateZ(0px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	opacity: 0;
	color: #fff;
	font-size: 18px;
	text-align: center;
	width: 100%;
	font-weight: 300;
	line-height: 1.25;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-shadow: 0 0 1px transparent;
	will-change: transform;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.escort-profile-card .image-container:hover .overlay-text {
	opacity: 1;
	transform: translate(-50%, -50%) translateZ(0);
}

.escort-name {
	font-size: 1rem;
}

.escort-corner-ribbon {
	position: absolute;
	top: 10px;
	background: rgb(219,194,116);
background: var(--bs-primary);
	color: #000;
	width: 150px;
	text-align: center;
	transform: rotate(-45deg);
	left: -50px;
	z-index: 9;
	line-height: 2;
	outline: 1px solid rgba(0,0,0,.4);
	outline-offset: -3px;
	box-shadow: 5px 5px 3px rgba(0,0,0,.3);
	font-size: 15px;
	font-weight: 500;
	font-family: Seravek, 'Gill Sans Nova', Ubuntu, Calibri, 'DejaVu Sans', source-sans-pro, sans-serif;
}

.escort-card:hover .ecard-content {
	color: #fff;
	border-color: #fff;
}

.ecard-content {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 10px 0px;
	color: var(--bs-body-color);
	font-size: 1.2rem;
	transition: all .3s;
	line-height: 2;
}

/* animated text on hover 
-----
.escort-profile-card:hover .content-text {
	transform: translateY(-100%);
}
-----
*/
.escort-profile-card:hover .content-text {
	transform: none;
}



.content-text {
	position: relative;
	display: block;
	transition: transform 0.2s;
	transform-origin: 100% 0%;
}

.escort-profile-card:hover .ecard-content {
	color: #fff;
}
.overlay-text hr {
	margin: .5rem 0px;
}

.online-status-olay {
	background: rgba(0, 0, 0, 0);
	padding: 1px 5px;
	color: #fafafa !important;
	border-radius: 50px;
	text-transform: uppercase;
	font-size: 12px !important;
	letter-spacing: 1px;
	font-weight: 500;
}

.escort-profile-card {
	background: #222222;
}



.online-dot {
	border-radius: 50%;
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	flex-grow: 0;
	align-self: center;
	margin-right: 8px;
}

.online-dot.offline {
	background-color: red;
}

.online-dot.online {
	background-color: limegreen;
}

.online-dot.auf-anfrage {
	background: orange;
}

@media (max-width: 768px) {
	.online-dot {
		width: 12px;
		height: 12px;
		margin-right: 5px;
	}
	#mescorts .overlay-text,
	#mescorts .content-text {
		font-size: 13px !important;
	}
	#m-escorts .ecard-content {
					font-size: .8rem;
}
#m-escorts .overlay-text {
    font-size: 12px !important;
    line-height: 2 !important;
}
}






