.card-ad-block {
	height: 100%;
	width: 100%;
	display: flex;
	padding: 1.2rem;
	justify-content: space-between;
	align-content: center;
	flex-direction: column;
}

.card-ad-image-block {
	aspect-ratio: 5 / 6;
	width: 100%;
	height: fit-content;
	border-radius: 1rem;
	border: 0.225rem solid var(--primary-color);
	overflow: hidden;
	position: relative;
	display: flex;
	justify-content: center;
}

.card-ad-more {
	position: absolute;
	aspect-ratio: 1;
	width: 1.5rem;
	height: 1.5rem;
	background-color: var(--primary-color);
	right: 0.5rem;
	top: 0.5rem;
	border-radius: 50%;
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: transform 0.12s ease;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	z-index: 1001;
	pointer-events: auto;
}

.card-ad-more:active,
.card-ad-more.pressed {
	transform: scale(0.92);
}

.card-ad-image {
	height: 100%;
	width: auto;
	display: block;
}

.card-ad-buttons-block {
	width: 100%;
	margin-top: 0.8rem;
}

.card-ad-button {
	background-color: var(--primary-color);
	color: var(--background-color);
	font-size: 1rem;
	text-align: center;
	width: -webkit-fill-available;
	padding: 0.4rem 0rem;
	border-radius: 4rem;
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	transition: transform 0.12s ease, filter 0.12s ease;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
	-webkit-touch-callout: none;
	-webkit-appearance: none;
	appearance: none;
	z-index: 1001;
	pointer-events: auto;
	position: relative;
}

.card-ad-button:active,
.card-ad-button.pressed {
	transform: scale(0.97);
	filter: brightness(0.98);
}

.card-ad-details {
	position: absolute;
	right: 5%;
	z-index: 1000;
	padding: 0.6rem 0.8rem;
	border-radius: 0.8rem;
	background-color: var(--block-color);
	border: 0.12rem solid var(--primary-color);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
	color: var(--primary-color);
	font-weight: 400;
	font-size: 0.9rem;
	line-height: 1.2rem;
	display: none;
	min-width: 14rem;
	max-width: 80vw;
	word-wrap: break-word;
}

.card-ad-details.open {
	display: block;
}

.card-ad-title {
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.card-ad-desc {
	opacity: 0.85;
}


.pr-tag-finder {
	position: absolute;
	color: #232323cc;
	bottom: 0;
	right: 0;
	background-color: #ffffff;
	padding: 0rem 0.5rem;
	border-top-left-radius: 0.5rem;
}