.cardContainer {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background-color: #fff;
	border-radius: 8px;
	flex: 1;
	max-width: 50%;

	position: relative;
}

.cardOverlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 1.2rem;
	font-weight: bold;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	border-radius: 8px;

	cursor: pointer;
	border: none;
}

.cardContainer:hover .cardOverlay {
	opacity: 1;
}

.eyeIcon {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.seeMore {
	font-size: 1.2rem;
	text-decoration: underline;
}

.cardHeader {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 0.1rem;
	position: relative;
}

.cardTitle {
	font-size: 1.5rem;
	font-weight: 600;
	max-width: 80%;
}

.cardButtonsContainer {
	display: flex;
	gap: 1rem;
	position: absolute;
	right: 0;
}

.cardButton {
	border: none;
	cursor: pointer;

	display: flex;
	justify-content: center;
	align-items: center;

	background-color: transparent;
	color: #dddddd;
}

.cardButtonIconRed:hover {
	color: red;
	transition: all 0.3s;
}

.cardButtonIconBlue:hover {
	color: #027df7;
	transition: all 0.3s;
}

.cardImage {
	width: 250px;
	max-height: 250px;
	border-radius: 8px;
	object-fit: scale-down;
}

.cardDescription {
	font-size: 1rem;
}

@media (max-width: 768px) {
	.cardContainer {
		max-width: 100%;
	}
}
