/* Emmcee Destination Card */

/*
 * Elementor-Flexbox-Container schrumpfen Widgets standardmäßig auf ihre
 * Inhaltsbreite. Wrapper daher auf volle Breite/Höhe zwingen, damit
 * mehrere Ziel-Karten nebeneinander gleich breit und gleich hoch werden
 * (siehe emmcee-room-card für den Hintergrund zu diesem Fix).
 */
.elementor-widget-emmcee-destination-card,
.elementor-widget-emmcee-destination-card > .elementor-widget-container {
	width: 100%;
	height: 100%;
}

.emmcee-destination-card {
	position: relative;
	width: 100%;
	height: 100%;
	background: #fcf4eb;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	font-family: inherit;
}

.destination-card-image {
	width: 100%;
	height: 140px;
	object-fit: cover;
	display: block;
	border-radius: 16px 16px 0 0;
	flex-shrink: 0;
}

.destination-card-content {
	padding: 18px 20px 20px;
	text-align: center;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.destination-card-title {
	margin: 0 0 4px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
}

.destination-card-metric {
	margin: 0 0 8px;
	font-size: 13px;
	color: #8a8a8a;
}

.destination-card-tags {
	margin: 0 0 14px;
	font-size: 13px;
	color: #5a5a5a;
	line-height: 1.4;
}

.destination-card-tag-sep {
	color: #c77761;
	margin: 0 4px;
}

.destination-card-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #a05a3c;
	text-decoration: none;
	transition: color 0.2s ease;
	margin-top: auto;
	padding-top: 4px;
}

.destination-card-link:hover {
	color: #7c4429;
}

.destination-card-link .arrow {
	display: inline-block;
	transition: transform 0.2s ease;
}

.destination-card-link:hover .arrow {
	transform: translateX(4px);
}

@media (max-width: 600px) {
	.destination-card-image {
		height: 130px;
	}
	.destination-card-content {
		padding: 14px 16px 16px;
	}
}
