/* Ultimate Travel Guide - Place Cards */
.utg-card {
	background: var(--utg-bg);
	border-radius: var(--utg-radius-lg);
	box-shadow: var(--utg-shadow-md);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.2s;
}

.utg-card:hover {
	box-shadow: var(--utg-shadow-lg);
}

.utg-card__image {
	height: 192px;
	position: relative;
	overflow: hidden;
}

.utg-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.utg-card__badges {
	position: absolute;
	top: 12px;
	left: 12px;
	display: flex;
	gap: 6px;
	z-index: 2;
}

.utg-card__body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.utg-card__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 4px;
}

.utg-card__title {
	font-size: 18px;
	font-weight: 700;
	color: var(--utg-text);
	line-height: 1.3;
	margin: 0;
}

.utg-card__area {
	font-size: 12px;
	color: var(--utg-text-light);
	margin-bottom: 8px;
}

.utg-card__description {
	font-size: 14px;
	color: var(--utg-gray-600);
	margin-bottom: 12px;
	flex: 1;
}

.utg-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-bottom: 12px;
}

.utg-card__cost {
	font-size: 14px;
	font-weight: 500;
	color: var(--utg-success);
	margin-bottom: 8px;
}

.utg-card__tip {
	background: rgba(245, 158, 11, 0.1);
	border: 1px solid rgba(245, 158, 11, 0.3);
	border-radius: var(--utg-radius-lg);
	padding: 8px 12px;
	margin-bottom: 12px;
}

.utg-card__tip p {
	font-size: 12px;
	color: var(--utg-text);
	line-height: 1.5;
	margin: 0;
}

.utg-card__tip strong {
	font-weight: 700;
}

.utg-card__actions {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: auto;
}

.utg-card__actions .utg-btn {
	width: 100%;
}

.utg-card__actions-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

/* Both buttons share space evenly and wrap onto their own line when
   there isn't room to fit side-by-side. flex-basis of 120px picks the
   breakpoint at which they stack. */
.utg-card__actions-row .utg-btn {
	flex: 1 1 120px;
	min-width: 0;
}
